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 871e920cbc6f..3db630ace868 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/.gitignore b/.github/.gitignore new file mode 100644 index 000000000000..c7d7b18d1888 --- /dev/null +++ b/.github/.gitignore @@ -0,0 +1 @@ +connector_org_review_requirements.yaml diff --git a/.github/actions/build-branch/action.yml b/.github/actions/build-branch/action.yml index f8940ee04adf..1f27e6c478b1 100644 --- a/.github/actions/build-branch/action.yml +++ b/.github/actions/build-branch/action.yml @@ -4,6 +4,10 @@ inputs: branch_version_tag: description: 'Used to tag jars and docker images with a branch-specific version (should use the form "dev-" to pass AirbyteVersion validation)' required: false + build_docker_images: + description: 'Build docker images' + default: 'true' + required: false outputs: branch_version_tag: description: "Tag used for jars and docker images. Either user specified or auto generated as `dev-`" @@ -20,35 +24,17 @@ runs: [[ "${{ inputs.branch_version_tag }}" != '' ]] && echo "branch_version_tag=${{ inputs.branch_version_tag }}" >> $GITHUB_OUTPUT \ || { short_hash=$(git rev-parse --short=10 HEAD); echo "branch_version_tag=dev-$short_hash" >> $GITHUB_OUTPUT ; } - - uses: actions/setup-java@v3 - with: - distribution: "zulu" - java-version: "17" - - - uses: actions/setup-node@v3 - with: - node-version: "lts/*" - - - uses: actions/setup-python@v4 - with: - python-version: "3.9" + - name: Prepare Runner for Building + uses: ./.github/actions/runner-prepare-for-build - - name: Set up CI Gradle Properties - run: | - mkdir -p ~/.gradle/ - cat > ~/.gradle/gradle.properties < ~/.gradle/gradle.properties < Error: ${{ steps.scd.outputs.error-message }} diff --git a/.github/workflows/connector_ops_ci.yml b/.github/workflows/connector_ops_ci.yml index d5efdd9f8a61..4fe13040b175 100644 --- a/.github/workflows/connector_ops_ci.yml +++ b/.github/workflows/connector_ops_ci.yml @@ -1,9 +1,11 @@ name: Connector Ops CI on: + workflow_dispatch: pull_request: paths: - "airbyte-integrations/connectors/source-**" + pull_request_review: jobs: test-strictness-level: name: "Check test strictness level" @@ -21,3 +23,33 @@ jobs: run: pip install --quiet -e ./tools/ci_connector_ops - name: Check test strictness level run: check-test-strictness-level + check-review-requirements: + name: "Check if a review is required from Connector teams" + runs-on: ubuntu-latest + + if: ${{ github.repository == 'airbytehq/airbyte' }} + steps: + - name: Checkout Airbyte + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Install Python + uses: actions/setup-python@v4 + with: + python-version: "3.9" + - name: Install ci-connector-ops package + run: pip install --quiet -e ./tools/ci_connector_ops + - name: Write review requirements file + id: write-review-requirements-file + run: write-review-requirements-file >> $GITHUB_OUTPUT + - name: Get mandatory reviewers + id: get-mandatory-reviewers + run: print-mandatory-reviewers >> $GITHUB_OUTPUT + - name: Check if the review requirements are met + if: steps.write-review-requirements-file.outputs.CREATED_REQUIREMENTS_FILE == 'true' + uses: Automattic/action-required-review@v3 + with: + status: ${{ steps.get-mandatory-reviewers.outputs.MANDATORY_REVIEWERS }} + token: ${{ secrets.OCTAVIA_4_ROOT_ACCESS }} + requirements-file: .github/connector_org_review_requirements.yaml + diff --git a/.github/workflows/deploy-docs-site.yml b/.github/workflows/deploy-docs-site.yml index 4da11c12fa2f..a147a8af5b71 100644 --- a/.github/workflows/deploy-docs-site.yml +++ b/.github/workflows/deploy-docs-site.yml @@ -7,13 +7,20 @@ on: paths: - "docs/**" + pull_request: + types: + - opened + - reopened + - synchronize + paths: + - "docs/**" + # Allows you to run this workflow manually from the Actions tab workflow_dispatch: jobs: - dummy-job: - name: Deploy Docs Assets - if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' + build-and-deploy-docs: + name: Build and Deploy Docs Assets runs-on: ubuntu-latest steps: - name: Check out the repository @@ -29,22 +36,47 @@ jobs: cache: "yarn" cache-dependency-path: docusaurus + - name: Run Docusaurus env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: ./tools/bin/deploy_docusaurus + run: |- + export SKIP_DEPLOY="yes" + if [ "${{github.event_name}}" = 'push' -o "${{github.event_name}}" = 'workflow_dispatch' ]; then + export SKIP_DEPLOY="no" + fi + + ./tools/bin/deploy_docusaurus + + + - name: Notify Slack -- deploy failed + if: always() && ( github.event_name == 'push' || github.event_name == 'workflow_dispatch' ) && job.status != 'success' + uses: abinoda/slack-action@master + env: + SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN_AIRBYTE_TEAM }} + with: + # 'C02TYDSUM8F' => '#dev-deploys' + # 'C03BEADRPNY' => '#docs' + args: >- + {\"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 }}*\"}}, + {\"type\":\"section\",\"text\":{\"type\":\"mrkdwn\",\"text\":\"\"}} + ]}]} - - name: Notify Slack channel on failure + - name: Notify Slack -- deploy succeeded + if: always() && ( github.event_name == 'push' || github.event_name == 'workflow_dispatch' ) && job.status == 'success' uses: abinoda/slack-action@master - if: failure() env: SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN_AIRBYTE_TEAM }} with: - # 'C032Y32T065' channel => '#docs' + # 'C02TYDSUM8F' => '#dev-deploys' + # 'C03BEADRPNY' => '#docs' args: >- - {\"channel\":\"C03BEADRPNY\", \"blocks\":[ - {\"type\":\"divider\"}, - {\"type\":\"section\",\"text\":{\"type\":\"mrkdwn\",\"text\":\"OSS Docs build fails on the latest master :bangbang: \n\n\"}}, - {\"type\":\"section\",\"text\":{\"type\":\"mrkdwn\",\"text\":\"_merged by_: *${{ github.actor }}* \n\"}}, - {\"type\":\"section\",\"text\":{\"type\":\"mrkdwn\",\"text\":\" :octavia-shocked: :octavia-shocked: \n\"}}, - {\"type\":\"divider\"}]} + {\"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 }}*\"}}, + {\"type\":\"section\",\"text\":{\"type\":\"mrkdwn\",\"text\":\"\"}} + ]}]} diff --git a/.github/workflows/publish-oss-for-cloud.yml b/.github/workflows/publish-oss-for-cloud.yml index ad31e647fc10..6c8b13a0650a 100644 --- a/.github/workflows/publish-oss-for-cloud.yml +++ b/.github/workflows/publish-oss-for-cloud.yml @@ -1,6 +1,9 @@ name: Publish OSS Artifacts for Cloud -concurrency: - group: ${{ github.workflow }}-${{ inputs.oss_ref || github.sha }} + +env: + # enable gradle remote build cache + S3_BUILD_CACHE_ACCESS_KEY_ID: ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }} + S3_BUILD_CACHE_SECRET_KEY: ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }} on: workflow_dispatch: @@ -64,6 +67,12 @@ jobs: cat $GITHUB_OUTPUT || true # for the sake of investigation oss-branch-build: + concurrency: + # only allow one workflow run at a time for a given SHA + # to prevent multiple runs from pushing artifacts for the same SHA at the same time + # note: using inputs in the group expression only works when specifying concurrency at the job level + group: ${{ github.workflow }}-${{ inputs.oss_ref || github.sha }} + cancel-in-progress: false name: "Gradle Build and Publish" needs: - start-runner @@ -80,6 +89,7 @@ jobs: uses: ./.github/actions/build-branch with: branch_version_tag: ${{ needs.generate-tags.outputs.dev_tag }} + build_docker_images: 'false' - name: Publish Dev Jars env: @@ -97,6 +107,12 @@ jobs: shell: bash docker-push: + concurrency: + # only allow one workflow run at a time for a given SHA + # to prevent multiple runs from pushing artifacts for the same SHA at the same time + # note: using inputs in the group expression only works when specifying concurrency at the job level + group: ${{ github.workflow }}-${{ inputs.oss_ref || github.sha }} + cancel-in-progress: false name: "Push Docker Images" needs: - start-runner @@ -123,6 +139,15 @@ jobs: echo "GIT_REVISION=${GIT_REVISION}" >> $GITHUB_ENV shell: bash + - name: Prepare Runner for Building + uses: ./.github/actions/runner-prepare-for-build + + # Put tars/artifacts in the correct build directories so docker buildx can find the artifacts it needs when building docker images + - name: Prepare Docker context + run: VERSION=${{ needs.generate-tags.outputs.dev_tag }} SUB_BUILD=PLATFORM ./gradlew copyGeneratedTar airbyte-db:db-lib:copyInitSql + shell: bash + + # Build docker images using docker buildx (for multi platform) - name: Push Docker Images env: VERSION: ${{ needs.generate-tags.outputs.dev_tag }} @@ -133,3 +158,37 @@ jobs: - name: Cleanup Docker buildx run: docker buildx rm oss-buildx shell: bash + + stop-runner: + name: "Stop Build EC2 Runner" + timeout-minutes: 10 + needs: + - start-runner # required to get output from the start-runner job + - docker-push # wait until all publish steps are done + runs-on: ubuntu-latest + # Always is required to stop the runner even if the previous job has errors. However always() runs even if the previous step is skipped. + # Thus, we check for skipped here. + if: ${{ always() && needs.start-runner.result != 'skipped'}} + steps: + - name: Configure AWS credentials + uses: aws-actions/configure-aws-credentials@v1 + with: + aws-access-key-id: ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }} + aws-region: us-east-2 + - name: Checkout Airbyte + uses: actions/checkout@v3 + - name: Check PAT rate limits + run: | + ./tools/bin/find_non_rate_limited_PAT \ + ${{ secrets.AIRBYTEIO_PAT }} \ + ${{ secrets.OSS_BUILD_RUNNER_GITHUB_PAT }} \ + ${{ secrets.SUPERTOPHER_PAT }} \ + ${{ secrets.DAVINCHIA_PAT }} + - name: Stop EC2 runner + uses: airbytehq/ec2-github-runner@base64v1.1.0 + with: + mode: stop + github-token: ${{ env.PAT }} + label: ${{ needs.start-runner.outputs.label }} + ec2-instance-id: ${{ needs.start-runner.outputs.ec2-instance-id }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f82f2b5ba91f..c1577406f64b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,8 @@ repos: rev: v0.8.8 hooks: - id: licenseheaders - args: ["--tmpl=LICENSE_SHORT", "--ext=py", "-f"] + args: + ["--tmpl=LICENSE_SHORT", "--ext=py", "-x=**/models/__init__.py", "-f"] - repo: https://github.com/psf/black rev: 22.3.0 hooks: diff --git a/README.md b/README.md index 970a661cc62a..a22ea084e77c 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,50 @@ -# Introduction +

+ Airbyte +

+

+ Data integration platform for ELT pipelines from APIs, databases & files to databases, warehouses & lakes +

+

+ + Test + + + Release + + + Slack + + + YouTube Channel Views + + + Build + + + License + + + License + +

+ +We believe that only an **open-source** solution to data movement can cover the **long tail of data sources** while empowering data engineers to **customize existing connectors**. Our ultimate vision is to help you move data from any source to any destination. Airbyte already provides [300+ connectors](https://docs.airbyte.com/integrations/) for popular APIs, databases, data warehouses and data lakes. + +Airbyte connectors can be implemented in any language and take the form of a Docker image that follows the [Airbyte specification](https://docs.airbyte.com/understanding-airbyte/airbyte-protocol/). You can create new connectors very fast with: + - The [low-code Connector Development Kit](https://docs.airbyte.com/connector-development/config-based/low-code-cdk-overview) (CDK) for API connectors ([demo](https://www.youtube.com/watch?v=i7VSL2bDvmw)) + - The [Python CDK](https://docs.airbyte.com/connector-development/cdk-python/) ([tutorial](https://docs.airbyte.com/connector-development/tutorials/cdk-speedrun)) + +Airbyte has a built-in scheduler and uses [Temporal](https://airbyte.com/blog/scale-workflow-orchestration-with-temporal) to orchestrate jobs and ensure reliability at scale. Airbyte leverages [dbt](https://www.youtube.com/watch?v=saXwh6SpeHA) to normalize extracted data and can trigger custom transformations in SQL and dbt. You can also orchestrate Airbyte syncs with [Airflow](https://docs.airbyte.com/operator-guides/using-the-airflow-airbyte-operator), [Prefect](https://docs.airbyte.com/operator-guides/using-prefect-task) or [Dagster](https://docs.airbyte.com/operator-guides/using-dagster-integration). + +![Airbyte OSS Connections UI](https://user-images.githubusercontent.com/2302748/205949986-5207ca24-f1f0-41b1-97e1-a0745a0de55a.png) + +Explore our [demo app](https://demo.airbyte.io/). -[![GitHub stars](https://img.shields.io/github/stars/airbytehq/airbyte?style=social&label=Star&maxAge=2592000)](https://GitHub.com/airbytehq/airbyte/stargazers/) [![GitHub Workflow Status](https://img.shields.io/github/workflow/status/airbytehq/airbyte/Airbyte%20CI)](https://github.com/airbytehq/airbyte/actions/workflows/gradle.yml) [![License](https://img.shields.io/static/v1?label=license&message=MIT&color=brightgreen)](https://github.com/airbytehq/airbyte/tree/a9b1c6c0420550ad5069aca66c295223e0d05e27/LICENSE/README.md) [![License](https://img.shields.io/static/v1?label=license&message=ELv2&color=brightgreen)](https://github.com/airbytehq/airbyte/tree/a9b1c6c0420550ad5069aca66c295223e0d05e27/LICENSE/README.md) - -**Data integration is made simple, secure, and extensible.** -The new open-source standard to sync data from applications, APIs & databases to warehouses, lakes & other destinations. - -Airbyte is on a mission to make data integration pipelines a commodity. +## Quick start -- **Maintenance-free connectors you can use in minutes**. Just authenticate your sources and warehouse, and get connectors that adapt to schema and API changes for you. -- **Building new connectors made trivial.** We make it very easy to add new connectors that you need, using the language of your choice, by offering scheduling and orchestration. -- Designed to **cover the long tail of connectors and needs**. Benefit from the community's battle-tested connectors and adapt them to your specific needs. -- **Your data stays in your cloud**. Have full control over your data, and the costs of your data transfers. -- **No more security compliance process** to go through as Airbyte is self-hosted. -- **No more pricing indexed on volume**, as cloud-based solutions offer. +### Run Airbyte locally -Here's a list of our [connectors with their health status](docs/integrations/). - -## Quick start +You can run Airbyte locally with Docker. ```bash git clone https://github.com/airbytehq/airbyte.git @@ -24,43 +52,38 @@ cd airbyte docker-compose up ``` -Now visit [http://localhost:8000](http://localhost:8000). You will be asked for a username (default: `airbyte`) and password (default: `password`). You should update these values by changing `BASIC_AUTH_USERNAME` and `BASIC_AUTH_PASSWORD` in your local `.env` file. +Login to the web app at [http://localhost:8000](http://localhost:8000) by entering the default credentials found in your .env file. -Here is a [step-by-step guide](https://github.com/airbytehq/airbyte/tree/e378d40236b6a34e1c1cb481c8952735ec687d88/docs/quickstart/getting-started.md) showing you how to load data from an API into a file, all on your computer. +``` +BASIC_AUTH_USERNAME=airbyte +BASIC_AUTH_PASSWORD=password +``` -## Features +Follow web app UI instructions to set up a source, destination and connection to replicate data. Connections support the most popular sync modes: full refresh, incremental and change data capture for databases. -- **Built for extensibility**: Adapt an existing connector to your needs or build a new one with ease. -- **Optional normalized schemas**: Entirely customizable, start with raw data or from some suggestion of normalized data. -- **Full-grade scheduler**: Automate your replications with the frequency you need. -- **Real-time monitoring**: We log all errors in full detail to help you understand. -- **Incremental updates**: Automated replications are based on incremental updates to reduce your data transfer costs. -- **Manual full refresh**: Sometimes, you need to re-sync all your data to start again. -- **Debugging autonomy**: Modify and debug pipelines as you see fit, without waiting. +Read the [Airbyte docs](https://docs.airbyte.com). -[See more on our website.](https://airbyte.io/features/) +### Manage Airbyte configurations with code -## Contributing +You can also programmatically manage sources, destinations, and connections with YAML files, [Octavia CLI](https://github.com/airbytehq/airbyte/tree/master/octavia-cli), and API. + +### Deploy Airbyte to production -We love contributions to Airbyte, big or small. +Deployment options: [Docker](https://docs.airbyte.com/deploying-airbyte/local-deployment), [AWS EC2](https://docs.airbyte.com/deploying-airbyte/on-aws-ec2), [Azure](https://docs.airbyte.com/deploying-airbyte/on-azure-vm-cloud-shell), [GCP](https://docs.airbyte.com/deploying-airbyte/on-gcp-compute-engine), [Kubernetes](https://docs.airbyte.com/deploying-airbyte/on-kubernetes), [Restack](https://docs.airbyte.com/deploying-airbyte/on-restack), [Plural](https://docs.airbyte.com/deploying-airbyte/on-plural), [Oracle Cloud](https://docs.airbyte.com/deploying-airbyte/on-oci-vm), [Digital Ocean](https://docs.airbyte.com/deploying-airbyte/on-digitalocean-droplet)... -See our [Contributing guide](docs/contributing-to-airbyte/README.md) on how to get started. Not sure where to start? We’ve listed some [good first issues](https://github.com/airbytehq/airbyte/labels/good%20first%20issue) to start with. If you have any questions, please open a draft PR or visit our [slack channel](https://github.com/airbytehq/airbyte/tree/a9b1c6c0420550ad5069aca66c295223e0d05e27/slack.airbyte.io) where the core team can help answer your questions. +### Use Airbyte Cloud -**Note that you are able to create connectors using the language you want, as Airbyte connections run as Docker containers.** +Airbyte Cloud is the fastest and most reliable way to run Airbyte. You can get started with free credits in minutes. -**Also, we will never ask you to maintain your connector. The goal is that the Airbyte team and the community help maintain it, let's call it crowdsourced maintenance!** +Sign up for [Airbyte Cloud](https://cloud.airbyte.io/signup). -## Community support +## Contributing -For general help using Airbyte, please refer to the official Airbyte documentation. For additional help, you can use one of these channels to ask a question: +Get started by checking Github issues and creating a Pull Request. An easy way to start contributing is to update an existing connector or create a new connector using the low-code and Python CDKs. You can find the code for existing connectors in the [connectors](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors) directory. The Airbyte platform is written in Java, and the frontend in React. You can also contribute to our docs and tutorials. Advanced Airbyte users can apply to the [Maintainer program](https://airbyte.com/maintainer-program) and [Writer Program](https://airbyte.com/write-for-the-community). -- [Slack](https://slack.airbyte.io) \(For live discussion with the Community and Airbyte team\) -- [Forum](https://discuss.airbyte.io/) \(For deeper conversations about features, connectors, or problems\) -- [GitHub](https://github.com/airbytehq/airbyte) \(Bug reports, Contributions\) -- [Twitter](https://twitter.com/airbytehq) \(Get the news fast\) -- [Weekly office hours](https://airbyte.io/weekly-office-hours/) \(Live informal 30-minute video call sessions with the Airbyte team\) +Read the [Contributing guide](https://docs.airbyte.com/contributing-to-airbyte/). -## Reporting Vulnerabilities +## Reporting vulnerabilities ⚠️ Please do not file GitHub issues or post on our public forum for security vulnerabilities as they are public! ⚠️ @@ -68,10 +91,18 @@ Airbyte takes security issues very seriously. If you have any concerns about Air Note that this security address should be used only for undisclosed vulnerabilities. Dealing with fixed issues or general questions on how to use the security features should be handled regularly via the user and the dev lists. Please report any security problems to us before disclosing it publicly. -## Roadmap - -Check out our [roadmap](https://app.harvestr.io/roadmap/view/pQU6gdCyc/launch-week-roadmap) to get informed on what we are currently working on, and what we have in mind for the next weeks, months, and years. - ## License See the [LICENSE](docs/project-overview/licenses/) file for licensing information, and our [FAQ](docs/project-overview/licenses/license-faq.md) for any questions you may have on that topic. + +## Resources + +- [Weekly office hours](https://airbyte.io/weekly-office-hours/) for live informal sessions with the Airbyte team +- [Slack](https://slack.airbyte.io) for quick discussion with the Community and Airbyte team +- [Discourse](https://discuss.airbyte.io/) for deeper conversations about features, connectors, and problems +- [GitHub](https://github.com/airbytehq/airbyte) for code, issues and pull requests +- [Youtube](https://www.youtube.com/c/AirbyteHQ) for videos on data engineering +- [Newsletter](https://airbyte.com/newsletter) for product updates and data news +- [Blog](https://airbyte.com/blog) for data insigts articles, tutorials and updates +- [Docs](https://docs.airbyte.com/) for Airbyte features +- [Roadmap](https://app.harvestr.io/roadmap/view/pQU6gdCyc/launch-week-roadmap) for planned features \ No newline at end of file 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-bootloader/src/test/java/io/airbyte/bootloader/BootloaderAppTest.java b/airbyte-bootloader/src/test/java/io/airbyte/bootloader/BootloaderAppTest.java index 54b1c1f508a0..65566dd091a5 100644 --- a/airbyte-bootloader/src/test/java/io/airbyte/bootloader/BootloaderAppTest.java +++ b/airbyte-bootloader/src/test/java/io/airbyte/bootloader/BootloaderAppTest.java @@ -142,7 +142,7 @@ void testBootloaderAppBlankDb() throws Exception { val configsMigrator = new ConfigsDatabaseMigrator(configDatabase, configsFlyway); // this line should change with every new migration // to show that you meant to make a new migration to the prod database - assertEquals("0.40.23.001", configsMigrator.getLatestMigration().getVersion().getVersion()); + assertEquals("0.40.23.002", configsMigrator.getLatestMigration().getVersion().getVersion()); val jobsPersistence = new DefaultJobPersistence(jobDatabase); assertEquals(VERSION_0330_ALPHA, jobsPersistence.getVersion().get()); diff --git a/airbyte-cdk/python/CHANGELOG.md b/airbyte-cdk/python/CHANGELOG.md index f8824f945e71..739ca1d8c5f6 100644 --- a/airbyte-cdk/python/CHANGELOG.md +++ b/airbyte-cdk/python/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## 0.16.2 +Fix the naming of OAuthAuthenticator + +## 0.16.1 +Include declarative_component_schema.yaml in the publish to PyPi + +## 0.16.0 +Start validating low-code manifests using the declarative_component_schema.yaml file + +## 0.15.0 +Reverts additions from versions 0.13.0 and 0.13.3. + +## 0.14.0 +Low-code: Add token_expiry_date_format to OAuth Authenticator. Resolve ref schema + +## 0.13.3 +Fixed `StopIteration` exception for empty streams while `check_availability` runs. + +## 0.13.2 +Low-code: Enable low-code CDK users to specify schema inline in the manifest + +## 0.13.1 +Low-code: Add `SessionTokenAuthenticator` + +## 0.13.0 +Add `Stream.check_availability` and `Stream.AvailabilityStrategy`. Make `HttpAvailabilityStrategy` the default `HttpStream.AvailabilityStrategy`. + ## 0.12.4 Lookback window should applied when a state is supplied as well diff --git a/airbyte-cdk/python/README.md b/airbyte-cdk/python/README.md index d318c7cb81f8..a660ef8dba85 100644 --- a/airbyte-cdk/python/README.md +++ b/airbyte-cdk/python/README.md @@ -66,6 +66,13 @@ pip install -e ".[dev]" # [dev] installs development-only dependencies * Perform static type checks using `mypy airbyte_cdk`. `MyPy` configuration is in `.mypy.ini`. * The `type_check_and_test.sh` script bundles both type checking and testing in one convenient command. Feel free to use it! +##### Autogenerated files +If the iteration you are working on includes changes to the models, you might want to regenerate them. In order to do that, you can run: +```commandline +SUB_BUILD=CONNECTORS_BASE ./gradlew format --scan --info --stacktrace +``` +This will generate the files based on the schemas, add the license information and format the code. If you want to only do the former and rely on pre-commit to the others, you can run the appropriate generation command i.e. `./gradlew generateProtocolClassFiles` or `./gradlew generateComponentManifestClassFiles`. + #### Testing All tests are located in the `unit_tests` directory. Run `pytest --cov=airbyte_cdk unit_tests/` to run them. This also presents a test coverage report. diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/auth/oauth.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/auth/oauth.py index 97869cc9010a..a38900c22e1a 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/auth/oauth.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/auth/oauth.py @@ -30,6 +30,7 @@ class DeclarativeOauth2Authenticator(AbstractOauth2Authenticator, DeclarativeAut config (Mapping[str, Any]): The user-provided configuration as specified by the source's spec scopes (Optional[List[str]]): The scopes to request token_expiry_date (Optional[Union[InterpolatedString, str]]): The access token expiration date + token_expiry_date_format str: format of the datetime; provide it if expires_in is returned in datetime instead of seconds refresh_request_body (Optional[Mapping[str, Any]]): The request body to send in the refresh request grant_type: The grant_type to request for access_token """ @@ -43,6 +44,7 @@ class DeclarativeOauth2Authenticator(AbstractOauth2Authenticator, DeclarativeAut scopes: Optional[List[str]] = None token_expiry_date: Optional[Union[InterpolatedString, str]] = None _token_expiry_date: pendulum.DateTime = field(init=False, repr=False, default=None) + token_expiry_date_format: str = None access_token_name: Union[InterpolatedString, str] = "access_token" expires_in_name: Union[InterpolatedString, str] = "expires_in" refresh_request_body: Optional[Mapping[str, Any]] = None @@ -94,8 +96,11 @@ def get_refresh_request_body(self) -> Mapping[str, Any]: def get_token_expiry_date(self) -> pendulum.DateTime: return self._token_expiry_date - def set_token_expiry_date(self, value: pendulum.DateTime): - self._token_expiry_date = value + def set_token_expiry_date(self, initial_time: pendulum.DateTime, value: Union[str, int]): + if self.token_expiry_date_format: + self._token_expiry_date = pendulum.from_format(value, self.token_expiry_date_format) + else: + self._token_expiry_date = initial_time.add(seconds=value) @property def access_token(self) -> str: diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/auth/token.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/auth/token.py index c37e46e904ef..a4f105dbfe60 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/auth/token.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/auth/token.py @@ -3,13 +3,16 @@ # import base64 +import logging from dataclasses import InitVar, dataclass from typing import Any, Mapping, Union +import requests from airbyte_cdk.sources.declarative.auth.declarative_authenticator import DeclarativeAuthenticator from airbyte_cdk.sources.declarative.interpolation.interpolated_string import InterpolatedString from airbyte_cdk.sources.declarative.types import Config from airbyte_cdk.sources.streams.http.requests_native_auth.abstract_token import AbstractHeaderAuthenticator +from cachetools import TTLCache, cached from dataclasses_jsonschema import JsonSchemaMixin @@ -115,3 +118,125 @@ def token(self) -> str: auth_string = f"{self._username.eval(self.config)}:{self._password.eval(self.config)}".encode("utf8") b64_encoded = base64.b64encode(auth_string).decode("utf8") return f"Basic {b64_encoded}" + + +""" + maxsize - The maximum size of the cache + ttl - time-to-live value in seconds + docs https://cachetools.readthedocs.io/en/latest/ + maxsize=1000 - when the cache is full, in this case more than 1000, + i.e. by adding another item the cache would exceed its maximum size, the cache must choose which item(s) to discard + ttl=86400 means that cached token will live for 86400 seconds (one day) +""" +cacheSessionTokenAuthenticator = TTLCache(maxsize=1000, ttl=86400) + + +@cached(cacheSessionTokenAuthenticator) +def get_new_session_token(api_url: str, username: str, password: str, response_key: str) -> str: + """ + This method retrieves session token from api by username and password for SessionTokenAuthenticator. + It's cashed to avoid a multiple calling by sync and updating session token every stream sync. + Args: + api_url: api url for getting new session token + username: username for auth + password: password for auth + response_key: field name in response to retrieve a session token + + Returns: + session token + """ + response = requests.post( + f"{api_url}", + headers={"Content-Type": "application/json"}, + json={"username": username, "password": password}, + ) + response.raise_for_status() + if not response.ok: + raise ConnectionError(f"Failed to retrieve new session token, response code {response.status_code} because {response.reason}") + return response.json()[response_key] + + +@dataclass +class SessionTokenAuthenticator(AbstractHeaderAuthenticator, DeclarativeAuthenticator, JsonSchemaMixin): + """ + Builds auth based on session tokens. + A session token is a random value generated by a server to identify + a specific user for the duration of one interaction session. + + The header is of the form + `"Specific Header": "Session Token Value"` + + Attributes: + api_url (Union[InterpolatedString, str]): Base api url of source + username (Union[InterpolatedString, str]): The username + config (Config): The user-provided configuration as specified by the source's spec + password (Union[InterpolatedString, str]): The password + header (Union[InterpolatedString, str]): Specific header of source for providing session token + options (Mapping[str, Any]): Additional runtime parameters to be used for string interpolation + session_token (Union[InterpolatedString, str]): Session token generated by user + session_token_response_key (Union[InterpolatedString, str]): Key for retrieving session token from api response + login_url (Union[InterpolatedString, str]): Url fot getting a specific session token + validate_session_url (Union[InterpolatedString, str]): Url to validate passed session token + """ + + api_url: Union[InterpolatedString, str] + header: Union[InterpolatedString, str] + session_token: Union[InterpolatedString, str] + session_token_response_key: Union[InterpolatedString, str] + username: Union[InterpolatedString, str] + config: Config + options: InitVar[Mapping[str, Any]] + login_url: Union[InterpolatedString, str] + validate_session_url: Union[InterpolatedString, str] + password: Union[InterpolatedString, str] = "" + + def __post_init__(self, options): + self._username = InterpolatedString.create(self.username, options=options) + self._password = InterpolatedString.create(self.password, options=options) + self._api_url = InterpolatedString.create(self.api_url, options=options) + self._header = InterpolatedString.create(self.header, options=options) + self._session_token = InterpolatedString.create(self.session_token, options=options) + self._session_token_response_key = InterpolatedString.create(self.session_token_response_key, options=options) + self._login_url = InterpolatedString.create(self.login_url, options=options) + self._validate_session_url = InterpolatedString.create(self.validate_session_url, options=options) + + self.logger = logging.getLogger("airbyte") + + @property + def auth_header(self) -> str: + return self._header.eval(self.config) + + @property + def token(self) -> str: + if self._session_token.eval(self.config): + if self.is_valid_session_token(): + return self._session_token.eval(self.config) + if self._password.eval(self.config) and self._username.eval(self.config): + username = self._username.eval(self.config) + password = self._password.eval(self.config) + session_token_response_key = self._session_token_response_key.eval(self.config) + api_url = f"{self._api_url.eval(self.config)}{self._login_url.eval(self.config)}" + + self.logger.info("Using generated session token by username and password") + return get_new_session_token(api_url, username, password, session_token_response_key) + + raise ConnectionError("Invalid credentials: session token is not valid or provide username and password") + + def is_valid_session_token(self) -> bool: + try: + response = requests.get( + f"{self._api_url.eval(self.config)}{self._validate_session_url.eval(self.config)}", + headers={self.auth_header: self._session_token.eval(self.config)}, + ) + response.raise_for_status() + except requests.exceptions.HTTPError as e: + if e.response.status_code == requests.codes["unauthorized"]: + self.logger.info(f"Unable to connect by session token from config due to {str(e)}") + return False + else: + raise ConnectionError(f"Error while validating session token: {e}") + if response.ok: + self.logger.info("Connection check for source is successful.") + return True + else: + raise ConnectionError(f"Failed to retrieve new session token, response code {response.status_code} because {response.reason}") diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/config_component_schema.json b/airbyte-cdk/python/airbyte_cdk/sources/declarative/config_component_schema.json index 8f61c0716113..bcac98666570 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/config_component_schema.json +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/config_component_schema.json @@ -75,6 +75,9 @@ }, { "$ref": "#/definitions/DefaultSchemaLoader" + }, + { + "$ref": "#/definitions/InlineSchemaLoader" } ] }, @@ -93,6 +96,9 @@ }, { "$ref": "#/definitions/DefaultSchemaLoader" + }, + { + "$ref": "#/definitions/InlineSchemaLoader" } ] }, @@ -289,6 +295,9 @@ }, { "$ref": "#/definitions/BasicHttpAuthenticator" + }, + { + "$ref": "#/definitions/SessionTokenAuthenticator" } ] }, @@ -629,6 +638,75 @@ ], "description": "\n Builds auth based off the basic authentication scheme as defined by RFC 7617, which transmits credentials as USER ID/password pairs, encoded using base64\n https://developer.mozilla.org/en-US/docs/Web/HTTP/Authentication#basic_authentication_scheme\n\n The header is of the form\n `\"Authorization\": \"Basic \"`\n\n Attributes:\n username (Union[InterpolatedString, str]): The username\n config (Config): The user-provided configuration as specified by the source's spec\n password (Union[InterpolatedString, str]): The password\n options (Mapping[str, Any]): Additional runtime parameters to be used for string interpolation\n " }, + "SessionTokenAuthenticator": { + "allOf": [ + { + "$ref": "#/definitions/DeclarativeAuthenticator" + }, + { + "type": "object", + "required": ["api_url", "header"], + "properties": { + "api_url": { + "anyOf": [ + { + "$ref": "#/definitions/InterpolatedString" + }, + { + "type": "string" + } + ] + }, + "session_token": { + "anyOf": [ + { + "$ref": "#/definitions/InterpolatedString" + }, + { + "type": "string" + } + ], + "default": "" + }, + "username": { + "anyOf": [ + { + "$ref": "#/definitions/InterpolatedString" + }, + { + "type": "string" + } + ], + "default": "" + }, + "password": { + "anyOf": [ + { + "$ref": "#/definitions/InterpolatedString" + }, + { + "type": "string" + } + ], + "default": "" + }, + "header": { + "anyOf": [ + { + "$ref": "#/definitions/InterpolatedString" + }, + { + "type": "string" + } + ] + }, + "config": { + "type": "object" + } + } + } + ] + }, "CompositeErrorHandler": { "allOf": [ { @@ -1537,6 +1615,11 @@ ], "description": "\n Loads a schema from the default location or returns an empty schema for streams that have not defined their schema file yet.\n\n Attributes:\n config (Config): The user-provided configuration as specified by the source's spec\n options (Mapping[str, Any]): Additional arguments to pass to the string interpolation if needed\n " }, + "InlineSchemaLoader": { + "type": "object", + "properties": {}, + "description": "Loads a schema from the manifest, if provided." + }, "AddFields": { "allOf": [ { diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/declarative_component_schema.yaml b/airbyte-cdk/python/airbyte_cdk/sources/declarative/declarative_component_schema.yaml new file mode 100644 index 000000000000..1eef180598d0 --- /dev/null +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/declarative_component_schema.yaml @@ -0,0 +1,1066 @@ +"$schema": http://json-schema.org/draft-07/schema# +"$id": https://github.com/airbytehq/airbyte/blob/master/airbyte-cdk/python/airbyte_cdk/sources/declarative/declarative_component_schema.yaml +title: DeclarativeSource +type: object +description: An API source that extracts data according to its declarative components +version: 1.0.0 +required: + - type + - check + - streams + - version +properties: + type: + type: string + enum: [DeclarativeSource] + check: + "$ref": "#/definitions/CheckStream" + streams: + type: array + items: + "$ref": "#/definitions/DeclarativeStream" + version: + type: string + schemas: + "$ref": "#/definitions/Schemas" + spec: + "$ref": "#/definitions/Spec" +definitions: + AddedFieldDefinition: + description: Defines the field to add on a record + type: object + required: + - type + - path + - value + properties: + type: + type: string + enum: [AddedFieldDefinition] + path: + type: array + items: + type: string + value: + type: string + AddFields: + description: Transformation which adds field to an output record. The path of the added field can be nested. + type: object + required: + - type + - fields + properties: + type: + type: string + enum: [AddFields] + fields: + type: array + items: + - "$ref": "#/definitions/AddedFieldDefinition" + $options: + type: object + additionalProperties: true + ApiKeyAuthenticator: + description: Authenticator for requests requiring an api token + type: object + required: + - type + - api_token + properties: + type: + type: string + enum: [ApiKeyAuthenticator] + api_token: + type: string + header: + type: string + BasicHttpAuthenticator: + description: Authenticator for requests authenticated with a username and optional password + type: object + required: + - type + - username + properties: + type: + type: string + enum: [BasicHttpAuthenticator] + username: + type: string + password: + type: string + BearerAuthenticator: + description: Authenticator for requests authenticated with a Bearer token + type: object + required: + - type + - api_token + properties: + type: + type: string + enum: [BearerAuthenticator] + api_token: + type: string + CartesianProductStreamSlicer: + description: Stream slicer that iterates over the cartesian product of input stream slicers + type: object + required: + - type + - stream_slicers + properties: + type: + enum: [CartesianProductStreamSlicer] + stream_slicers: + type: array + items: + anyOf: + - "$ref": "#/definitions/CustomStreamSlicer" + - "$ref": "#/definitions/DatetimeStreamSlicer" + - "$ref": "#/definitions/ListStreamSlicer" + - "$ref": "#/definitions/SingleSlice" + - "$ref": "#/definitions/SubstreamSlicer" + $options: + type: object + additionalProperties: true + CheckStream: + description: Checks the connections by trying to read records from one or many of the streams selected by the developer + type: object + required: + - type + - stream_names + properties: + type: + type: string + enum: [CheckStream] + stream_names: + type: array + items: + type: string + CompositeErrorHandler: + description: Error handler that sequentially iterates over a list of error handlers + type: object + required: + - type + - error_handlers + properties: + type: + type: string + enum: [CompositeErrorHandler] + error_handlers: + type: array + items: + anyOf: + - "$ref": "#/definitions/CompositeErrorHandler" + - "$ref": "#/definitions/DefaultErrorHandler" + $options: + type: object + additionalProperties: true + ConstantBackoffStrategy: + description: Backoff strategy with a constant backoff interval + type: object + required: + - type + - backoff_time_in_seconds + properties: + type: + type: string + enum: [ConstantBackoffStrategy] + backoff_time_in_seconds: + anyOf: + - type: number + - type: string + $options: + type: object + additionalProperties: true + CursorPagination: + description: Pagination strategy that evaluates an interpolated string to define the next page token + type: object + required: + - type + - cursor_value + properties: + type: + type: string + enum: [CursorPagination] + cursor_value: + type: string + page_size: + type: integer + stop_condition: + type: string + decoder: + "$ref": "#/definitions/JsonDecoder" + $options: + type: object + additionalProperties: true + CustomAuthenticator: + description: Authenticator component whose behavior is derived from a custom code implementation of the connector + type: object + additionalProperties: true + required: + - type + - class_name + properties: + type: + type: string + enum: [CustomAuthenticator] + class_name: + type: string + additionalProperties: true + $options: + type: object + additionalProperties: true + CustomBackoffStrategy: + description: Backoff strategy component whose behavior is derived from a custom code implementation of the connector + type: object + additionalProperties: true + required: + - type + - class_name + properties: + type: + type: string + enum: [CustomBackoffStrategy] + class_name: + type: string + $options: + type: object + additionalProperties: true + CustomErrorHandler: + description: Error handler component whose behavior is derived from a custom code implementation of the connector + type: object + additionalProperties: true + required: + - type + - class_name + properties: + type: + type: string + enum: [CustomErrorHandler] + class_name: + type: string + $options: + type: object + additionalProperties: true + CustomPaginationStrategy: + description: Pagination strategy component whose behavior is derived from a custom code implementation of the connector + type: object + additionalProperties: true + required: + - type + - class_name + properties: + type: + type: string + enum: [CustomPaginationStrategy] + class_name: + type: string + $options: + type: object + additionalProperties: true + CustomRecordExtractor: + description: Record extractor component whose behavior is derived from a custom code implementation of the connector + type: object + additionalProperties: true + required: + - type + - class_name + properties: + type: + type: string + enum: [CustomRecordExtractor] + class_name: + type: string + $options: + type: object + additionalProperties: true + CustomRetriever: + description: Retriever component whose behavior is derived from a custom code implementation of the connector + type: object + additionalProperties: true + required: + - type + - class_name + properties: + type: + type: string + enum: [CustomRetriever] + class_name: + type: string + additionalProperties: true + $options: + type: object + additionalProperties: true + CustomStreamSlicer: + description: Stream slicer component whose behavior is derived from a custom code implementation of the connector + type: object + additionalProperties: true + required: + - type + - class_name + properties: + type: + type: string + enum: [CustomStreamSlicer] + class_name: + type: string + $options: + type: object + additionalProperties: true + CustomTransformation: + description: Transformation component whose behavior is derived from a custom code implementation of the connector + type: object + additionalProperties: true + required: + - type + - class_name + properties: + type: + type: string + enum: [CustomTransformation] + class_name: + type: string + $options: + type: object + additionalProperties: true + DatetimeStreamSlicer: + description: Stream slicer that slices the stream over a datetime range + type: object + required: + - type + - cursor_field + - end_datetime + - datetime_format + - start_datetime + - step + properties: + type: + type: string + enum: [DatetimeStreamSlicer] + cursor_field: + type: string + datetime_format: + type: string + end_datetime: + anyOf: + - type: string + - "$ref": "#/definitions/MinMaxDatetime" + start_datetime: + anyOf: + - type: string + - "$ref": "#/definitions/MinMaxDatetime" + step: + type: string + end_time_option: + "$ref": "#/definitions/RequestOption" + lookback_window: + type: string + start_time_option: + "$ref": "#/definitions/RequestOption" + stream_state_field_end: + type: string + stream_state_field_start: + type: string + $options: + type: object + additionalProperties: true + OAuthAuthenticator: + description: Authenticator for requests using OAuth 2.0 authentication + type: object + required: + - type + - client_id + - client_secret + - refresh_token + - token_refresh_endpoint + properties: + type: + type: string + enum: [OAuthAuthenticator] + client_id: + type: string + client_secret: + type: string + refresh_token: + type: string + token_refresh_endpoint: + type: string + access_token_name: + type: string + expires_in_name: + type: string + grant_type: + type: string + refresh_request_body: + type: object + additionalProperties: true + scopes: + type: array + items: + type: string + token_expiry_date: + type: string + DeclarativeStream: + description: A stream whose behavior is described by a set of declarative low code components + type: object + additionalProperties: true + required: + - type + - retriever + properties: + type: + type: string + enum: [DeclarativeStream] + retriever: + anyOf: + - "$ref": "#/definitions/CustomRetriever" + - "$ref": "#/definitions/SimpleRetriever" + checkpoint_interval: + type: integer + name: + type: string + default: "" + primary_key: + anyOf: + - type: string + - type: array + items: + type: string + - type: array + items: + type: array + items: + type: string + default: "" + schema_loader: + anyOf: + - "$ref": "#/definitions/DefaultSchemaLoader" + - "$ref": "#/definitions/InlineSchemaLoader" + - "$ref": "#/definitions/JsonFileSchemaLoader" + stream_cursor_field: + anyOf: + - type: string + - type: array + items: + - type: string + transformations: + type: array + items: + anyOf: + - "$ref": "#/definitions/AddFields" + - "$ref": "#/definitions/CustomTransformation" + - "$ref": "#/definitions/RemoveFields" + $options: + type: object + additional_properties: true + DefaultErrorHandler: + description: The default error handler. Default behavior includes only retrying server errors (HTTP 5XX) and too many requests (HTTP 429) with an exponential backoff + type: object + required: + - type + properties: + type: + type: string + enum: [DefaultErrorHandler] + backoff_strategies: + type: array + items: + anyOf: + - "$ref": "#/definitions/ConstantBackoffStrategy" + - "$ref": "#/definitions/CustomBackoffStrategy" + - "$ref": "#/definitions/ExponentialBackoffStrategy" + - "$ref": "#/definitions/WaitTimeFromHeader" + - "$ref": "#/definitions/WaitUntilTimeFromHeader" + max_retries: + type: integer + default: 5 + response_filters: + type: array + items: + "$ref": "#/definitions/HttpResponseFilter" + $options: + type: object + additional_properties: true + DefaultPaginator: + description: Default pagination implementation to request pages of results with a fixed size until the pagination strategy no longer returns a next_page_token + type: object + required: + - type + - pagination_strategy + - url_base + properties: + type: + type: string + enum: [DefaultPaginator] + pagination_strategy: + anyOf: + - "$ref": "#/definitions/CursorPagination" + - "$ref": "#/definitions/CustomPaginationStrategy" + - "$ref": "#/definitions/OffsetIncrement" + - "$ref": "#/definitions/PageIncrement" + url_base: + type: string + decoder: + "$ref": "#/definitions/JsonDecoder" + page_size_option: + "$ref": "#/definitions/RequestOption" + page_token_option: + "$ref": "#/definitions/RequestOption" + $options: + type: object + additionalProperties: true + DefaultSchemaLoader: + description: Loads a schema from the default location or returns an empty schema for streams that have not defined their schema file yet. + type: object + required: + - type + properties: + type: + type: string + enum: [DefaultSchemaLoader] + $options: + type: object + additionalProperties: true + DpathExtractor: + description: Record extractor that searches a decoded response over a path defined as an array of fields + type: object + required: + - type + - field_pointer + properties: + type: + type: string + enum: [DpathExtractor] + field_pointer: + type: array + items: + - type: string + decoder: + "$ref": "#/definitions/JsonDecoder" + $options: + type: object + additionalProperties: true + ExponentialBackoffStrategy: + description: Backoff strategy with an exponential backoff interval + type: object + required: + - type + properties: + type: + type: string + enum: [ExponentialBackoffStrategy] + factor: + anyOf: + - type: number + - type: string + default: 5 + $options: + type: object + additionalProperties: true + HttpRequester: + description: Default implementation of a requester + type: object + required: + - type + - name + - path + - url_base + properties: + type: + type: string + enum: [HttpRequester] + name: + type: string + path: + type: string + url_base: + type: string + authenticator: + anyOf: + - "$ref": "#/definitions/ApiKeyAuthenticator" + - "$ref": "#/definitions/BasicHttpAuthenticator" + - "$ref": "#/definitions/BearerAuthenticator" + - "$ref": "#/definitions/CustomAuthenticator" + - "$ref": "#/definitions/OAuthAuthenticator" + - "$ref": "#/definitions/NoAuth" + - "$ref": "#/definitions/SessionTokenAuthenticator" + error_handler: + anyOf: + - "$ref": "#/definitions/DefaultErrorHandler" + - "$ref": "#/definitions/CustomErrorHandler" + - "$ref": "#/definitions/CompositeErrorHandler" + http_method: + anyOf: + - type: string + - type: string + enum: + - GET + - POST + default: GET + request_options_provider: + "$ref": "#/definitions/InterpolatedRequestOptionsProvider" + $options: + type: object + additionalProperties: true + HttpResponseFilter: + description: A filter that is used to select on properties of the HTTP response received + type: object + required: + - type + - action + properties: + type: + type: string + enum: [HttpResponseFilter] + action: + type: string + enum: + - SUCCESS + - FAIL + - RETRY + - IGNORE + error_message: + type: string + error_message_contains: + type: string + http_codes: + type: array + items: + type: integer + uniqueItems: true + predicate: + type: string + $options: + type: object + additionalProperties: true + InlineSchemaLoader: + description: Loads a schema that is defined directly in the manifest file + type: object + required: + - type + properties: + type: + type: string + enum: [InlineSchemaLoader] + schema: + type: object + InterpolatedRequestOptionsProvider: + description: Defines the request options to set on an outgoing HTTP request by evaluating `InterpolatedMapping`s + type: object + required: + - type + properties: + type: + type: string + enum: [InterpolatedRequestOptionsProvider] + request_body_data: + anyOf: + - type: string + - type: object + additionalProperties: + type: string + request_body_json: + anyOf: + - type: string + - type: object + additionalProperties: + type: string + request_headers: + anyOf: + - type: string + - type: object + additionalProperties: + type: string + request_parameters: + anyOf: + - type: string + - type: object + additionalProperties: + type: string + $options: + type: object + additionalProperties: true + JsonFileSchemaLoader: + description: Loads the schema from a json file + type: object + required: + - type + properties: + type: + enum: [JsonFileSchemaLoader, JsonSchema] # TODO As part of Beta, remove JsonSchema and update connectors to use JsonFileSchemaLoader + file_path: + type: string + $options: + type: object + additionalProperties: true + JsonDecoder: + type: object + required: + - type + properties: + type: + type: string + enum: [JsonDecoder] + ListStreamSlicer: + description: Stream slicer that iterates over the values of a list + type: object + required: + - type + - cursor_field + - slice_values + properties: + type: + type: string + enum: [ListStreamSlicer] + cursor_field: + type: string + slice_values: + anyOf: + - type: string + - type: array + items: + type: string + request_option: + "$ref": "#/definitions/RequestOption" + $options: + type: object + additionalProperties: true + MinMaxDatetime: + description: Compares the provided date against optional minimum or maximum times. The max_datetime serves as the ceiling and will be returned when datetime exceeds it. The min_datetime serves as the floor + type: object + required: + - type + - datetime + properties: + type: + type: string + enum: [MinMaxDatetime] + datetime: + type: string + datetime_format: + type: string + default: "" + max_datetime: + type: string + min_datetime: + type: string + $options: + type: object + additionalProperties: true + NoAuth: + description: Authenticator for requests requiring no authentication + type: object + required: + - type + properties: + type: + type: string + enum: [NoAuth] + $options: + type: object + additionalProperties: true + NoPagination: + description: Pagination implementation that never returns a next page + type: object + required: + - type + properties: + type: + type: string + enum: [NoPagination] + OffsetIncrement: + description: Pagination strategy that returns the number of records reads so far and returns it as the next page token + type: object + required: + - type + - page_size + properties: + type: + type: string + enum: [OffsetIncrement] + page_size: + anyOf: + - type: number + - type: string + $options: + type: object + additionalProperties: true + PageIncrement: + description: Pagination strategy that returns the number of pages reads so far and returns it as the next page token + type: object + required: + - type + - page_size + properties: + type: + type: string + enum: [PageIncrement] + page_size: + type: integer + start_from_page: + type: integer + default: 0 + $options: + type: object + additionalProperties: true + ParentStreamConfig: + description: Describes how to create a stream slice from a parent stream + type: object + required: + - type + - parent_key + - stream + - stream_slice_field + properties: + type: + type: string + enum: [ParentStreamConfig] + parent_key: + type: string + stream: + "$ref": "#/definitions/DeclarativeStream" + stream_slice_field: + type: string + request_option: + "$ref": "#/definitions/RequestOption" + $options: + type: object + additionalProperties: true + PrimaryKey: + description: The stream field to be used to distinguish unique rows + anyOf: + - type: string + - type: array + items: + type: string + - type: array + items: + type: array + items: + type: string + default: "" + RecordFilter: + description: Filter applied on a list of Records + type: object + required: + - type + properties: + type: + type: string + enum: [RecordFilter] + backoff_time_in_seconds: + type: string + default: "" + $options: + type: object + additionalProperties: true + RecordSelector: + description: Responsible for translating an HTTP response into a list of records by extracting records from the response and optionally filtering records based on a heuristic. + type: object + required: + - type + - extractor + properties: + type: + type: string + enum: [RecordSelector] + extractor: + anyOf: + - "$ref": "#/definitions/CustomRecordExtractor" + - "$ref": "#/definitions/DpathExtractor" + record_filter: + "$ref": "#/definitions/RecordFilter" + $options: + type: object + additionalProperties: true + RemoveFields: + description: A transformation which removes fields from a record. The fields removed are designated using FieldPointers. During transformation, if a field or any of its parents does not exist in the record, no error is thrown. + type: object + required: + - type + - field_pointers + properties: + type: + type: string + enum: [RemoveFields] + field_pointers: + type: array + items: + items: + type: string + RequestOption: + description: Describes an option to set on a request + type: object + required: + - type + - inject_into + properties: + type: + type: string + enum: [RequestOption] + inject_into: + enum: + - request_parameter + - header + - path + - body_data + - body_json + field_name: + type: string + Schemas: + description: The stream schemas representing the shape of the data emitted by the stream + type: object + additionalProperties: true + SessionTokenAuthenticator: + description: Authenticator for requests based on session tokens. A session token is a random value generated by a server to identify a specific user for the duration of one interaction session + type: object + required: + - type + - api_url + - header + - login_url + - session_token + - session_token_response_key + - username + - validate_session_url + properties: + type: + type: string + enum: [SessionTokenAuthenticator] + api_url: + type: string + header: + type: string + login_url: + type: string + session_token: + type: string + session_token_response_key: + type: string + username: + type: string + validate_session_url: + type: string + password: + type: string + default: "" + $options: + type: object + additionalProperties: true + SimpleRetriever: + description: Retrieves records by synchronously sending requests to fetch records. The retriever acts as an orchestrator between the requester, the record selector, the paginator, and the stream slicer. + type: object + required: + - type + - record_selector + - requester + properties: + type: + type: string + enum: [SimpleRetriever] + record_selector: + "$ref": "#/definitions/RecordSelector" + requester: + "$ref": "#/definitions/HttpRequester" + name: + type: string + default: "" + paginator: + anyOf: + - "$ref": "#/definitions/DefaultPaginator" + - "$ref": "#/definitions/NoPagination" + primary_key: + "$ref": "#/definitions/PrimaryKey" + stream_slicer: + anyOf: + - "$ref": "#/definitions/CartesianProductStreamSlicer" + - "$ref": "#/definitions/CustomStreamSlicer" + - "$ref": "#/definitions/DatetimeStreamSlicer" + - "$ref": "#/definitions/ListStreamSlicer" + - "$ref": "#/definitions/SingleSlice" + - "$ref": "#/definitions/SubstreamSlicer" + $options: + type: object + additionalProperties: true + SingleSlice: + description: Stream slicer returning only a single stream slice + type: object + required: + - type + properties: + type: + type: string + enum: [SingleSlice] + $options: + type: object + additionalProperties: true + Spec: + description: A connection specification made up of information about the connector and how it can be configured + type: object + required: + - type + - connection_specification + - documentation_url + properties: + type: + type: string + enum: [Spec] + connection_specification: + type: object + additionalProperties: true + documentation_url: + type: string + SubstreamSlicer: + description: Stream slicer that iterates over the parent's stream slices and records and emits slices by interpolating the slice_definition mapping + type: object + required: + - type + - parent_stream_configs + properties: + type: + type: string + enum: [SubstreamSlicer] + parent_stream_configs: + type: array + items: + "$ref": "#/definitions/ParentStreamConfig" + $options: + type: object + additionalProperties: true + WaitTimeFromHeader: + description: Extract wait time from http header + type: object + required: + - type + - header + properties: + type: + type: string + enum: [WaitTimeFromHeader] + header: + type: string + regex: + type: string + $options: + type: object + additionalProperties: true + WaitUntilTimeFromHeader: + description: Extract time at which we can retry the request from response header and wait for the difference between now and that time + type: object + required: + - type + - header + properties: + type: + type: string + enum: [WaitUntilTimeFromHeader] + header: + type: string + min_wait: + anyOf: + - type: number + - type: string + regex: + type: string + $options: + type: object + additionalProperties: true diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/interpolation/interpolated_boolean.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/interpolation/interpolated_boolean.py index f7979dd69e46..4688f360618d 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/interpolation/interpolated_boolean.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/interpolation/interpolated_boolean.py @@ -9,7 +9,7 @@ from airbyte_cdk.sources.declarative.types import Config from dataclasses_jsonschema import JsonSchemaMixin -FALSE_VALUES: Final[List[Any]] = ["False", "false", "{}", "[]", "()", "", "0", "0.0", "False", "false", {}, False, [], (), set()] +FALSE_VALUES: Final[List[Any]] = ["False", "false", "{}", "[]", "()", "", "0", "0.0", {}, False, [], (), set()] @dataclass diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/manifest_declarative_source.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/manifest_declarative_source.py index a8ca572b42b6..db98f2e57264 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/manifest_declarative_source.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/manifest_declarative_source.py @@ -5,11 +5,13 @@ import inspect import json import logging +import pkgutil import typing from dataclasses import dataclass, fields from enum import Enum, EnumMeta from typing import Any, Iterator, List, Mapping, MutableMapping, Union +import yaml from airbyte_cdk.models import ( AirbyteConnectionStatus, AirbyteMessage, @@ -23,10 +25,12 @@ from airbyte_cdk.sources.declarative.declarative_stream import DeclarativeStream from airbyte_cdk.sources.declarative.exceptions import InvalidConnectorDefinitionException from airbyte_cdk.sources.declarative.parsers.factory import DeclarativeComponentFactory +from airbyte_cdk.sources.declarative.parsers.manifest_component_transformer import ManifestComponentTransformer from airbyte_cdk.sources.declarative.parsers.manifest_reference_resolver import ManifestReferenceResolver from airbyte_cdk.sources.declarative.types import ConnectionDefinition from airbyte_cdk.sources.streams.core import Stream from dataclasses_jsonschema import JsonSchemaMixin +from jsonschema.exceptions import ValidationError from jsonschema.validators import validate @@ -40,7 +44,7 @@ class ConcreteDeclarativeSource(JsonSchemaMixin): class ManifestDeclarativeSource(DeclarativeSource): """Declarative source defined by a manifest of low-code components that define source connector behavior""" - VALID_TOP_LEVEL_FIELDS = {"check", "definitions", "spec", "streams", "version"} + VALID_TOP_LEVEL_FIELDS = {"check", "definitions", "schemas", "spec", "streams", "type", "version"} def __init__(self, source_config: ConnectionDefinition, debug: bool = False): """ @@ -65,8 +69,8 @@ def __init__(self, source_config: ConnectionDefinition, debug: bool = False): @property def connection_checker(self) -> ConnectionChecker: check = self._source_config["check"] - if "class_name" not in check: - check["class_name"] = "airbyte_cdk.sources.declarative.checks.check_stream.CheckStream" + if "type" not in check: + check["type"] = "CheckStream" return self._factory.create_component(check, dict())(source=self) def streams(self, config: Mapping[str, Any]) -> List[Stream]: @@ -90,8 +94,8 @@ def spec(self, logger: logging.Logger) -> ConnectorSpecification: spec = self._source_config.get("spec") if spec: - if "class_name" not in spec: - spec["class_name"] = "airbyte_cdk.sources.declarative.spec.Spec" + if "type" not in spec: + spec["type"] = "Spec" spec_component = self._factory.create_component(spec, dict())() return spec_component.generate_spec() else: @@ -119,6 +123,7 @@ def _configure_logger_level(self, logger: logging.Logger): logger.setLevel(logging.DEBUG) def _validate_source(self): + # Validates the connector manifest against the schema auto-generated from the low-code backend full_config = {} if "version" in self._source_config: full_config["version"] = self._source_config["version"] @@ -127,13 +132,35 @@ def _validate_source(self): if len(streams) > 0: full_config["streams"] = streams declarative_source_schema = ConcreteDeclarativeSource.json_schema() - validate(full_config, declarative_source_schema) + + try: + validate(full_config, declarative_source_schema) + except ValidationError as e: + raise ValidationError("Validation against auto-generated schema failed") from e + + # Validates the connector manifest against the low-code component json schema + manifest = self._source_config + if "type" not in manifest: + manifest["type"] = "DeclarativeSource" + manifest_transformer = ManifestComponentTransformer() + propagated_manifest = manifest_transformer.propagate_types_and_options("", manifest, {}) + + try: + raw_component_schema = pkgutil.get_data("airbyte_cdk", "sources/declarative/declarative_component_schema.yaml") + declarative_component_schema = yaml.load(raw_component_schema, Loader=yaml.SafeLoader) + except FileNotFoundError as e: + raise FileNotFoundError(f"Failed to read manifest component json schema required for validation: {e}") + + try: + validate(propagated_manifest, declarative_component_schema) + except ValidationError as e: + raise ValidationError("Validation against json schema defined in declarative_component_schema.yaml schema failed") from e def _stream_configs(self): stream_configs = self._source_config.get("streams", []) for s in stream_configs: - if "class_name" not in s: - s["class_name"] = "airbyte_cdk.sources.declarative.declarative_stream.DeclarativeStream" + if "type" not in s: + s["type"] = "DeclarativeStream" return stream_configs @staticmethod diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/models/__init__.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/models/__init__.py new file mode 100644 index 000000000000..de07af17cd15 --- /dev/null +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/models/__init__.py @@ -0,0 +1,2 @@ +# generated by generate-component-manifest-files +from .declarative_component_schema import * diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/models/declarative_component_schema.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/models/declarative_component_schema.py new file mode 100644 index 000000000000..e2153536819c --- /dev/null +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/models/declarative_component_schema.py @@ -0,0 +1,490 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +# generated by datamodel-codegen: +# filename: declarative_component_schema.yaml + +from __future__ import annotations + +from enum import Enum +from typing import Any, Dict, List, Optional, Union + +from pydantic import BaseModel, Extra, Field +from typing_extensions import Literal + + +class AddedFieldDefinition(BaseModel): + type: Literal["AddedFieldDefinition"] + path: List[str] + value: str + + +class AddFields(BaseModel): + type: Literal["AddFields"] + fields: List[AddedFieldDefinition] + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class ApiKeyAuthenticator(BaseModel): + type: Literal["ApiKeyAuthenticator"] + api_token: str + header: Optional[str] = None + + +class BasicHttpAuthenticator(BaseModel): + type: Literal["BasicHttpAuthenticator"] + username: str + password: Optional[str] = None + + +class BearerAuthenticator(BaseModel): + type: Literal["BearerAuthenticator"] + api_token: str + + +class CheckStream(BaseModel): + type: Literal["CheckStream"] + stream_names: List[str] + + +class ConstantBackoffStrategy(BaseModel): + type: Literal["ConstantBackoffStrategy"] + backoff_time_in_seconds: Union[float, str] + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class CustomAuthenticator(BaseModel): + class Config: + extra = Extra.allow + + type: Literal["CustomAuthenticator"] + class_name: str + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class CustomBackoffStrategy(BaseModel): + class Config: + extra = Extra.allow + + type: Literal["CustomBackoffStrategy"] + class_name: str + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class CustomErrorHandler(BaseModel): + class Config: + extra = Extra.allow + + type: Literal["CustomErrorHandler"] + class_name: str + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class CustomPaginationStrategy(BaseModel): + class Config: + extra = Extra.allow + + type: Literal["CustomPaginationStrategy"] + class_name: str + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class CustomRecordExtractor(BaseModel): + class Config: + extra = Extra.allow + + type: Literal["CustomRecordExtractor"] + class_name: str + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class CustomRetriever(BaseModel): + class Config: + extra = Extra.allow + + type: Literal["CustomRetriever"] + class_name: str + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class CustomStreamSlicer(BaseModel): + class Config: + extra = Extra.allow + + type: Literal["CustomStreamSlicer"] + class_name: str + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class CustomTransformation(BaseModel): + class Config: + extra = Extra.allow + + type: Literal["CustomTransformation"] + class_name: str + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class OAuthAuthenticator(BaseModel): + type: Literal["OAuthAuthenticator"] + client_id: str + client_secret: str + refresh_token: str + token_refresh_endpoint: str + access_token_name: Optional[str] = None + expires_in_name: Optional[str] = None + grant_type: Optional[str] = None + refresh_request_body: Optional[Dict[str, Any]] = None + scopes: Optional[List[str]] = None + token_expiry_date: Optional[str] = None + + +class DefaultSchemaLoader(BaseModel): + type: Literal["DefaultSchemaLoader"] + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class ExponentialBackoffStrategy(BaseModel): + type: Literal["ExponentialBackoffStrategy"] + factor: Optional[Union[float, str]] = 5 + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class HttpMethodEnum(Enum): + GET = "GET" + POST = "POST" + + +class Action(Enum): + SUCCESS = "SUCCESS" + FAIL = "FAIL" + RETRY = "RETRY" + IGNORE = "IGNORE" + + +class HttpResponseFilter(BaseModel): + type: Literal["HttpResponseFilter"] + action: Action + error_message: Optional[str] = None + error_message_contains: Optional[str] = None + http_codes: Optional[List[int]] = None + predicate: Optional[str] = None + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class InlineSchemaLoader(BaseModel): + type: Literal["InlineSchemaLoader"] + schema_: Optional[Dict[str, Any]] = Field(None, alias="schema") + + +class InterpolatedRequestOptionsProvider(BaseModel): + type: Literal["InterpolatedRequestOptionsProvider"] + request_body_data: Optional[Union[str, Dict[str, str]]] = None + request_body_json: Optional[Union[str, Dict[str, str]]] = None + request_headers: Optional[Union[str, Dict[str, str]]] = None + request_parameters: Optional[Union[str, Dict[str, str]]] = None + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class Type(Enum): + JsonFileSchemaLoader = "JsonFileSchemaLoader" + JsonSchema = "JsonSchema" + + +class JsonFileSchemaLoader(BaseModel): + type: Type + file_path: Optional[str] = None + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class JsonDecoder(BaseModel): + type: Literal["JsonDecoder"] + + +class MinMaxDatetime(BaseModel): + type: Literal["MinMaxDatetime"] + datetime: str + datetime_format: Optional[str] = "" + max_datetime: Optional[str] = None + min_datetime: Optional[str] = None + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class NoAuth(BaseModel): + type: Literal["NoAuth"] + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class NoPagination(BaseModel): + type: Literal["NoPagination"] + + +class OffsetIncrement(BaseModel): + type: Literal["OffsetIncrement"] + page_size: Union[float, str] + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class PageIncrement(BaseModel): + type: Literal["PageIncrement"] + page_size: int + start_from_page: Optional[int] = 0 + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class PrimaryKey(BaseModel): + __root__: Union[str, List[str], List[List[str]]] = Field(..., description="The stream field to be used to distinguish unique rows") + + +class RecordFilter(BaseModel): + type: Literal["RecordFilter"] + backoff_time_in_seconds: Optional[str] = "" + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class RemoveFields(BaseModel): + type: Literal["RemoveFields"] + field_pointers: List[List[str]] + + +class InjectInto(Enum): + request_parameter = "request_parameter" + header = "header" + path = "path" + body_data = "body_data" + body_json = "body_json" + + +class RequestOption(BaseModel): + type: Literal["RequestOption"] + inject_into: InjectInto + field_name: Optional[str] = None + + +class Schemas(BaseModel): + pass + + class Config: + extra = Extra.allow + + +class SessionTokenAuthenticator(BaseModel): + type: Literal["SessionTokenAuthenticator"] + api_url: str + header: str + login_url: str + session_token: str + session_token_response_key: str + username: str + validate_session_url: str + password: Optional[str] = "" + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class SingleSlice(BaseModel): + type: Literal["SingleSlice"] + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class Spec(BaseModel): + type: Literal["Spec"] + connection_specification: Dict[str, Any] + documentation_url: str + + +class WaitTimeFromHeader(BaseModel): + type: Literal["WaitTimeFromHeader"] + header: str + regex: Optional[str] = None + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class WaitUntilTimeFromHeader(BaseModel): + type: Literal["WaitUntilTimeFromHeader"] + header: str + min_wait: Optional[Union[float, str]] = None + regex: Optional[str] = None + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class CursorPagination(BaseModel): + type: Literal["CursorPagination"] + cursor_value: str + page_size: Optional[int] = None + stop_condition: Optional[str] = None + decoder: Optional[JsonDecoder] = None + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class DatetimeStreamSlicer(BaseModel): + type: Literal["DatetimeStreamSlicer"] + cursor_field: str + datetime_format: str + end_datetime: Union[str, MinMaxDatetime] + start_datetime: Union[str, MinMaxDatetime] + step: str + end_time_option: Optional[RequestOption] = None + lookback_window: Optional[str] = None + start_time_option: Optional[RequestOption] = None + stream_state_field_end: Optional[str] = None + stream_state_field_start: Optional[str] = None + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class DefaultErrorHandler(BaseModel): + type: Literal["DefaultErrorHandler"] + backoff_strategies: Optional[ + List[ + Union[ + ConstantBackoffStrategy, + CustomBackoffStrategy, + ExponentialBackoffStrategy, + WaitTimeFromHeader, + WaitUntilTimeFromHeader, + ] + ] + ] = None + max_retries: Optional[int] = 5 + response_filters: Optional[List[HttpResponseFilter]] = None + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class DefaultPaginator(BaseModel): + type: Literal["DefaultPaginator"] + pagination_strategy: Union[CursorPagination, CustomPaginationStrategy, OffsetIncrement, PageIncrement] + url_base: str + decoder: Optional[JsonDecoder] = None + page_size_option: Optional[RequestOption] = None + page_token_option: Optional[RequestOption] = None + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class DpathExtractor(BaseModel): + type: Literal["DpathExtractor"] + field_pointer: List[str] + decoder: Optional[JsonDecoder] = None + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class ListStreamSlicer(BaseModel): + type: Literal["ListStreamSlicer"] + cursor_field: str + slice_values: Union[str, List[str]] + request_option: Optional[RequestOption] = None + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class RecordSelector(BaseModel): + type: Literal["RecordSelector"] + extractor: Union[CustomRecordExtractor, DpathExtractor] + record_filter: Optional[RecordFilter] = None + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class CompositeErrorHandler(BaseModel): + type: Literal["CompositeErrorHandler"] + error_handlers: List[Union[CompositeErrorHandler, DefaultErrorHandler]] + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class HttpRequester(BaseModel): + type: Literal["HttpRequester"] + name: str + path: str + url_base: str + authenticator: Optional[ + Union[ + ApiKeyAuthenticator, + BasicHttpAuthenticator, + BearerAuthenticator, + CustomAuthenticator, + OAuthAuthenticator, + NoAuth, + SessionTokenAuthenticator, + ] + ] = None + error_handler: Optional[Union[DefaultErrorHandler, CustomErrorHandler, CompositeErrorHandler]] = None + http_method: Optional[Union[str, HttpMethodEnum]] = "GET" + request_options_provider: Optional[InterpolatedRequestOptionsProvider] = None + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class DeclarativeSource(BaseModel): + type: Literal["DeclarativeSource"] + check: CheckStream + streams: List[DeclarativeStream] + version: str + schemas: Optional[Schemas] = None + spec: Optional[Spec] = None + + +class CartesianProductStreamSlicer(BaseModel): + type: Literal["CartesianProductStreamSlicer"] + stream_slicers: List[ + Union[ + CustomStreamSlicer, + DatetimeStreamSlicer, + ListStreamSlicer, + SingleSlice, + SubstreamSlicer, + ] + ] + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class DeclarativeStream(BaseModel): + class Config: + extra = Extra.allow + + type: Literal["DeclarativeStream"] + retriever: Union[CustomRetriever, SimpleRetriever] + checkpoint_interval: Optional[int] = None + name: Optional[str] = "" + primary_key: Optional[Union[str, List[str], List[List[str]]]] = "" + schema_loader: Optional[Union[DefaultSchemaLoader, InlineSchemaLoader, JsonFileSchemaLoader]] = None + stream_cursor_field: Optional[Union[str, List[str]]] = None + transformations: Optional[List[Union[AddFields, CustomTransformation, RemoveFields]]] = None + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class ParentStreamConfig(BaseModel): + type: Literal["ParentStreamConfig"] + parent_key: str + stream: DeclarativeStream + stream_slice_field: str + request_option: Optional[RequestOption] = None + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class SimpleRetriever(BaseModel): + type: Literal["SimpleRetriever"] + record_selector: RecordSelector + requester: HttpRequester + name: Optional[str] = "" + paginator: Optional[Union[DefaultPaginator, NoPagination]] = None + primary_key: Optional[PrimaryKey] = None + stream_slicer: Optional[ + Union[ + CartesianProductStreamSlicer, + CustomStreamSlicer, + DatetimeStreamSlicer, + ListStreamSlicer, + SingleSlice, + SubstreamSlicer, + ] + ] = None + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +class SubstreamSlicer(BaseModel): + type: Literal["SubstreamSlicer"] + parent_stream_configs: List[ParentStreamConfig] + _options: Optional[Dict[str, Any]] = Field(None, alias="$options") + + +CompositeErrorHandler.update_forward_refs() +DeclarativeSource.update_forward_refs() +CartesianProductStreamSlicer.update_forward_refs() +DeclarativeStream.update_forward_refs() +SimpleRetriever.update_forward_refs() diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/class_types_registry.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/class_types_registry.py index 66d4d6b0bc90..8db72d071810 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/class_types_registry.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/class_types_registry.py @@ -6,13 +6,21 @@ from airbyte_cdk.sources.declarative.auth.declarative_authenticator import NoAuth from airbyte_cdk.sources.declarative.auth.oauth import DeclarativeOauth2Authenticator -from airbyte_cdk.sources.declarative.auth.token import ApiKeyAuthenticator, BasicHttpAuthenticator, BearerAuthenticator +from airbyte_cdk.sources.declarative.auth.token import ( + ApiKeyAuthenticator, + BasicHttpAuthenticator, + BearerAuthenticator, + SessionTokenAuthenticator, +) +from airbyte_cdk.sources.declarative.checks import CheckStream from airbyte_cdk.sources.declarative.datetime.min_max_datetime import MinMaxDatetime from airbyte_cdk.sources.declarative.declarative_stream import DeclarativeStream from airbyte_cdk.sources.declarative.extractors.dpath_extractor import DpathExtractor from airbyte_cdk.sources.declarative.extractors.record_selector import RecordSelector from airbyte_cdk.sources.declarative.interpolation.interpolated_boolean import InterpolatedBoolean from airbyte_cdk.sources.declarative.interpolation.interpolated_string import InterpolatedString +from airbyte_cdk.sources.declarative.requesters import RequestOption +from airbyte_cdk.sources.declarative.requesters.error_handlers import HttpResponseFilter from airbyte_cdk.sources.declarative.requesters.error_handlers.backoff_strategies.constant_backoff_strategy import ConstantBackoffStrategy from airbyte_cdk.sources.declarative.requesters.error_handlers.backoff_strategies.exponential_backoff_strategy import ( ExponentialBackoffStrategy, @@ -31,14 +39,16 @@ from airbyte_cdk.sources.declarative.requesters.paginators.strategies.cursor_pagination_strategy import CursorPaginationStrategy from airbyte_cdk.sources.declarative.requesters.paginators.strategies.offset_increment import OffsetIncrement from airbyte_cdk.sources.declarative.requesters.paginators.strategies.page_increment import PageIncrement +from airbyte_cdk.sources.declarative.requesters.request_options import InterpolatedRequestOptionsProvider from airbyte_cdk.sources.declarative.retrievers.simple_retriever import SimpleRetriever +from airbyte_cdk.sources.declarative.schema.inline_schema_loader import InlineSchemaLoader from airbyte_cdk.sources.declarative.schema.json_file_schema_loader import JsonFileSchemaLoader from airbyte_cdk.sources.declarative.spec import Spec from airbyte_cdk.sources.declarative.stream_slicers.cartesian_product_stream_slicer import CartesianProductStreamSlicer 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 airbyte_cdk.sources.declarative.stream_slicers.single_slice import SingleSlice -from airbyte_cdk.sources.declarative.stream_slicers.substream_slicer import SubstreamSlicer +from airbyte_cdk.sources.declarative.stream_slicers.substream_slicer import ParentStreamConfig, SubstreamSlicer from airbyte_cdk.sources.declarative.transformations import RemoveFields from airbyte_cdk.sources.declarative.transformations.add_fields import AddFields @@ -51,6 +61,7 @@ "BasicHttpAuthenticator": BasicHttpAuthenticator, "BearerAuthenticator": BearerAuthenticator, "CartesianProductStreamSlicer": CartesianProductStreamSlicer, + "CheckStream": CheckStream, "CompositeErrorHandler": CompositeErrorHandler, "ConstantBackoffStrategy": ConstantBackoffStrategy, "CursorPagination": CursorPaginationStrategy, @@ -61,7 +72,10 @@ "DpathExtractor": DpathExtractor, "ExponentialBackoffStrategy": ExponentialBackoffStrategy, "HttpRequester": HttpRequester, + "HttpResponseFilter": HttpResponseFilter, + "InlineSchemaLoader": InlineSchemaLoader, "InterpolatedBoolean": InterpolatedBoolean, + "InterpolatedRequestOptionsProvider": InterpolatedRequestOptionsProvider, "InterpolatedString": InterpolatedString, "JsonSchema": JsonFileSchemaLoader, # todo remove after hacktoberfest and update connectors to use JsonFileSchemaLoader "JsonFileSchemaLoader": JsonFileSchemaLoader, @@ -72,12 +86,15 @@ "OAuthAuthenticator": DeclarativeOauth2Authenticator, "OffsetIncrement": OffsetIncrement, "PageIncrement": PageIncrement, + "ParentStreamConfig": ParentStreamConfig, "RecordSelector": RecordSelector, + "RequestOption": RequestOption, "RemoveFields": RemoveFields, "SimpleRetriever": SimpleRetriever, "SingleSlice": SingleSlice, "Spec": Spec, "SubstreamSlicer": SubstreamSlicer, + "SessionTokenAuthenticator": SessionTokenAuthenticator, "WaitUntilTimeFromHeader": WaitUntilTimeFromHeaderBackoffStrategy, "WaitTimeFromHeader": WaitTimeFromHeaderBackoffStrategy, } diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/manifest_component_transformer.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/manifest_component_transformer.py new file mode 100644 index 000000000000..8be72eb77828 --- /dev/null +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/manifest_component_transformer.py @@ -0,0 +1,136 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import copy +import typing +from typing import Any, Mapping + +OPTIONS_STR = "$options" + + +# todo: For better granularity, we may want this to be keyed on the object + field +DEFAULT_MODEL_TYPES: Mapping[str, str] = { + # CompositeErrorHandler + "CompositeErrorHandler.error_handlers": "DefaultErrorHandler", + # CursorPagination + "CursorPagination.decoder": "JsonDecoder", + # DatetimeStreamSlicer + "DatetimeStreamSlicer.end_datetime": "MinMaxDatetime", + "DatetimeStreamSlicer.end_time_option": "RequestOption", + "DatetimeStreamSlicer.start_datetime": "MinMaxDatetime", + "DatetimeStreamSlicer.start_time_option": "RequestOption", + # DeclarativeSource + "DeclarativeSource.check": "CheckStream", + "DeclarativeSource.spec": "Spec", + "DeclarativeSource.streams": "DeclarativeStream", + # DeclarativeStream + "DeclarativeStream.retriever": "SimpleRetriever", + "DeclarativeStream.schema_loader": "JsonFileSchemaLoader", + # DefaultErrorHandler + "DefaultErrorHandler.response_filters": "HttpResponseFilter", + # DefaultPaginator + "DefaultPaginator.decoder": "JsonDecoder", + "DefaultPaginator.page_size_option": "RequestOption", + "DefaultPaginator.page_token_option": "RequestOption", + # DpathExtractor + "DpathExtractor.decoder": "JsonDecoder", + # HttpRequester + "HttpRequester.error_handler": "DefaultErrorHandler", + "HttpRequester.request_options_provider": "InterpolatedRequestOptionsProvider", + # ListStreamSlicer + "ListStreamSlicer.request_option": "RequestOption", + # ParentStreamConfig + "ParentStreamConfig.request_option": "RequestOption", + "ParentStreamConfig.stream": "DeclarativeStream", + # RecordSelector + "RecordSelector.extractor": "DpathExtractor", + "RecordSelector.record_filter": "RecordFilter", + # SimpleRetriever + "SimpleRetriever.paginator": "NoPagination", + "SimpleRetriever.record_selector": "RecordSelector", + "SimpleRetriever.requester": "HttpRequester", + "SimpleRetriever.stream_slicer": "SingleSlice", + # SubstreamSlicer + "SubstreamSlicer.parent_stream_configs": "ParentStreamConfig", + # AddFields + "AddFields.fields": "AddedFieldDefinition", + # CustomStreamSlicer + "CustomStreamSlicer.parent_stream_configs": "ParentStreamConfig", +} + +# We retain a separate registry for custom components to automatically insert the type if it is missing. This is intended to +# be a short term fix because once we have migrated, then type and class_name should be requirements for all custom components. +CUSTOM_COMPONENTS_MAPPING: Mapping[str, str] = { + "CartesianProductStreamSlicer.stream_slicers": "CustomStreamSlicer", + "CompositeErrorHandler.backoff_strategies": "CustomBackoffStrategy", + "DeclarativeStream.retriever": "CustomRetriever", + "DeclarativeStream.transformations": "CustomTransformation", + "DefaultErrorHandler.backoff_strategies": "CustomBackoffStrategy", + "DefaultPaginator.pagination_strategy": "CustomPaginationStrategy", + "HttpRequester.authenticator": "CustomAuthenticator", + "HttpRequester.error_handler": "CustomErrorHandler", + "RecordSelector.extractor": "CustomRecordExtractor", + "SimpleRetriever.stream_slicer": "CustomStreamSlicer", +} + + +class ManifestComponentTransformer: + def propagate_types_and_options( + self, parent_field_identifier: str, declarative_component: Mapping[str, Any], parent_options: Mapping[str, Any] + ) -> Mapping[str, Any]: + """ + Recursively transforms the specified declarative component and subcomponents to propagate options and insert the + default component type if it was not already present. The resulting transformed components are a deep copy of the input + components, not an in-place transformation. + + :param declarative_component: The current component that is having type and options added + :param parent_field_identifier: The name of the field of the current component coming from the parent component + :param parent_options: The options set on parent components defined before the current component + :return: A deep copy of the transformed component with types and options persisted to it + """ + propagated_component = dict(copy.deepcopy(declarative_component)) + if "type" not in propagated_component: + # If the component has class_name we assume that this is a reference to a custom component. This is a slight change to + # existing behavior because we originally allowed for either class or type to be specified. After the pydantic migration, + # class_name will only be a valid field on custom components and this change reflects that. I checked, and we currently + # have no low-code connectors that use class_name except for custom components. + if "class_name" in propagated_component: + found_type = CUSTOM_COMPONENTS_MAPPING.get(parent_field_identifier) + else: + found_type = DEFAULT_MODEL_TYPES.get(parent_field_identifier) + if found_type: + propagated_component["type"] = found_type + + # When there is no resolved type, we're not processing a component (likely a regular object) and don't need to propagate options + if "type" not in propagated_component: + return propagated_component + + # Combines options defined at the current level with options from parent components. Options at the current level take precedence + current_options = dict(copy.deepcopy(parent_options)) + component_options = propagated_component.pop(OPTIONS_STR, {}) + current_options = {**current_options, **component_options} + + # Options should be applied to the current component fields with the existing field taking precedence over options if both exist + for option_key, option_value in current_options.items(): + propagated_component[option_key] = propagated_component.get(option_key) or option_value + + for field_name, field_value in propagated_component.items(): + if isinstance(field_value, dict): + # We exclude propagating an option that matches the current field name because that would result in an infinite cycle + excluded_option = current_options.pop(field_name, None) + parent_type_field_identifier = f"{propagated_component.get('type')}.{field_name}" + propagated_component[field_name] = self.propagate_types_and_options( + parent_type_field_identifier, field_value, current_options + ) + if excluded_option: + current_options[field_name] = excluded_option + elif isinstance(field_value, typing.List): + for i, element in enumerate(field_value): + if isinstance(element, dict): + parent_type_field_identifier = f"{propagated_component.get('type')}.{field_name}" + field_value[i] = self.propagate_types_and_options(parent_type_field_identifier, element, current_options) + + if current_options: + propagated_component[OPTIONS_STR] = current_options + return propagated_component diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/schema/__init__.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/schema/__init__.py index ce2281d59f0c..db5349305dfa 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/schema/__init__.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/schema/__init__.py @@ -3,7 +3,8 @@ # from airbyte_cdk.sources.declarative.schema.default_schema_loader import DefaultSchemaLoader +from airbyte_cdk.sources.declarative.schema.inline_schema_loader import InlineSchemaLoader from airbyte_cdk.sources.declarative.schema.json_file_schema_loader import JsonFileSchemaLoader from airbyte_cdk.sources.declarative.schema.schema_loader import SchemaLoader -__all__ = ["JsonFileSchemaLoader", "DefaultSchemaLoader", "SchemaLoader"] +__all__ = ["JsonFileSchemaLoader", "DefaultSchemaLoader", "SchemaLoader", "InlineSchemaLoader"] diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/schema/inline_schema_loader.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/schema/inline_schema_loader.py new file mode 100644 index 000000000000..2161db3bd809 --- /dev/null +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/schema/inline_schema_loader.py @@ -0,0 +1,19 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +from dataclasses import InitVar, dataclass +from typing import Any, Dict, Mapping + +from airbyte_cdk.sources.declarative.schema.schema_loader import SchemaLoader + + +@dataclass +class InlineSchemaLoader(SchemaLoader): + """Describes a stream's schema""" + + schema: Dict[str, Any] + options: InitVar[Mapping[str, Any]] + + def get_json_schema(self) -> Mapping[str, Any]: + return self.schema diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/schema/json_file_schema_loader.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/schema/json_file_schema_loader.py index fa4e5a99a005..ba4fd30635ff 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/schema/json_file_schema_loader.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/schema/json_file_schema_loader.py @@ -11,6 +11,7 @@ from airbyte_cdk.sources.declarative.interpolation.interpolated_string import InterpolatedString from airbyte_cdk.sources.declarative.schema.schema_loader import SchemaLoader from airbyte_cdk.sources.declarative.types import Config +from airbyte_cdk.sources.utils.schema_helpers import ResourceSchemaLoader from dataclasses_jsonschema import JsonSchemaMixin @@ -30,7 +31,7 @@ def _default_file_path() -> str: @dataclass -class JsonFileSchemaLoader(SchemaLoader, JsonSchemaMixin): +class JsonFileSchemaLoader(ResourceSchemaLoader, SchemaLoader, JsonSchemaMixin): """ Loads the schema from a json file @@ -63,7 +64,8 @@ def get_json_schema(self) -> Mapping[str, Any]: raw_schema = json.loads(raw_json_file) except ValueError as err: raise RuntimeError(f"Invalid JSON file format for file {json_schema_path}") from err - return raw_schema + self.package_name = resource + return self._resolve_schema_references(raw_schema) def _get_json_filepath(self): return self.file_path.eval(self.config) diff --git a/airbyte-cdk/python/airbyte_cdk/sources/streams/http/requests_native_auth/abstract_oauth.py b/airbyte-cdk/python/airbyte_cdk/sources/streams/http/requests_native_auth/abstract_oauth.py index fab826bd7b46..65eb2bc91ca5 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/streams/http/requests_native_auth/abstract_oauth.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/streams/http/requests_native_auth/abstract_oauth.py @@ -3,7 +3,7 @@ # from abc import abstractmethod -from typing import Any, List, Mapping, MutableMapping, Tuple +from typing import Any, List, Mapping, MutableMapping, Tuple, Union import pendulum import requests @@ -29,10 +29,10 @@ def get_auth_header(self) -> Mapping[str, Any]: def get_access_token(self) -> str: """Returns the access token""" if self.token_has_expired(): - t0 = pendulum.now() + current_datetime = pendulum.now() token, expires_in = self.refresh_access_token() self.access_token = token - self.set_token_expiry_date(t0.add(seconds=expires_in)) + self.set_token_expiry_date(current_datetime, expires_in) return self.access_token @@ -102,11 +102,11 @@ def get_scopes(self) -> List[str]: """List of requested scopes""" @abstractmethod - def get_token_expiry_date(self) -> pendulum.datetime: + def get_token_expiry_date(self) -> pendulum.DateTime: """Expiration date of the access token""" @abstractmethod - def set_token_expiry_date(self, value: pendulum.datetime): + def set_token_expiry_date(self, initial_time: pendulum.DateTime, value: Union[str, int]): """Setter for access token expiration date""" @abstractmethod diff --git a/airbyte-cdk/python/airbyte_cdk/sources/streams/http/requests_native_auth/oauth.py b/airbyte-cdk/python/airbyte_cdk/sources/streams/http/requests_native_auth/oauth.py index 5be3b3d05d16..ca4398ddd08f 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/streams/http/requests_native_auth/oauth.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/streams/http/requests_native_auth/oauth.py @@ -2,7 +2,7 @@ # Copyright (c) 2022 Airbyte, Inc., all rights reserved. # -from typing import Any, List, Mapping, Sequence, Tuple +from typing import Any, List, Mapping, Sequence, Tuple, Union import dpath import pendulum @@ -25,6 +25,7 @@ def __init__( refresh_token: str, scopes: List[str] = None, token_expiry_date: pendulum.DateTime = None, + token_expiry_date_format: str = None, access_token_name: str = "access_token", expires_in_name: str = "expires_in", refresh_request_body: Mapping[str, Any] = None, @@ -41,6 +42,7 @@ def __init__( self._grant_type = grant_type self._token_expiry_date = token_expiry_date or pendulum.now().subtract(days=1) + self._token_expiry_date_format = token_expiry_date_format self._access_token = None def get_token_refresh_endpoint(self) -> str: @@ -73,8 +75,11 @@ def get_grant_type(self) -> str: def get_token_expiry_date(self) -> pendulum.DateTime: return self._token_expiry_date - def set_token_expiry_date(self, value: pendulum.DateTime): - self._token_expiry_date = value + def set_token_expiry_date(self, initial_time: pendulum.DateTime, value: Union[str, int]): + if self._token_expiry_date_format: + self._token_expiry_date = pendulum.from_format(value, self._token_expiry_date_format) + else: + self._token_expiry_date = initial_time.add(seconds=value) @property def access_token(self) -> str: @@ -100,6 +105,7 @@ def __init__( token_refresh_endpoint: str, scopes: List[str] = None, token_expiry_date: pendulum.DateTime = None, + token_expiry_date_format: str = None, access_token_name: str = "access_token", expires_in_name: str = "expires_in", refresh_token_name: str = "refresh_token", @@ -138,6 +144,7 @@ def __init__( self.get_refresh_token(), scopes, token_expiry_date, + token_expiry_date_format, access_token_name, expires_in_name, refresh_request_body, @@ -192,7 +199,7 @@ def get_access_token(self) -> str: t0 = pendulum.now() new_access_token, access_token_expires_in, new_refresh_token = self.refresh_access_token() self.access_token = new_access_token - self.set_token_expiry_date(t0.add(seconds=access_token_expires_in)) + self.set_token_expiry_date(t0, access_token_expires_in) self.set_refresh_token(new_refresh_token) return self.access_token diff --git a/airbyte-cdk/python/airbyte_cdk/sources/utils/schema_helpers.py b/airbyte-cdk/python/airbyte_cdk/sources/utils/schema_helpers.py index aea02ecec950..368a45225621 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/utils/schema_helpers.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/utils/schema_helpers.py @@ -129,9 +129,9 @@ def get_schema(self, name: str) -> dict: except ValueError as err: raise RuntimeError(f"Invalid JSON file format for file {schema_filename}") from err - return self.__resolve_schema_references(raw_schema) + return self._resolve_schema_references(raw_schema) - def __resolve_schema_references(self, raw_schema: dict) -> dict: + def _resolve_schema_references(self, raw_schema: dict) -> dict: """ Resolve links to external references and move it to local "definitions" map. diff --git a/airbyte-cdk/python/bin/generate-component-manifest-files.sh b/airbyte-cdk/python/bin/generate-component-manifest-files.sh new file mode 100755 index 000000000000..31d5066dce38 --- /dev/null +++ b/airbyte-cdk/python/bin/generate-component-manifest-files.sh @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +set -e + +[ -z "$ROOT_DIR" ] && exit 1 + +YAML_DIR=airbyte-cdk/python/airbyte_cdk/sources/declarative +OUTPUT_DIR=airbyte-cdk/python/airbyte_cdk/sources/declarative/models + +function main() { + rm -rf "$ROOT_DIR/$OUTPUT_DIR"/*.py + echo "# generated by generate-component-manifest-files" > "$ROOT_DIR/$OUTPUT_DIR"/__init__.py + + for f in "$ROOT_DIR/$YAML_DIR"/*.yaml; do + filename_wo_ext=$(basename "$f" | cut -d . -f 1) + echo "from .$filename_wo_ext import *" >> "$ROOT_DIR/$OUTPUT_DIR"/__init__.py + + docker run --user "$(id -u):$(id -g)" -v "$ROOT_DIR":/airbyte airbyte/code-generator:dev \ + --input "/airbyte/$YAML_DIR/$filename_wo_ext.yaml" \ + --output "/airbyte/$OUTPUT_DIR/$filename_wo_ext.py" \ + --use-title-as-name \ + --disable-timestamp \ + --enum-field-as-literal one + done +} + +main "$@" diff --git a/airbyte-cdk/python/bin/validate-yaml-schema.sh b/airbyte-cdk/python/bin/validate-yaml-schema.sh new file mode 100755 index 000000000000..8593426b3534 --- /dev/null +++ b/airbyte-cdk/python/bin/validate-yaml-schema.sh @@ -0,0 +1,32 @@ +#!/usr/bin/env bash + +[ -z "$ROOT_DIR" ] && exit 1 + +CONNECTORS_DIR=$ROOT_DIR/airbyte-integrations/connectors +CDK_DIR=$ROOT_DIR/airbyte-cdk/python/ + +for directory in $CONNECTORS_DIR/source-* ; do + MANIFEST_DIRECTORY=$(basename $directory | tr - _) + SOURCE_NAME=${MANIFEST_DIRECTORY#source_} + if test -f "$directory/source_$SOURCE_NAME/$SOURCE_NAME.yaml"; then + cd $directory + + rm -rf .venv + python -m venv .venv + source .venv/bin/activate + pip install -r requirements.txt > /dev/null 2>&1 + pip install -e ".[tests]" > /dev/null 2>&1 + pip install -e $CDK_DIR > /dev/null 2>&1 + + python main.py spec > /dev/null 2>&1 + ret=$? + if [ $ret -ne 0 ]; then + echo "----Error for source $SOURCE_NAME" + else + echo "Source $SOURCE_NAME is fine" + fi + + deactivate + cd .. + fi +done diff --git a/airbyte-cdk/python/build.gradle b/airbyte-cdk/python/build.gradle index e5cd50cdd1c7..addc32e7c80f 100644 --- a/airbyte-cdk/python/build.gradle +++ b/airbyte-cdk/python/build.gradle @@ -13,7 +13,23 @@ task generateProtocolClassFiles(type: Exec) { dependsOn ':tools:code-generator:airbyteDocker' } +task generateComponentManifestClassFiles(type: Exec) { + environment 'ROOT_DIR', rootDir.absolutePath + commandLine 'bin/generate-component-manifest-files.sh' + dependsOn ':tools:code-generator:airbyteDocker' +} + +task validateSourceYamlManifest(type: Exec) { + environment 'ROOT_DIR', rootDir.absolutePath + commandLine 'bin/validate-yaml-schema.sh' +} + blackFormat.dependsOn generateProtocolClassFiles isortFormat.dependsOn generateProtocolClassFiles flakeCheck.dependsOn generateProtocolClassFiles installReqs.dependsOn generateProtocolClassFiles + +blackFormat.dependsOn generateComponentManifestClassFiles +isortFormat.dependsOn generateComponentManifestClassFiles +flakeCheck.dependsOn generateComponentManifestClassFiles +installReqs.dependsOn generateComponentManifestClassFiles diff --git a/airbyte-cdk/python/setup.py b/airbyte-cdk/python/setup.py index 46f64877e0b0..d3ac09c8c966 100644 --- a/airbyte-cdk/python/setup.py +++ b/airbyte-cdk/python/setup.py @@ -15,7 +15,7 @@ setup( name="airbyte-cdk", - version="0.12.4", + version="0.16.2", description="A framework for writing Airbyte Connectors.", long_description=README, long_description_content_type="text/markdown", @@ -42,7 +42,7 @@ "Tracker": "https://github.com/airbytehq/airbyte/issues", }, packages=find_packages(exclude=("unit_tests",)), - package_data={"airbyte_cdk": ["py.typed"]}, + package_data={"airbyte_cdk": ["py.typed", "sources/declarative/declarative_component_schema.yaml"]}, install_requires=[ "backoff", # pinned to the last working version for us temporarily while we fix @@ -58,10 +58,12 @@ "requests_cache", "Deprecated~=1.2", "Jinja2~=3.1.2", + "cachetools", ], python_requires=">=3.9", extras_require={ "dev": [ + "freezegun", "MyPy~=0.812", "pytest", "pytest-cov", diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/auth/test_oauth.py b/airbyte-cdk/python/unit_tests/sources/declarative/auth/test_oauth.py index fe3ea518611d..8ee9f3ad666a 100644 --- a/airbyte-cdk/python/unit_tests/sources/declarative/auth/test_oauth.py +++ b/airbyte-cdk/python/unit_tests/sources/declarative/auth/test_oauth.py @@ -4,7 +4,9 @@ import logging +import freezegun import pendulum +import pytest import requests from airbyte_cdk.sources.declarative.auth import DeclarativeOauth2Authenticator from requests import Response @@ -90,6 +92,44 @@ def test_refresh_access_token(self, mocker): assert ("access_token", 1000) == token + @pytest.mark.parametrize( + "expires_in_response, token_expiry_date_format", + [ + (86400, None), + ("2020-01-02T00:00:00Z", "YYYY-MM-DDTHH:mm:ss[Z]"), + ('2020-01-02T00:00:00.000000+00:00', "YYYY-MM-DDTHH:mm:ss.SSSSSSZ"), + ("2020-01-02", "YYYY-MM-DD"), + ], + ids=["time_in_seconds", "rfc3339", "iso8601", "simple_date"] + ) + @freezegun.freeze_time("2020-01-01") + def test_refresh_access_token_expire_format(self, mocker, expires_in_response, token_expiry_date_format): + next_day = "2020-01-02T00:00:00Z" + config.update({"token_expiry_date": pendulum.parse(next_day).subtract(days=2).to_rfc3339_string()}) + oauth = DeclarativeOauth2Authenticator( + token_refresh_endpoint="{{ config['refresh_endpoint'] }}", + client_id="{{ config['client_id'] }}", + client_secret="{{ config['client_secret'] }}", + refresh_token="{{ config['refresh_token'] }}", + config=config, + scopes=["scope1", "scope2"], + token_expiry_date="{{ config['token_expiry_date'] }}", + token_expiry_date_format=token_expiry_date_format, + refresh_request_body={ + "custom_field": "{{ config['custom_field'] }}", + "another_field": "{{ config['another_field'] }}", + "scopes": ["no_override"], + }, + options={}, + ) + + resp.status_code = 200 + mocker.patch.object(resp, "json", return_value={"access_token": "access_token", "expires_in": expires_in_response}) + mocker.patch.object(requests, "request", side_effect=mock_request, autospec=True) + token = oauth.get_access_token() + assert "access_token" == token + assert oauth.get_token_expiry_date() == pendulum.parse(next_day) + def mock_request(method, url, data): if url == "refresh_end": diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/auth/test_session_token_auth.py b/airbyte-cdk/python/unit_tests/sources/declarative/auth/test_session_token_auth.py new file mode 100644 index 000000000000..47334cbdfafd --- /dev/null +++ b/airbyte-cdk/python/unit_tests/sources/declarative/auth/test_session_token_auth.py @@ -0,0 +1,184 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import pytest +from airbyte_cdk.sources.declarative.auth.token import SessionTokenAuthenticator, get_new_session_token +from requests.exceptions import HTTPError + +options = {"hello": "world"} +instance_api_url = "https://airbyte.metabaseapp.com/api/" +username = "username" +password = "password" +session_token = "session_token" +header = "X-App-Session" +session_token_response_key = "id" +login_url = "session" +validate_session_url = "user/current" + +input_instance_api_url = "{{ config['instance_api_url'] }}" +input_username = "{{ config['username'] }}" +input_password = "{{ config['password'] }}" +input_session_token = "{{ config['session_token'] }}" + +config = { + "instance_api_url": instance_api_url, + "username": username, + "password": password, + "session_token": session_token, + "header": header, + "session_token_response_key": session_token_response_key, + "login_url": login_url, + "validate_session_url": validate_session_url +} + +config_session_token = { + "instance_api_url": instance_api_url, + "username": "", + "password": "", + "session_token": session_token, + "header": header, + "session_token_response_key": session_token_response_key, + "login_url": login_url, + "validate_session_url": validate_session_url +} + +config_username_password = { + "instance_api_url": instance_api_url, + "username": username, + "password": password, + "session_token": "", + "header": header, + "session_token_response_key": session_token_response_key, + "login_url": login_url, + "validate_session_url": validate_session_url +} + + +def test_auth_header(): + auth_header = SessionTokenAuthenticator( + config=config, + options=options, + api_url=input_instance_api_url, + username=input_username, + password=input_password, + session_token=input_session_token, + header=header, + session_token_response_key=session_token_response_key, + login_url=login_url, + validate_session_url=validate_session_url + ).auth_header + assert auth_header == "X-App-Session" + + +def test_get_token_valid_session(requests_mock): + requests_mock.get( + f"{config_session_token['instance_api_url']}user/current", + json={"common_name": "common_name", "last_login": "last_login"} + ) + + token = SessionTokenAuthenticator( + config=config_session_token, + options=options, + api_url=input_instance_api_url, + username=input_username, + password=input_password, + session_token=input_session_token, + header=header, + session_token_response_key=session_token_response_key, + login_url=login_url, + validate_session_url=validate_session_url + ).token + assert token == "session_token" + + +def test_get_token_invalid_session_unauthorized(): + with pytest.raises(ConnectionError): + _ = SessionTokenAuthenticator( + config=config_session_token, + options=options, + api_url=input_instance_api_url, + username=input_username, + password=input_password, + session_token=input_session_token, + header=header, + session_token_response_key=session_token_response_key, + login_url=login_url, + validate_session_url=validate_session_url + ).token + + +def test_get_token_invalid_username_password_unauthorized(): + with pytest.raises(HTTPError): + _ = SessionTokenAuthenticator( + config=config_username_password, + options=options, + api_url=input_instance_api_url, + username=input_username, + password=input_password, + session_token=input_session_token, + header=header, + session_token_response_key=session_token_response_key, + validate_session_url=validate_session_url, + login_url=login_url + ).token + + +def test_get_token_username_password(requests_mock): + requests_mock.post(f"{config['instance_api_url']}session", json={"id": "some session id"}) + + token = SessionTokenAuthenticator( + config=config_username_password, + options=options, + api_url=input_instance_api_url, + username=input_username, + password=input_password, + session_token=input_session_token, + header=header, + session_token_response_key=session_token_response_key, + login_url=login_url, + validate_session_url=validate_session_url + ).token + assert token == "some session id" + + +def test_check_is_valid_session_token(requests_mock): + requests_mock.get(f"{config['instance_api_url']}user/current", + json={"common_name": "common_name", "last_login": "last_login"}) + + assert SessionTokenAuthenticator( + config=config, + options=options, + api_url=input_instance_api_url, + username=input_username, + password=input_password, + session_token=input_session_token, + header=header, + session_token_response_key=session_token_response_key, + validate_session_url=validate_session_url, + login_url=login_url + ).is_valid_session_token() + + +def test_check_is_valid_session_token_unauthorized(): + assert not SessionTokenAuthenticator( + config=config, + options=options, + api_url=input_instance_api_url, + username=input_username, + password=input_password, + session_token=input_session_token, + header=header, + session_token_response_key=session_token_response_key, + login_url=login_url, + validate_session_url=validate_session_url + ).is_valid_session_token() + + +def test_get_new_session_token(requests_mock): + requests_mock.post(f"{config['instance_api_url']}session", headers={"Content-Type": "application/json"}, + json={"id": "some session id"}) + + session_token = get_new_session_token(f'{config["instance_api_url"]}session', config["username"], + config["password"], config["session_token_response_key"]) + assert session_token == "some session id" diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/parsers/test_manifest_component_transformer.py b/airbyte-cdk/python/unit_tests/sources/declarative/parsers/test_manifest_component_transformer.py new file mode 100644 index 000000000000..f77e30b68478 --- /dev/null +++ b/airbyte-cdk/python/unit_tests/sources/declarative/parsers/test_manifest_component_transformer.py @@ -0,0 +1,351 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import pytest +from airbyte_cdk.sources.declarative.parsers.manifest_component_transformer import ManifestComponentTransformer + + +@pytest.mark.parametrize( + "component, expected_component", + [ + pytest.param( + {"type": "DeclarativeSource", "streams": [{"type": "DeclarativeStream", "retriever": {}, "schema_loader": {}}]}, + { + "type": "DeclarativeSource", + "streams": [ + { + "type": "DeclarativeStream", + "retriever": {"type": "SimpleRetriever"}, + "schema_loader": {"type": "JsonFileSchemaLoader"}, + } + ], + }, + id="test_declarative_stream", + ), + pytest.param( + { + "type": "DeclarativeStream", + "retriever": {"type": "SimpleRetriever", "paginator": {}, "record_selector": {}, "requester": {}, "stream_slicer": {}}, + }, + { + "type": "DeclarativeStream", + "retriever": { + "type": "SimpleRetriever", + "paginator": {"type": "NoPagination"}, + "record_selector": {"type": "RecordSelector"}, + "requester": {"type": "HttpRequester"}, + "stream_slicer": {"type": "SingleSlice"}, + }, + }, + id="test_simple_retriever", + ), + pytest.param( + {"type": "DeclarativeStream", "requester": {"type": "HttpRequester", "error_handler": {}, "request_options_provider": {}}}, + { + "type": "DeclarativeStream", + "requester": { + "type": "HttpRequester", + "error_handler": {"type": "DefaultErrorHandler"}, + "request_options_provider": {"type": "InterpolatedRequestOptionsProvider"}, + }, + }, + id="test_http_requester", + ), + pytest.param( + {"type": "SimpleRetriever", "paginator": {"type": "DefaultPaginator", "page_size_option": {}, "page_token_option": {}}}, + { + "type": "SimpleRetriever", + "paginator": { + "type": "DefaultPaginator", + "page_size_option": {"type": "RequestOption"}, + "page_token_option": {"type": "RequestOption"}, + }, + }, + id="test_default_paginator", + ), + pytest.param( + {"type": "SimpleRetriever", "stream_slicer": {"type": "SubstreamSlicer", "parent_stream_configs": [{}, {}, {}]}}, + { + "type": "SimpleRetriever", + "stream_slicer": { + "type": "SubstreamSlicer", + "parent_stream_configs": [ + {"type": "ParentStreamConfig"}, + {"type": "ParentStreamConfig"}, + {"type": "ParentStreamConfig"}, + ], + }, + }, + id="test_substream_slicer", + ), + ], +) +def test_find_default_types(component, expected_component): + transformer = ManifestComponentTransformer() + actual_component = transformer.propagate_types_and_options("", component, {}) + + assert actual_component == expected_component + + +@pytest.mark.parametrize( + "component, expected_component", + [ + pytest.param( + { + "type": "SimpleRetriever", + "requester": {"type": "HttpRequester", "authenticator": {"class_name": "source_greenhouse.components.NewAuthenticator"}}, + }, + { + "type": "SimpleRetriever", + "requester": { + "type": "HttpRequester", + "authenticator": {"type": "CustomAuthenticator", "class_name": "source_greenhouse.components.NewAuthenticator"}, + }, + }, + id="test_custom_authenticator", + ), + pytest.param( + { + "type": "SimpleRetriever", + "record_selector": { + "type": "RecordSelector", + "extractor": {"class_name": "source_greenhouse.components.NewRecordExtractor"}, + }, + }, + { + "type": "SimpleRetriever", + "record_selector": { + "type": "RecordSelector", + "extractor": {"type": "CustomRecordExtractor", "class_name": "source_greenhouse.components.NewRecordExtractor"}, + }, + }, + id="test_custom_extractor", + ), + ], +) +def test_transform_custom_components(component, expected_component): + transformer = ManifestComponentTransformer() + actual_component = transformer.propagate_types_and_options("", component, {}) + + assert actual_component == expected_component + + +def test_propagate_options_to_all_components(): + component = { + "type": "DeclarativeSource", + "streams": [ + { + "type": "DeclarativeStream", + "$options": {"name": "roasters", "primary_key": "id"}, + "retriever": { + "type": "SimpleRetriever", + "record_selector": {"type": "RecordSelector", "extractor": {"type": "DpathExtractor", "field_pointer": []}}, + "requester": { + "type": "HttpRequester", + "name": '{{ options["name"] }}', + "url_base": "https://coffee.example.io/v1/", + "http_method": "GET", + }, + }, + } + ], + } + + expected_component = { + "type": "DeclarativeSource", + "streams": [ + { + "type": "DeclarativeStream", + "retriever": { + "type": "SimpleRetriever", + "name": "roasters", + "primary_key": "id", + "record_selector": { + "type": "RecordSelector", + "extractor": { + "type": "DpathExtractor", + "field_pointer": [], + "name": "roasters", + "primary_key": "id", + "$options": {"name": "roasters", "primary_key": "id"}, + }, + "name": "roasters", + "primary_key": "id", + "$options": {"name": "roasters", "primary_key": "id"}, + }, + "requester": { + "type": "HttpRequester", + "name": '{{ options["name"] }}', + "url_base": "https://coffee.example.io/v1/", + "http_method": "GET", + "primary_key": "id", + "$options": {"name": "roasters", "primary_key": "id"}, + }, + "$options": {"name": "roasters", "primary_key": "id"}, + }, + "name": "roasters", + "primary_key": "id", + "$options": {"name": "roasters", "primary_key": "id"}, + } + ], + } + + transformer = ManifestComponentTransformer() + actual_component = transformer.propagate_types_and_options("", component, {}) + + assert actual_component == expected_component + + +def test_component_options_take_precedence_over_parent_options(): + component = { + "type": "DeclarativeStream", + "retriever": { + "type": "SimpleRetriever", + "requester": { + "type": "HttpRequester", + "name": "high_priority", + "url_base": "https://coffee.example.io/v1/", + "http_method": "GET", + "primary_key": "id", + "$options": { + "name": "high_priority", + }, + }, + "$options": { + "name": "low_priority", + }, + }, + } + + expected_component = { + "type": "DeclarativeStream", + "retriever": { + "type": "SimpleRetriever", + "name": "low_priority", + "requester": { + "type": "HttpRequester", + "name": "high_priority", + "url_base": "https://coffee.example.io/v1/", + "http_method": "GET", + "primary_key": "id", + "$options": { + "name": "high_priority", + }, + }, + "$options": { + "name": "low_priority", + }, + }, + } + + transformer = ManifestComponentTransformer() + actual_component = transformer.propagate_types_and_options("", component, {}) + + assert actual_component == expected_component + + +def test_do_not_propagate_options_that_have_the_same_field_name(): + component = { + "type": "DeclarativeStream", + "streams": [ + { + "type": "DeclarativeStream", + "$options": { + "name": "roasters", + "primary_key": "id", + "schema_loader": {"type": "JsonFileSchemaLoader", "file_path": './source_coffee/schemas/{{ options["name"] }}.json'}, + }, + } + ], + } + + expected_component = { + "type": "DeclarativeStream", + "streams": [ + { + "type": "DeclarativeStream", + "name": "roasters", + "primary_key": "id", + "schema_loader": { + "type": "JsonFileSchemaLoader", + "file_path": './source_coffee/schemas/{{ options["name"] }}.json', + "name": "roasters", + "primary_key": "id", + "$options": { + "name": "roasters", + "primary_key": "id", + }, + }, + "$options": { + "name": "roasters", + "primary_key": "id", + "schema_loader": {"type": "JsonFileSchemaLoader", "file_path": './source_coffee/schemas/{{ options["name"] }}.json'}, + }, + } + ], + } + + transformer = ManifestComponentTransformer() + actual_component = transformer.propagate_types_and_options("", component, {}) + + assert actual_component == expected_component + + +def test_ignore_empty_options(): + component = { + "type": "DeclarativeStream", + "retriever": { + "type": "SimpleRetriever", + "record_selector": {"type": "RecordSelector", "extractor": {"type": "DpathExtractor", "field_pointer": []}}, + }, + } + + transformer = ManifestComponentTransformer() + actual_component = transformer.propagate_types_and_options("", component, {}) + + assert actual_component == component + + +def test_only_propagate_options_to_components(): + component = { + "type": "ParentComponent", + "component_with_object_properties": { + "type": "TestComponent", + "subcomponent": { + "type": "TestSubComponent", + "some_field": "high_priority", + "$options": { + "some_option": "already", + }, + }, + "dictionary_field": {"details": "should_not_contain_options", "other": "no_options_as_fields"}, + "$options": { + "included": "not!", + }, + }, + } + + expected_component = { + "type": "ParentComponent", + "component_with_object_properties": { + "type": "TestComponent", + "subcomponent": { + "type": "TestSubComponent", + "some_field": "high_priority", + "some_option": "already", + "included": "not!", + "$options": {"some_option": "already", "included": "not!"}, + }, + "dictionary_field": {"details": "should_not_contain_options", "other": "no_options_as_fields"}, + "included": "not!", + "$options": { + "included": "not!", + }, + }, + } + + transformer = ManifestComponentTransformer() + actual_component = transformer.propagate_types_and_options("", component, {}) + + assert actual_component == expected_component diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/schema/source_test/schemas/sample_stream.json b/airbyte-cdk/python/unit_tests/sources/declarative/schema/source_test/schemas/sample_stream.json new file mode 100644 index 000000000000..6ef7fbed5577 --- /dev/null +++ b/airbyte-cdk/python/unit_tests/sources/declarative/schema/source_test/schemas/sample_stream.json @@ -0,0 +1,12 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": ["null", "object"], + "properties": { + "type": { + "$ref": "sample_shared_schema.json" + }, + "id": { + "type": ["null", "string"] + } + } +} diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/schema/source_test/schemas/shared/sample_shared_schema.json b/airbyte-cdk/python/unit_tests/sources/declarative/schema/source_test/schemas/shared/sample_shared_schema.json new file mode 100644 index 000000000000..95ea8a1655f2 --- /dev/null +++ b/airbyte-cdk/python/unit_tests/sources/declarative/schema/source_test/schemas/shared/sample_shared_schema.json @@ -0,0 +1,11 @@ +{ + "type": ["null", "object"], + "properties": { + "id_internal": { + "type": ["null", "integer"] + }, + "name": { + "type": ["null", "string"] + } + } +} diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/schema/test_inline_schema_loader.py b/airbyte-cdk/python/unit_tests/sources/declarative/schema/test_inline_schema_loader.py new file mode 100644 index 000000000000..8379a1b3c8c8 --- /dev/null +++ b/airbyte-cdk/python/unit_tests/sources/declarative/schema/test_inline_schema_loader.py @@ -0,0 +1,19 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import pytest +from airbyte_cdk.sources.declarative.schema import InlineSchemaLoader + + +@pytest.mark.parametrize( + "test_name, input_schema, expected_schema", + [ + ("schema", {"k": "string"}, {"k": "string"}), + ("empty_schema", {}, {}), + ], +) +def test_static_schema_loads(test_name, input_schema, expected_schema): + schema_loader = InlineSchemaLoader(input_schema, {}) + + assert schema_loader.get_json_schema() == expected_schema diff --git a/airbyte-commons-worker/src/main/java/io/airbyte/workers/general/DefaultReplicationWorker.java b/airbyte-commons-worker/src/main/java/io/airbyte/workers/general/DefaultReplicationWorker.java index 6e948dd92e5f..1d8034479239 100644 --- a/airbyte-commons-worker/src/main/java/io/airbyte/workers/general/DefaultReplicationWorker.java +++ b/airbyte-commons-worker/src/main/java/io/airbyte/workers/general/DefaultReplicationWorker.java @@ -10,7 +10,9 @@ import static io.airbyte.metrics.lib.ApmTraceConstants.WORKER_OPERATION_NAME; import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.node.ObjectNode; import datadog.trace.api.Trace; import io.airbyte.commons.io.LineGobbler; import io.airbyte.config.FailureReason; @@ -28,6 +30,7 @@ import io.airbyte.protocol.models.AirbyteMessage.Type; import io.airbyte.protocol.models.AirbyteRecordMessage; import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; import io.airbyte.workers.RecordSchemaValidator; import io.airbyte.workers.WorkerMetricReporter; import io.airbyte.workers.WorkerUtils; @@ -41,6 +44,7 @@ import io.airbyte.workers.internal.book_keeping.MessageTracker; import java.nio.file.Path; import java.util.ArrayList; +import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; @@ -94,6 +98,7 @@ public class DefaultReplicationWorker implements ReplicationWorker { private final AtomicBoolean hasFailed; private final RecordSchemaValidator recordSchemaValidator; private final WorkerMetricReporter metricReporter; + private final boolean fieldSelectionEnabled; public DefaultReplicationWorker(final String jobId, final int attempt, @@ -102,7 +107,8 @@ public DefaultReplicationWorker(final String jobId, final AirbyteDestination destination, final MessageTracker messageTracker, final RecordSchemaValidator recordSchemaValidator, - final WorkerMetricReporter metricReporter) { + final WorkerMetricReporter metricReporter, + final boolean fieldSelectionEnabled) { this.jobId = jobId; this.attempt = attempt; this.source = source; @@ -112,6 +118,7 @@ public DefaultReplicationWorker(final String jobId, this.executors = Executors.newFixedThreadPool(2); this.recordSchemaValidator = recordSchemaValidator; this.metricReporter = metricReporter; + this.fieldSelectionEnabled = fieldSelectionEnabled; this.cancelled = new AtomicBoolean(false); this.hasFailed = new AtomicBoolean(false); @@ -198,8 +205,18 @@ private void replicate(final Path jobRoot, }); final CompletableFuture readSrcAndWriteDstThread = CompletableFuture.runAsync( - readFromSrcAndWriteToDstRunnable(source, destination, cancelled, mapper, messageTracker, mdc, recordSchemaValidator, metricReporter, - timeTracker), + readFromSrcAndWriteToDstRunnable( + source, + destination, + sourceConfig.getCatalog(), + cancelled, + mapper, + messageTracker, + mdc, + recordSchemaValidator, + metricReporter, + timeTracker, + fieldSelectionEnabled), executors) .whenComplete((msg, ex) -> { if (ex != null) { @@ -279,18 +296,24 @@ private static Runnable readFromDstRunnable(final AirbyteDestination destination @SuppressWarnings("PMD.AvoidInstanceofChecksInCatchClause") private static Runnable readFromSrcAndWriteToDstRunnable(final AirbyteSource source, final AirbyteDestination destination, + final ConfiguredAirbyteCatalog catalog, final AtomicBoolean cancelled, final AirbyteMapper mapper, final MessageTracker messageTracker, final Map mdc, final RecordSchemaValidator recordSchemaValidator, final WorkerMetricReporter metricReporter, - final ThreadedTimeTracker timeHolder) { + final ThreadedTimeTracker timeHolder, + final boolean fieldSelectionEnabled) { return () -> { MDC.setContextMap(mdc); LOGGER.info("Replication thread started."); Long recordsRead = 0L; final Map, Integer>> validationErrors = new HashMap<>(); + final Map> streamToSelectedFields = new HashMap<>(); + if (fieldSelectionEnabled) { + populatedStreamToSelectedFields(catalog, streamToSelectedFields); + } try { while (!cancelled.get() && !source.isFinished()) { final Optional messageOptional; @@ -302,6 +325,9 @@ private static Runnable readFromSrcAndWriteToDstRunnable(final AirbyteSource sou if (messageOptional.isPresent()) { final AirbyteMessage airbyteMessage = messageOptional.get(); + if (fieldSelectionEnabled) { + filterSelectedFields(streamToSelectedFields, airbyteMessage); + } validateSchema(recordSchemaValidator, validationErrors, airbyteMessage); final AirbyteMessage message = mapper.mapMessage(airbyteMessage); @@ -549,6 +575,47 @@ private static void validateSchema(final RecordSchemaValidator recordSchemaValid } } + /** + * Generates a map from stream -> the explicit list of fields included for that stream, according to + * the configured catalog. Since the configured catalog only includes the selected fields, this lets + * us filter records to only the fields explicitly requested. + * + * @param catalog + * @param streamToSelectedFields + */ + private static void populatedStreamToSelectedFields(final ConfiguredAirbyteCatalog catalog, + final Map> streamToSelectedFields) { + for (final var s : catalog.getStreams()) { + final List selectedFields = new ArrayList<>(); + final JsonNode propertiesNode = s.getStream().getJsonSchema().findPath("properties"); + if (propertiesNode.isObject()) { + propertiesNode.fieldNames().forEachRemaining((fieldName) -> selectedFields.add(fieldName)); + } else { + throw new RuntimeException("No properties node in stream schema"); + } + streamToSelectedFields.put(AirbyteStreamNameNamespacePair.fromConfiguredAirbyteSteam(s), selectedFields); + } + } + + private static void filterSelectedFields(final Map> streamToSelectedFields, + final AirbyteMessage airbyteMessage) { + final AirbyteRecordMessage record = airbyteMessage.getRecord(); + + if (record == null) { + // This isn't a record message, so we don't need to do any filtering. + return; + } + + final AirbyteStreamNameNamespacePair messageStream = AirbyteStreamNameNamespacePair.fromRecordMessage(record); + final List selectedFields = streamToSelectedFields.getOrDefault(messageStream, Collections.emptyList()); + final JsonNode data = record.getData(); + if (data.isObject()) { + ((ObjectNode) data).retain(selectedFields); + } else { + throw new RuntimeException(String.format("Unexpected data in record: %s", data.toString())); + } + } + @Trace(operationName = WORKER_OPERATION_NAME) @Override public void cancel() { 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-worker/src/main/java/io/airbyte/workers/normalization/DefaultNormalizationRunner.java b/airbyte-commons-worker/src/main/java/io/airbyte/workers/normalization/DefaultNormalizationRunner.java index 01c392b759b1..e96f9c81d403 100644 --- a/airbyte-commons-worker/src/main/java/io/airbyte/workers/normalization/DefaultNormalizationRunner.java +++ b/airbyte-commons-worker/src/main/java/io/airbyte/workers/normalization/DefaultNormalizationRunner.java @@ -5,7 +5,6 @@ package io.airbyte.workers.normalization; import com.fasterxml.jackson.databind.JsonNode; -import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Strings; import com.google.common.collect.ImmutableMap; import io.airbyte.commons.io.IOs; @@ -46,7 +45,7 @@ public class DefaultNormalizationRunner implements NormalizationRunner { .setLogPrefix("normalization") .setPrefixColor(Color.GREEN_BACKGROUND); - private final DestinationType destinationType; + private final String normalizationIntegrationType; private final ProcessFactory processFactory; private final String normalizationImageName; private final NormalizationAirbyteStreamFactory streamFactory = new NormalizationAirbyteStreamFactory(CONTAINER_LOG_MDC_BUILDER); @@ -55,31 +54,12 @@ public class DefaultNormalizationRunner implements NormalizationRunner { private Process process = null; - public enum DestinationType { - BIGQUERY, - MSSQL, - MYSQL, - ORACLE, - POSTGRES, - REDSHIFT, - SNOWFLAKE, - CLICKHOUSE, - TIDB - } - - public DefaultNormalizationRunner(final DestinationType destinationType, - final ProcessFactory processFactory, - final String normalizationImageName) { - this.destinationType = destinationType; - this.processFactory = processFactory; - this.normalizationImageName = normalizationImageName; - } - public DefaultNormalizationRunner(final ProcessFactory processFactory, - final String normalizationImage) { + final String normalizationImage, + final String normalizationIntegrationType) { this.processFactory = processFactory; this.normalizationImageName = normalizationImage; - this.destinationType = null; + this.normalizationIntegrationType = normalizationIntegrationType; } @Override @@ -99,12 +79,12 @@ public boolean configureDbt(final String jobId, final String gitRepoBranch = dbtConfig.getGitRepoBranch(); if (Strings.isNullOrEmpty(gitRepoBranch)) { return runProcess(jobId, attempt, jobRoot, files, resourceRequirements, "configure-dbt", - "--integration-type", destinationType.toString().toLowerCase(), + "--integration-type", normalizationIntegrationType.toLowerCase(), "--config", WorkerConstants.DESTINATION_CONFIG_JSON_FILENAME, "--git-repo", gitRepoUrl); } else { return runProcess(jobId, attempt, jobRoot, files, resourceRequirements, "configure-dbt", - "--integration-type", destinationType.toString().toLowerCase(), + "--integration-type", normalizationIntegrationType.toLowerCase(), "--config", WorkerConstants.DESTINATION_CONFIG_JSON_FILENAME, "--git-repo", gitRepoUrl, "--git-branch", gitRepoBranch); @@ -124,7 +104,7 @@ public boolean normalize(final String jobId, WorkerConstants.DESTINATION_CATALOG_JSON_FILENAME, Jsons.serialize(catalog)); return runProcess(jobId, attempt, jobRoot, files, resourceRequirements, "run", - "--integration-type", destinationType.toString().toLowerCase(), + "--integration-type", normalizationIntegrationType.toLowerCase(), "--config", WorkerConstants.DESTINATION_CONFIG_JSON_FILENAME, "--catalog", WorkerConstants.DESTINATION_CATALOG_JSON_FILENAME); } @@ -233,9 +213,4 @@ private String buildInternalErrorMessageFromDbtStackTrace() { return errorMap.get(SentryExceptionHelper.ERROR_MAP_KEYS.ERROR_MAP_MESSAGE_KEY); } - @VisibleForTesting - DestinationType getDestinationType() { - return destinationType; - } - } diff --git a/airbyte-commons-worker/src/main/java/io/airbyte/workers/normalization/NormalizationRunnerFactory.java b/airbyte-commons-worker/src/main/java/io/airbyte/workers/normalization/NormalizationRunnerFactory.java deleted file mode 100644 index c11b2662bb59..000000000000 --- a/airbyte-commons-worker/src/main/java/io/airbyte/workers/normalization/NormalizationRunnerFactory.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Copyright (c) 2022 Airbyte, Inc., all rights reserved. - */ - -package io.airbyte.workers.normalization; - -import com.google.common.collect.ImmutableMap; -import io.airbyte.workers.normalization.DefaultNormalizationRunner.DestinationType; -import io.airbyte.workers.process.ProcessFactory; -import java.util.Map; -import java.util.Objects; -import lombok.extern.slf4j.Slf4j; -import org.apache.commons.lang3.tuple.ImmutablePair; - -@Slf4j -public class NormalizationRunnerFactory { - - public static final String BASE_NORMALIZATION_IMAGE_NAME = "airbyte/normalization"; - public static final String NORMALIZATION_VERSION = "0.2.25"; - - static final Map> NORMALIZATION_MAPPING = - ImmutableMap.>builder() - // map destination connectors (alphabetically) to their expected normalization settings - .put("airbyte/destination-bigquery", ImmutablePair.of(BASE_NORMALIZATION_IMAGE_NAME, DefaultNormalizationRunner.DestinationType.BIGQUERY)) - .put("airbyte/destination-bigquery-denormalized", - ImmutablePair.of(BASE_NORMALIZATION_IMAGE_NAME, DefaultNormalizationRunner.DestinationType.BIGQUERY)) - .put("airbyte/destination-clickhouse", ImmutablePair.of("airbyte/normalization-clickhouse", DestinationType.CLICKHOUSE)) - .put("airbyte/destination-clickhouse-strict-encrypt", ImmutablePair.of("airbyte/normalization-clickhouse", DestinationType.CLICKHOUSE)) - .put("airbyte/destination-mssql", ImmutablePair.of("airbyte/normalization-mssql", DestinationType.MSSQL)) - .put("airbyte/destination-mssql-strict-encrypt", ImmutablePair.of("airbyte/normalization-mssql", DestinationType.MSSQL)) - .put("airbyte/destination-mysql", ImmutablePair.of("airbyte/normalization-mysql", DestinationType.MYSQL)) - .put("airbyte/destination-mysql-strict-encrypt", ImmutablePair.of("airbyte/normalization-mysql", DestinationType.MYSQL)) - .put("airbyte/destination-oracle", ImmutablePair.of("airbyte/normalization-oracle", DestinationType.ORACLE)) - .put("airbyte/destination-oracle-strict-encrypt", ImmutablePair.of("airbyte/normalization-oracle", DestinationType.ORACLE)) - .put("airbyte/destination-postgres", ImmutablePair.of(BASE_NORMALIZATION_IMAGE_NAME, DestinationType.POSTGRES)) - .put("airbyte/destination-postgres-strict-encrypt", ImmutablePair.of(BASE_NORMALIZATION_IMAGE_NAME, DestinationType.POSTGRES)) - .put("airbyte/destination-redshift", ImmutablePair.of("airbyte/normalization-redshift", DestinationType.REDSHIFT)) - .put("airbyte/destination-snowflake", ImmutablePair.of("airbyte/normalization-snowflake", DestinationType.SNOWFLAKE)) - .put("airbyte/destination-tidb", ImmutablePair.of("airbyte/normalization-tidb", DestinationType.TIDB)) - .build(); - - public static NormalizationRunner create(final String connectorImageName, - final ProcessFactory processFactory, - final String normalizationVersion, - final String normalizationImage) { - final var valuePair = getNormalizationInfoForConnector(connectorImageName); - final String factoryNormalizationImage = String.format("%s:%s", valuePair.getLeft(), normalizationVersion); - if (Objects.nonNull(normalizationImage) - && !normalizationImage.equalsIgnoreCase(factoryNormalizationImage)) { - log.error( - "The normalization image name or tag in the definition file is different from the normalization image or tag in the NormalizationRunnerFactory!"); - log.error( - "the definition file value - {}, the NormalizationRunnerFactory value - {}", normalizationImage, factoryNormalizationImage); - } - return new DefaultNormalizationRunner( - valuePair.getRight(), - processFactory, - factoryNormalizationImage); - } - - public static ImmutablePair getNormalizationInfoForConnector(final String connectorImageName) { - final String imageNameWithoutTag = connectorImageName.contains(":") ? connectorImageName.split(":")[0] : connectorImageName; - if (NORMALIZATION_MAPPING.containsKey(imageNameWithoutTag)) { - return NORMALIZATION_MAPPING.get(imageNameWithoutTag); - } else { - throw new IllegalStateException( - String.format("Requested normalization for %s, but it is not included in the normalization mappings.", connectorImageName)); - } - } - -} diff --git a/airbyte-commons-worker/src/main/java/io/airbyte/workers/process/AsyncOrchestratorPodProcess.java b/airbyte-commons-worker/src/main/java/io/airbyte/workers/process/AsyncOrchestratorPodProcess.java index 72bffe59ba38..269a5735fa48 100644 --- a/airbyte-commons-worker/src/main/java/io/airbyte/workers/process/AsyncOrchestratorPodProcess.java +++ b/airbyte-commons-worker/src/main/java/io/airbyte/workers/process/AsyncOrchestratorPodProcess.java @@ -22,7 +22,12 @@ import io.fabric8.kubernetes.api.model.VolumeMountBuilder; import io.fabric8.kubernetes.client.KubernetesClient; import io.micronaut.core.util.StringUtils; +import java.io.BufferedOutputStream; +import java.io.ByteArrayOutputStream; import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.nio.charset.Charset; import java.nio.file.Path; import java.util.AbstractMap; import java.util.ArrayList; @@ -186,7 +191,6 @@ public boolean hasExited() { } } - @Override public boolean waitFor(final long timeout, final TimeUnit unit) throws InterruptedException { // implementation copied from Process.java since this isn't a real Process long remainingNanos = unit.toNanos(timeout); @@ -229,6 +233,56 @@ public KubePodInfo getInfo() { return kubePodInfo; } + @Override + public Process toProcess() { + return new Process() { + + @Override + public OutputStream getOutputStream() { + try { + final String output = AsyncOrchestratorPodProcess.this.getOutput().orElse(""); + final OutputStream os = new BufferedOutputStream(new ByteArrayOutputStream()); + os.write(output.getBytes(Charset.defaultCharset())); + return os; + } catch (final Exception e) { + log.warn("Unable to write output to stream.", e); + return OutputStream.nullOutputStream(); + } + } + + @Override + public InputStream getInputStream() { + return InputStream.nullInputStream(); + } + + @Override + public InputStream getErrorStream() { + return InputStream.nullInputStream(); + } + + @Override + public int waitFor() throws InterruptedException { + return AsyncOrchestratorPodProcess.this.waitFor(); + } + + @Override + public int exitValue() { + return AsyncOrchestratorPodProcess.this.exitValue(); + } + + @Override + public void destroy() { + AsyncOrchestratorPodProcess.this.destroy(); + } + + @Override + public boolean waitFor(final long timeout, final TimeUnit unit) throws InterruptedException { + return AsyncOrchestratorPodProcess.this.waitFor(timeout, unit); + } + + }; + } + private Optional getDocument(final String key) { return documentStoreClient.read(getInfo().namespace() + "/" + getInfo().name() + "/" + key); } diff --git a/airbyte-commons-worker/src/main/java/io/airbyte/workers/process/KubePod.java b/airbyte-commons-worker/src/main/java/io/airbyte/workers/process/KubePod.java index c2fbcc2e6367..1d795b2f97b3 100644 --- a/airbyte-commons-worker/src/main/java/io/airbyte/workers/process/KubePod.java +++ b/airbyte-commons-worker/src/main/java/io/airbyte/workers/process/KubePod.java @@ -4,18 +4,16 @@ package io.airbyte.workers.process; -import java.util.concurrent.TimeUnit; - public interface KubePod { int exitValue(); void destroy(); - boolean waitFor(final long timeout, final TimeUnit unit) throws InterruptedException; - int waitFor() throws InterruptedException; KubePodInfo getInfo(); + Process toProcess(); + } diff --git a/airbyte-commons-worker/src/main/java/io/airbyte/workers/process/KubePodProcess.java b/airbyte-commons-worker/src/main/java/io/airbyte/workers/process/KubePodProcess.java index fb0a7a7a8fb3..769f8eaf159b 100644 --- a/airbyte-commons-worker/src/main/java/io/airbyte/workers/process/KubePodProcess.java +++ b/airbyte-commons-worker/src/main/java/io/airbyte/workers/process/KubePodProcess.java @@ -101,7 +101,7 @@ // it is required for the connectors @SuppressWarnings("PMD.AvoidPrintStackTrace") // TODO(Davin): Better test for this. See https://github.com/airbytehq/airbyte/issues/3700. -public class KubePodProcess extends Process implements KubePod { +public class KubePodProcess implements KubePod { private static final Configs configs = new EnvConfigs(); @@ -628,21 +628,6 @@ private void setupStdOutAndStdErrListeners() { }); } - @Override - public OutputStream getOutputStream() { - return this.stdin; - } - - @Override - public InputStream getInputStream() { - return this.stdout; - } - - @Override - public InputStream getErrorStream() { - return this.stderr; - } - /** * Waits for the Kube Pod backing this process and returns the exit value after closing resources. */ @@ -657,15 +642,6 @@ public int waitFor() throws InterruptedException { return exitValue(); } - /** - * Waits for the Kube Pod backing this process and returns the exit value until a timeout. Closes - * resources if and only if the timeout is not reached. - */ - @Override - public boolean waitFor(final long timeout, final TimeUnit unit) throws InterruptedException { - return super.waitFor(timeout, unit); - } - /** * Immediately terminates the Kube Pod backing this process and cleans up IO resources. */ @@ -684,11 +660,6 @@ public void destroy() { } } - @Override - public Info info() { - return new KubePodProcessInfo(podDefinition.getMetadata().getName()); - } - private Container getMainContainerFromPodDefinition() { final Optional containerOptional = podDefinition.getSpec() .getContainers() @@ -783,6 +754,48 @@ public int exitValue() { return returnCode; } + @Override + public Process toProcess() { + return new Process() { + + @Override + public OutputStream getOutputStream() { + return KubePodProcess.this.stdin; + } + + @Override + public InputStream getInputStream() { + return KubePodProcess.this.stdout; + } + + @Override + public InputStream getErrorStream() { + return KubePodProcess.this.stderr; + } + + @Override + public int waitFor() throws InterruptedException { + return KubePodProcess.this.waitFor(); + } + + @Override + public int exitValue() { + return KubePodProcess.this.exitValue(); + } + + @Override + public void destroy() { + KubePodProcess.this.destroy(); + } + + @Override + public Info info() { + return new KubePodProcessInfo(podDefinition.getMetadata().getName()); + } + + }; + } + public static ResourceRequirementsBuilder getResourceRequirementsBuilder(final ResourceRequirements resourceRequirements) { if (resourceRequirements != null) { final Map requestMap = new HashMap<>(); diff --git a/airbyte-commons-worker/src/main/java/io/airbyte/workers/process/KubeProcessFactory.java b/airbyte-commons-worker/src/main/java/io/airbyte/workers/process/KubeProcessFactory.java index c0ee04a461e5..4f3d83f9890d 100644 --- a/airbyte-commons-worker/src/main/java/io/airbyte/workers/process/KubeProcessFactory.java +++ b/airbyte-commons-worker/src/main/java/io/airbyte/workers/process/KubeProcessFactory.java @@ -140,7 +140,7 @@ public Process create( workerConfigs.getJobCurlImage(), MoreMaps.merge(jobMetadata, workerConfigs.getEnvMap()), internalToExternalPorts, - args); + args).toProcess(); } catch (final Exception e) { throw new WorkerException(e.getMessage(), e); } diff --git a/airbyte-commons-worker/src/test/java/io/airbyte/workers/general/DefaultReplicationWorkerTest.java b/airbyte-commons-worker/src/test/java/io/airbyte/workers/general/DefaultReplicationWorkerTest.java index 36cab0784cd1..d3b874f9e4ac 100644 --- a/airbyte-commons-worker/src/test/java/io/airbyte/workers/general/DefaultReplicationWorkerTest.java +++ b/airbyte-commons-worker/src/test/java/io/airbyte/workers/general/DefaultReplicationWorkerTest.java @@ -19,6 +19,7 @@ import static org.mockito.Mockito.when; import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.node.ObjectNode; import com.google.common.collect.ImmutableMap; import io.airbyte.commons.io.IOs; import io.airbyte.commons.json.Jsons; @@ -61,6 +62,7 @@ import java.time.Duration; import java.util.Collections; import java.util.List; +import java.util.Map; import java.util.Optional; import java.util.Set; import java.util.concurrent.atomic.AtomicReference; @@ -153,7 +155,7 @@ void test() throws Exception { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); worker.run(syncInput, jobRoot); @@ -181,7 +183,7 @@ void testInvalidSchema() throws Exception { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); worker.run(syncInput, jobRoot); @@ -211,7 +213,7 @@ void testSourceNonZeroExitValue() throws Exception { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); final ReplicationOutput output = worker.run(syncInput, jobRoot); assertEquals(ReplicationStatus.FAILED, output.getReplicationAttemptSummary().getStatus()); assertTrue(output.getFailures().stream().anyMatch(f -> f.getFailureOrigin().equals(FailureOrigin.SOURCE))); @@ -231,7 +233,7 @@ void testReplicationRunnableSourceFailure() throws Exception { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); final ReplicationOutput output = worker.run(syncInput, jobRoot); assertEquals(ReplicationStatus.FAILED, output.getReplicationAttemptSummary().getStatus()); @@ -253,7 +255,7 @@ void testReplicationRunnableDestinationFailure() throws Exception { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); final ReplicationOutput output = worker.run(syncInput, jobRoot); assertEquals(ReplicationStatus.FAILED, output.getReplicationAttemptSummary().getStatus()); @@ -274,7 +276,7 @@ void testReplicationRunnableDestinationFailureViaTraceMessage() throws Exception destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); final ReplicationOutput output = worker.run(syncInput, jobRoot); assertTrue(output.getFailures().stream() @@ -296,7 +298,7 @@ void testReplicationRunnableWorkerFailure() throws Exception { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); final ReplicationOutput output = worker.run(syncInput, jobRoot); assertEquals(ReplicationStatus.FAILED, output.getReplicationAttemptSummary().getStatus()); @@ -322,7 +324,7 @@ void testOnlyStateAndRecordMessagesDeliveredToDestination() throws Exception { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); worker.run(syncInput, jobRoot); @@ -334,6 +336,68 @@ void testOnlyStateAndRecordMessagesDeliveredToDestination() throws Exception { verify(destination, never()).accept(TRACE_MESSAGE); } + @Test + void testOnlySelectedFieldsDeliveredToDestinationWithFieldSelectionEnabled() throws Exception { + // Generate a record with an extra field. + final AirbyteMessage recordWithExtraFields = Jsons.clone(RECORD_MESSAGE1); + ((ObjectNode) recordWithExtraFields.getRecord().getData()).put("AnUnexpectedField", "SomeValue"); + when(mapper.mapMessage(recordWithExtraFields)).thenReturn(recordWithExtraFields); + when(source.attemptRead()).thenReturn(Optional.of(recordWithExtraFields)); + when(source.isFinished()).thenReturn(false, true); + // Use a real schema validator to make sure validation doesn't affect this. + final String streamName = sourceConfig.getCatalog().getStreams().get(0).getStream().getName(); + final String streamNamespace = sourceConfig.getCatalog().getStreams().get(0).getStream().getNamespace(); + recordSchemaValidator = new RecordSchemaValidator(Map.of(new AirbyteStreamNameNamespacePair(streamName, streamNamespace), + sourceConfig.getCatalog().getStreams().get(0).getStream().getJsonSchema())); + final ReplicationWorker worker = new DefaultReplicationWorker( + JOB_ID, + JOB_ATTEMPT, + source, + mapper, + destination, + messageTracker, + recordSchemaValidator, + workerMetricReporter, + true); + + worker.run(syncInput, jobRoot); + + // Despite reading recordWithExtraFields from the source, we write the original RECORD_MESSAGE1 to + // the destination because the new field has been filtered out. + verify(destination).accept(RECORD_MESSAGE1); + } + + @Test + void testAllFieldsDeliveredWithFieldSelectionDisabled() throws Exception { + // Generate a record with an extra field. + final AirbyteMessage recordWithExtraFields = Jsons.clone(RECORD_MESSAGE1); + ((ObjectNode) recordWithExtraFields.getRecord().getData()).put("AnUnexpectedField", "SomeValue"); + when(mapper.mapMessage(recordWithExtraFields)).thenReturn(recordWithExtraFields); + when(source.attemptRead()).thenReturn(Optional.of(recordWithExtraFields)); + when(source.isFinished()).thenReturn(false, true); + // Use a real schema validator to make sure validation doesn't affect this. + final String streamName = sourceConfig.getCatalog().getStreams().get(0).getStream().getName(); + final String streamNamespace = sourceConfig.getCatalog().getStreams().get(0).getStream().getNamespace(); + recordSchemaValidator = new RecordSchemaValidator(Map.of(new AirbyteStreamNameNamespacePair(streamName, streamNamespace), + sourceConfig.getCatalog().getStreams().get(0).getStream().getJsonSchema())); + final ReplicationWorker worker = new DefaultReplicationWorker( + JOB_ID, + JOB_ATTEMPT, + source, + mapper, + destination, + messageTracker, + recordSchemaValidator, + workerMetricReporter, + false); + + worker.run(syncInput, jobRoot); + + // Despite the field not being in the catalog, we write the extra field anyway because field + // selection is disabled. + verify(destination).accept(recordWithExtraFields); + } + @Test void testDestinationNonZeroExitValue() throws Exception { when(destination.getExitValue()).thenReturn(1); @@ -346,7 +410,7 @@ void testDestinationNonZeroExitValue() throws Exception { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); final ReplicationOutput output = worker.run(syncInput, jobRoot); assertEquals(ReplicationStatus.FAILED, output.getReplicationAttemptSummary().getStatus()); @@ -367,7 +431,7 @@ void testDestinationRunnableDestinationFailure() throws Exception { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); final ReplicationOutput output = worker.run(syncInput, jobRoot); assertEquals(ReplicationStatus.FAILED, output.getReplicationAttemptSummary().getStatus()); @@ -389,7 +453,7 @@ void testDestinationRunnableWorkerFailure() throws Exception { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); final ReplicationOutput output = worker.run(syncInput, jobRoot); assertEquals(ReplicationStatus.FAILED, output.getReplicationAttemptSummary().getStatus()); @@ -412,7 +476,7 @@ void testLoggingInThreads() throws IOException, WorkerException { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); worker.run(syncInput, jobRoot); @@ -453,7 +517,7 @@ void testCancellation() throws InterruptedException { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); final Thread workerThread = new Thread(() -> { try { @@ -501,7 +565,7 @@ void testPopulatesOutputOnSuccess() throws WorkerException { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); final ReplicationOutput actual = worker.run(syncInput, jobRoot); final ReplicationOutput replicationOutput = new ReplicationOutput() @@ -568,7 +632,7 @@ void testPopulatesStateOnFailureIfAvailable() throws Exception { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); final ReplicationOutput actual = worker.run(syncInput, jobRoot); assertNotNull(actual); @@ -587,7 +651,7 @@ void testRetainsStateOnFailureIfNewStateNotAvailable() throws Exception { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); final ReplicationOutput actual = worker.run(syncInput, jobRoot); @@ -621,7 +685,7 @@ void testPopulatesStatsOnFailureIfAvailable() throws Exception { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); final ReplicationOutput actual = worker.run(syncInput, jobRoot); final SyncStats expectedTotalStats = new SyncStats() @@ -667,7 +731,7 @@ void testDoesNotPopulatesStateOnFailureIfNotAvailable() throws Exception { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); final ReplicationOutput actual = worker.run(syncInputWithoutState, jobRoot); @@ -687,7 +751,7 @@ void testDoesNotPopulateOnIrrecoverableFailure() { destination, messageTracker, recordSchemaValidator, - workerMetricReporter); + workerMetricReporter, false); assertThrows(WorkerException.class, () -> worker.run(syncInput, jobRoot)); } diff --git a/airbyte-commons-worker/src/test/java/io/airbyte/workers/normalization/DefaultNormalizationRunnerTest.java b/airbyte-commons-worker/src/test/java/io/airbyte/workers/normalization/DefaultNormalizationRunnerTest.java index 63f798bf141c..0c3eb0633c06 100644 --- a/airbyte-commons-worker/src/test/java/io/airbyte/workers/normalization/DefaultNormalizationRunnerTest.java +++ b/airbyte-commons-worker/src/test/java/io/airbyte/workers/normalization/DefaultNormalizationRunnerTest.java @@ -15,6 +15,7 @@ import com.fasterxml.jackson.databind.JsonNode; import com.google.common.collect.ImmutableMap; +import io.airbyte.commons.docker.DockerUtils; import io.airbyte.commons.io.IOs; import io.airbyte.commons.json.Jsons; import io.airbyte.commons.logging.LoggingHelper.Color; @@ -26,7 +27,6 @@ import io.airbyte.workers.WorkerConfigs; import io.airbyte.workers.WorkerConstants; import io.airbyte.workers.exception.WorkerException; -import io.airbyte.workers.normalization.DefaultNormalizationRunner.DestinationType; import io.airbyte.workers.process.AirbyteIntegrationLauncher; import io.airbyte.workers.process.ProcessFactory; import java.io.ByteArrayInputStream; @@ -49,6 +49,10 @@ class DefaultNormalizationRunnerTest { private static final String JOB_ID = "0"; private static final int JOB_ATTEMPT = 0; + private static final String NORMALIZATION_IMAGE = "airbyte/normalization"; + private static final String NORMALIZATION_TAG = "42.42.42"; + private static final String INTEGRATION_TYPE = "postgres"; + private static Path logJobRoot; static { @@ -82,14 +86,14 @@ void setup() throws IOException, WorkerException { WorkerConstants.DESTINATION_CATALOG_JSON_FILENAME, Jsons.serialize(catalog)); when(processFactory.create(AirbyteIntegrationLauncher.NORMALIZE_STEP, JOB_ID, JOB_ATTEMPT, jobRoot, - NormalizationRunnerFactory.BASE_NORMALIZATION_IMAGE_NAME, false, false, files, null, + DockerUtils.getTaggedImageName(NORMALIZATION_IMAGE, NORMALIZATION_TAG), false, false, files, null, workerConfigs.getResourceRequirements(), Map.of(AirbyteIntegrationLauncher.JOB_TYPE, AirbyteIntegrationLauncher.SYNC_JOB, AirbyteIntegrationLauncher.SYNC_STEP, AirbyteIntegrationLauncher.NORMALIZE_STEP), Map.of(), Map.of(), "run", - "--integration-type", "bigquery", + "--integration-type", INTEGRATION_TYPE, "--config", WorkerConstants.DESTINATION_CONFIG_JSON_FILENAME, "--catalog", WorkerConstants.DESTINATION_CATALOG_JSON_FILENAME)) .thenReturn(process); @@ -110,8 +114,7 @@ public void tearDown() throws IOException { @Test void test() throws Exception { final NormalizationRunner runner = - new DefaultNormalizationRunner(DestinationType.BIGQUERY, processFactory, - NormalizationRunnerFactory.BASE_NORMALIZATION_IMAGE_NAME); + new DefaultNormalizationRunner(processFactory, DockerUtils.getTaggedImageName(NORMALIZATION_IMAGE, NORMALIZATION_TAG), INTEGRATION_TYPE); when(process.exitValue()).thenReturn(0); @@ -122,8 +125,7 @@ void test() throws Exception { void testLog() throws Exception { final NormalizationRunner runner = - new DefaultNormalizationRunner(DestinationType.BIGQUERY, processFactory, - NormalizationRunnerFactory.BASE_NORMALIZATION_IMAGE_NAME); + new DefaultNormalizationRunner(processFactory, DockerUtils.getTaggedImageName(NORMALIZATION_IMAGE, NORMALIZATION_TAG), INTEGRATION_TYPE); when(process.exitValue()).thenReturn(0); @@ -145,8 +147,7 @@ void testClose() throws Exception { when(process.isAlive()).thenReturn(true).thenReturn(false); final NormalizationRunner runner = - new DefaultNormalizationRunner(DestinationType.BIGQUERY, processFactory, - NormalizationRunnerFactory.BASE_NORMALIZATION_IMAGE_NAME); + new DefaultNormalizationRunner(processFactory, DockerUtils.getTaggedImageName(NORMALIZATION_IMAGE, NORMALIZATION_TAG), INTEGRATION_TYPE); runner.normalize(JOB_ID, JOB_ATTEMPT, jobRoot, config, catalog, workerConfigs.getResourceRequirements()); runner.close(); @@ -158,8 +159,7 @@ void testFailure() throws Exception { when(process.exitValue()).thenReturn(1); final NormalizationRunner runner = - new DefaultNormalizationRunner(DestinationType.BIGQUERY, processFactory, - NormalizationRunnerFactory.BASE_NORMALIZATION_IMAGE_NAME); + new DefaultNormalizationRunner(processFactory, DockerUtils.getTaggedImageName(NORMALIZATION_IMAGE, NORMALIZATION_TAG), INTEGRATION_TYPE); assertFalse(runner.normalize(JOB_ID, JOB_ATTEMPT, jobRoot, config, catalog, workerConfigs.getResourceRequirements())); verify(process).waitFor(); @@ -180,8 +180,7 @@ void testFailureWithTraceMessage() throws Exception { when(process.getInputStream()).thenReturn(new ByteArrayInputStream(errorTraceString.getBytes(StandardCharsets.UTF_8))); final NormalizationRunner runner = - new DefaultNormalizationRunner(DestinationType.BIGQUERY, processFactory, - NormalizationRunnerFactory.BASE_NORMALIZATION_IMAGE_NAME); + new DefaultNormalizationRunner(processFactory, DockerUtils.getTaggedImageName(NORMALIZATION_IMAGE, NORMALIZATION_TAG), INTEGRATION_TYPE); assertFalse(runner.normalize(JOB_ID, JOB_ATTEMPT, jobRoot, config, catalog, workerConfigs.getResourceRequirements())); assertEquals(1, runner.getTraceMessages().count()); @@ -207,8 +206,7 @@ void testFailureWithDbtError() throws Exception { when(process.getInputStream()).thenReturn(new ByteArrayInputStream(dbtErrorString.getBytes(StandardCharsets.UTF_8))); final NormalizationRunner runner = - new DefaultNormalizationRunner(DestinationType.BIGQUERY, processFactory, - NormalizationRunnerFactory.BASE_NORMALIZATION_IMAGE_NAME); + new DefaultNormalizationRunner(processFactory, DockerUtils.getTaggedImageName(NORMALIZATION_IMAGE, NORMALIZATION_TAG), INTEGRATION_TYPE); assertFalse(runner.normalize(JOB_ID, JOB_ATTEMPT, jobRoot, config, catalog, workerConfigs.getResourceRequirements())); assertEquals(1, runner.getTraceMessages().count()); @@ -229,8 +227,7 @@ void testFailureWithDbtErrorJsonFormat() throws Exception { when(process.getInputStream()).thenReturn(new ByteArrayInputStream(dbtErrorString.getBytes(StandardCharsets.UTF_8))); final NormalizationRunner runner = - new DefaultNormalizationRunner(DestinationType.BIGQUERY, processFactory, - NormalizationRunnerFactory.BASE_NORMALIZATION_IMAGE_NAME); + new DefaultNormalizationRunner(processFactory, DockerUtils.getTaggedImageName(NORMALIZATION_IMAGE, NORMALIZATION_TAG), INTEGRATION_TYPE); assertFalse(runner.normalize(JOB_ID, JOB_ATTEMPT, jobRoot, config, catalog, workerConfigs.getResourceRequirements())); assertEquals(1, runner.getTraceMessages().count()); diff --git a/airbyte-commons-worker/src/test/java/io/airbyte/workers/normalization/NormalizationRunnerFactoryTest.java b/airbyte-commons-worker/src/test/java/io/airbyte/workers/normalization/NormalizationRunnerFactoryTest.java deleted file mode 100644 index bc1420c6d1a5..000000000000 --- a/airbyte-commons-worker/src/test/java/io/airbyte/workers/normalization/NormalizationRunnerFactoryTest.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) 2022 Airbyte, Inc., all rights reserved. - */ - -package io.airbyte.workers.normalization; - -import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.assertThrows; -import static org.mockito.Mockito.mock; - -import io.airbyte.workers.normalization.DefaultNormalizationRunner.DestinationType; -import io.airbyte.workers.process.ProcessFactory; -import java.util.Map.Entry; -import org.apache.commons.lang3.tuple.ImmutablePair; -import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.Test; - -class NormalizationRunnerFactoryTest { - - public static final String NORMALIZATION_VERSION = "dev"; - private ProcessFactory processFactory; - - @BeforeEach - void setup() { - processFactory = mock(ProcessFactory.class); - } - - @Test - void testMappings() { - for (final Entry> entry : NormalizationRunnerFactory.NORMALIZATION_MAPPING.entrySet()) { - assertEquals(entry.getValue().getValue(), - ((DefaultNormalizationRunner) NormalizationRunnerFactory.create( - String.format("%s:0.1.0", entry.getKey()), processFactory, NORMALIZATION_VERSION, String.format("%s:0.1.0", entry.getKey()))) - .getDestinationType()); - } - assertThrows(IllegalStateException.class, - () -> NormalizationRunnerFactory.create("airbyte/destination-csv:0.1.0", processFactory, - NORMALIZATION_VERSION, "airbyte/destination-csv:0.1.0")); - } - -} 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 ab21bc3a997e..d83294c9916e 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 @@ -14,8 +14,11 @@ 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"; @Override public boolean autoDisablesFailingConnections() { @@ -49,6 +52,11 @@ public boolean needStateValidation() { return getEnvOrDefault(NEED_STATE_VALIDATION, true, Boolean::parseBoolean); } + @Override + public boolean applyFieldSelection() { + return getEnvOrDefault(APPLY_FIELD_SELECTION, false, Boolean::parseBoolean); + } + // TODO: refactor in order to use the same method than the ones in EnvConfigs.java public T getEnvOrDefault(final String key, final T defaultValue, final Function parser) { final String value = System.getenv(key); diff --git a/airbyte-commons/src/main/java/io/airbyte/commons/features/FeatureFlags.java b/airbyte-commons/src/main/java/io/airbyte/commons/features/FeatureFlags.java index b9132a8c274c..3633f9bb4ed7 100644 --- a/airbyte-commons/src/main/java/io/airbyte/commons/features/FeatureFlags.java +++ b/airbyte-commons/src/main/java/io/airbyte/commons/features/FeatureFlags.java @@ -22,4 +22,6 @@ public interface FeatureFlags { boolean needStateValidation(); + boolean applyFieldSelection(); + } diff --git a/airbyte-commons/src/main/java/io/airbyte/commons/jackson/MoreMappers.java b/airbyte-commons/src/main/java/io/airbyte/commons/jackson/MoreMappers.java index 908e958056aa..d442af5f6b9d 100644 --- a/airbyte-commons/src/main/java/io/airbyte/commons/jackson/MoreMappers.java +++ b/airbyte-commons/src/main/java/io/airbyte/commons/jackson/MoreMappers.java @@ -4,6 +4,7 @@ package io.airbyte.commons.jackson; +import com.fasterxml.jackson.core.JsonGenerator.Feature; import com.fasterxml.jackson.databind.DeserializationFeature; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.dataformat.yaml.YAMLFactory; @@ -20,6 +21,7 @@ public class MoreMappers { public static ObjectMapper initMapper() { final ObjectMapper result = new ObjectMapper().registerModule(new JavaTimeModule()); result.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); + result.configure(Feature.WRITE_BIGDECIMAL_AS_PLAIN, true); return result; } diff --git a/airbyte-config/config-models/src/main/java/io/airbyte/config/Configs.java b/airbyte-config/config-models/src/main/java/io/airbyte/config/Configs.java index 2e83ab53003e..1d4d03139e1e 100644 --- a/airbyte-config/config-models/src/main/java/io/airbyte/config/Configs.java +++ b/airbyte-config/config-models/src/main/java/io/airbyte/config/Configs.java @@ -148,6 +148,16 @@ public interface Configs { */ String getVaultToken(); + /** + * Defines thw aws_access_key configuration to use AWSSecretManager. + */ + String getAwsAccessKey(); + + /** + * Defines aws_secret_access_key to use for AWSSecretManager. + */ + String getAwsSecretAccessKey(); + // Database /** @@ -661,6 +671,12 @@ public interface Configs { // Container Orchestrator + /** + * Define if Airbyte should use the container orchestrator. Internal-use only. Should always be set + * to true - otherwise causes syncs to be run on workers instead. + */ + boolean getContainerOrchestratorEnabled(); + /** * Get the name of the container orchestrator secret. Internal-use only. */ @@ -748,7 +764,8 @@ enum SecretPersistenceType { NONE, TESTING_CONFIG_DB_TABLE, GOOGLE_SECRET_MANAGER, - VAULT + VAULT, + AWS_SECRET_MANAGER } } diff --git a/airbyte-config/config-models/src/main/java/io/airbyte/config/EnvConfigs.java b/airbyte-config/config-models/src/main/java/io/airbyte/config/EnvConfigs.java index d37322c87202..ca175dd8c39f 100644 --- a/airbyte-config/config-models/src/main/java/io/airbyte/config/EnvConfigs.java +++ b/airbyte-config/config-models/src/main/java/io/airbyte/config/EnvConfigs.java @@ -115,6 +115,7 @@ public class EnvConfigs implements Configs { private static final String CONFIGS_DATABASE_INITIALIZATION_TIMEOUT_MS = "CONFIGS_DATABASE_INITIALIZATION_TIMEOUT_MS"; private static final String JOBS_DATABASE_MINIMUM_FLYWAY_MIGRATION_VERSION = "JOBS_DATABASE_MINIMUM_FLYWAY_MIGRATION_VERSION"; private static final String JOBS_DATABASE_INITIALIZATION_TIMEOUT_MS = "JOBS_DATABASE_INITIALIZATION_TIMEOUT_MS"; + private static final String CONTAINER_ORCHESTRATOR_ENABLED = "CONTAINER_ORCHESTRATOR_ENABLED"; private static final String CONTAINER_ORCHESTRATOR_SECRET_NAME = "CONTAINER_ORCHESTRATOR_SECRET_NAME"; private static final String CONTAINER_ORCHESTRATOR_SECRET_MOUNT_PATH = "CONTAINER_ORCHESTRATOR_SECRET_MOUNT_PATH"; private static final String CONTAINER_ORCHESTRATOR_IMAGE = "CONTAINER_ORCHESTRATOR_IMAGE"; @@ -203,6 +204,8 @@ public class EnvConfigs implements Configs { private static final String DEFAULT_JOB_KUBE_SIDECAR_CONTAINER_IMAGE_PULL_POLICY = "IfNotPresent"; private static final String SECRET_STORE_GCP_PROJECT_ID = "SECRET_STORE_GCP_PROJECT_ID"; private static final String SECRET_STORE_GCP_CREDENTIALS = "SECRET_STORE_GCP_CREDENTIALS"; + private static final String AWS_ACCESS_KEY = "AWS_ACCESS_KEY"; + private static final String AWS_SECRET_ACCESS_KEY = "AWS_SECRET_ACCESS_KEY"; private static final String DEFAULT_JOB_KUBE_SOCAT_IMAGE = "alpine/socat:1.7.4.3-r0"; private static final String DEFAULT_JOB_KUBE_BUSYBOX_IMAGE = "busybox:1.28"; private static final String DEFAULT_JOB_KUBE_CURL_IMAGE = "curlimages/curl:7.83.1"; @@ -419,6 +422,16 @@ public String getVaultToken() { return getEnv(VAULT_AUTH_TOKEN); } + @Override + public String getAwsAccessKey() { + return getEnv(AWS_ACCESS_KEY); + } + + @Override + public String getAwsSecretAccessKey() { + return getEnv(AWS_SECRET_ACCESS_KEY); + } + // Database @Override public String getDatabaseUser() { @@ -1045,6 +1058,11 @@ public Set getTemporalWorkerPorts() { return Arrays.stream(ports.split(",")).map(Integer::valueOf).collect(Collectors.toSet()); } + @Override + public boolean getContainerOrchestratorEnabled() { + return getEnvOrDefault(CONTAINER_ORCHESTRATOR_ENABLED, false, Boolean::valueOf); + } + @Override public String getContainerOrchestratorSecretName() { return getEnvOrDefault(CONTAINER_ORCHESTRATOR_SECRET_NAME, null); diff --git a/airbyte-config/config-models/src/main/resources/types/NormalizationDestinationDefinitionConfig.yaml b/airbyte-config/config-models/src/main/resources/types/NormalizationDestinationDefinitionConfig.yaml new file mode 100644 index 000000000000..69aacfa2dea8 --- /dev/null +++ b/airbyte-config/config-models/src/main/resources/types/NormalizationDestinationDefinitionConfig.yaml @@ -0,0 +1,21 @@ +--- +"$schema": http://json-schema.org/draft-07/schema# +"$id": https://github.com/airbytehq/airbyte/blob/master/airbyte-config/models/src/main/resources/types/NormalizationDestinationDefinitionConfig.yaml +title: NormalizationDestinationDefinitionConfig +description: describes a normalization config for destination definition +type: object +required: + - normalizationRepository + - normalizationTag + - normalizationIntegrationType +additionalProperties: true +properties: + normalizationRepository: + type: string + description: a field indicating the name of the repository to be used for normalization. If the value of the flag is NULL - normalization is not used. + normalizationTag: + type: string + description: a field indicating the tag of the docker repository to be used for normalization. + normalizationIntegrationType: + type: string + description: a field indicating the type of integration dialect to use for normalization. diff --git a/airbyte-config/config-models/src/main/resources/types/StandardDestinationDefinition.yaml b/airbyte-config/config-models/src/main/resources/types/StandardDestinationDefinition.yaml index f3f37ebb3971..103530d33b50 100644 --- a/airbyte-config/config-models/src/main/resources/types/StandardDestinationDefinition.yaml +++ b/airbyte-config/config-models/src/main/resources/types/StandardDestinationDefinition.yaml @@ -58,10 +58,8 @@ properties: protocolVersion: type: string description: the Airbyte Protocol version supported by the connector - normalizationRepository: - type: string - normalizationTag: - type: string + normalizationConfig: + "$ref": NormalizationDestinationDefinitionConfig.yaml supportsDbt: type: boolean - default: false + description: an optional flag indicating whether DBT is used in the normalization. If the flag value is NULL - DBT is not used. diff --git a/airbyte-config/config-persistence/build.gradle b/airbyte-config/config-persistence/build.gradle index 824882d95d60..70f6fb95ba31 100644 --- a/airbyte-config/config-persistence/build.gradle +++ b/airbyte-config/config-persistence/build.gradle @@ -20,6 +20,7 @@ dependencies { implementation 'commons-io:commons-io:2.7' implementation 'com.google.cloud:google-cloud-secretmanager:2.0.5' implementation 'com.bettercloud:vault-java-driver:5.1.0' + implementation 'com.amazonaws.secretsmanager:aws-secretsmanager-caching-java:1.0.2' testImplementation 'org.hamcrest:hamcrest-all:1.3' testImplementation libs.platform.testcontainers.postgresql diff --git a/airbyte-config/config-persistence/src/main/java/io/airbyte/config/persistence/ConfigRepository.java b/airbyte-config/config-persistence/src/main/java/io/airbyte/config/persistence/ConfigRepository.java index 43b62f6d810a..614cd66a52a3 100644 --- a/airbyte-config/config-persistence/src/main/java/io/airbyte/config/persistence/ConfigRepository.java +++ b/airbyte-config/config-persistence/src/main/java/io/airbyte/config/persistence/ConfigRepository.java @@ -1305,13 +1305,22 @@ public Optional getActorCatalog(final UUID actorId, return records.stream().findFirst().map(DbConverter::buildActorCatalog); } + public Optional getMostRecentActorCatalogForSource(final UUID sourceId) throws IOException { + final Result records = database.query(ctx -> ctx.select(ACTOR_CATALOG.asterisk()) + .from(ACTOR_CATALOG) + .join(ACTOR_CATALOG_FETCH_EVENT) + .on(ACTOR_CATALOG_FETCH_EVENT.ACTOR_CATALOG_ID.eq(ACTOR_CATALOG.ID)) + .where(ACTOR_CATALOG_FETCH_EVENT.ACTOR_ID.eq(sourceId)) + .orderBy(ACTOR_CATALOG_FETCH_EVENT.CREATED_AT.desc()).limit(1).fetch()); + return records.stream().findFirst().map(DbConverter::buildActorCatalog); + } + public Optional getMostRecentActorCatalogFetchEventForSource(final UUID sourceId) throws IOException { final Result records = database.query(ctx -> ctx.select(ACTOR_CATALOG_FETCH_EVENT.asterisk()) .from(ACTOR_CATALOG_FETCH_EVENT) .where(ACTOR_CATALOG_FETCH_EVENT.ACTOR_ID.eq(sourceId)) .orderBy(ACTOR_CATALOG_FETCH_EVENT.CREATED_AT.desc()).limit(1).fetch()); - return records.stream().findFirst().map(DbConverter::buildActorCatalogFetchEvent); } diff --git a/airbyte-config/config-persistence/src/main/java/io/airbyte/config/persistence/ConfigWriter.java b/airbyte-config/config-persistence/src/main/java/io/airbyte/config/persistence/ConfigWriter.java index cb836f63fbb9..00640eadfd9b 100644 --- a/airbyte-config/config-persistence/src/main/java/io/airbyte/config/persistence/ConfigWriter.java +++ b/airbyte-config/config-persistence/src/main/java/io/airbyte/config/persistence/ConfigWriter.java @@ -19,11 +19,8 @@ import io.airbyte.db.instance.configs.jooq.generated.enums.SourceType; import java.time.LocalDate; import java.time.OffsetDateTime; -import java.util.List; -import java.util.Map; +import java.util.*; import java.util.Map.Entry; -import java.util.Set; -import java.util.UUID; import java.util.stream.Collectors; import java.util.stream.Stream; import org.jooq.DSLContext; @@ -175,9 +172,19 @@ static void writeStandardDestinationDefinition(final ListJava + * SDK The current implementation doesn't make use of `SecretCoordinate#getVersion` as this + * version is non-compatible with how AWS secret manager deals with versions. In AWS versions is an + * internal idiom that can is accessible, but it's a UUID + a tag more + * details. + */ +@Slf4j +public class AWSSecretManagerPersistence implements SecretPersistence { + + private final AWSSecretsManager client; + + @VisibleForTesting + protected final SecretCache cache; + + /** + * Creates a AWSSecretManagerPersistence using the default client and region from the current AWS + * credentials. Recommended way based on + * this + * This implementation makes use of SecretCache as optimization to access secrets. + * + * @see SecretCache + */ + public AWSSecretManagerPersistence() { + this.client = AWSSecretsManagerClientBuilder.defaultClient(); + this.cache = new SecretCache(this.client); + } + + /** + * Creates a AWSSecretManagerPersistence overriding the current region. This implementation makes + * use of SecretCache as optimization to access secrets + * + * @param region AWS region to use. + * @see SecretCache + */ + public AWSSecretManagerPersistence(final String region) { + checkNotNull(region, "Region cannot be null, to use a default region call AWSSecretManagerPersistence.AWSSecretManagerPersistence()"); + checkArgument(!region.isEmpty(), "Region can't be empty, to use a default region call AWSSecretManagerPersistence.AWSSecretManagerPersistence()"); + this.client = AWSSecretsManagerClientBuilder + .standard() + .withRegion(region) + .build(); + this.cache = new SecretCache(this.client); + } + + /** + * Creates a new AWSSecretManagerPersistence using the provided explicitly passed credentials. + * + * @param awsAccessKey The AWS access key. + * @param awsSecretAccessKey The AWS secret access key. + */ + public AWSSecretManagerPersistence(final String awsAccessKey, final String awsSecretAccessKey) { + checkNotNull(awsAccessKey, "awsAccessKey cannot be null, to use a default region call AWSSecretManagerPersistence.AWSSecretManagerPersistence()"); + checkNotNull(awsSecretAccessKey, + "awsSecretAccessKey cannot be null, to use a default region call AWSSecretManagerPersistence.AWSSecretManagerPersistence()"); + checkArgument(!awsAccessKey.isEmpty(), + "awsAccessKey cannot be empty, to use a default region call AWSSecretManagerPersistence.AWSSecretManagerPersistence()"); + checkArgument(!awsSecretAccessKey.isEmpty(), + "awsSecretAccessKey cannot be empty, to use a default region call AWSSecretManagerPersistence.AWSSecretManagerPersistence()"); + BasicAWSCredentials credentials = new BasicAWSCredentials(awsAccessKey, awsSecretAccessKey); + this.client = AWSSecretsManagerClientBuilder + .standard() + .withCredentials(new AWSStaticCredentialsProvider(credentials)) + .build(); + this.cache = new SecretCache(this.client); + } + + @Override + public Optional read(final SecretCoordinate coordinate) { + // fail fast, return an empty + if (coordinate == null) + return Optional.empty(); + + String secretString = null; + try { + log.debug("Reading secret {}", coordinate.getCoordinateBase()); + secretString = cache.getSecretString(coordinate.getCoordinateBase()); + } catch (ResourceNotFoundException e) { + log.warn("Secret {} not found", coordinate.getCoordinateBase()); + } + return Optional.ofNullable(secretString); + } + + @Override + public void write(final SecretCoordinate coordinate, final String payload) { + checkNotNull(coordinate, "SecretCoordinate cannot be null"); + checkNotNull(payload, "Payload cannot be null"); + checkArgument(!payload.isEmpty(), "Payload shouldn't be empty"); + + if (read(coordinate).isPresent()) { + log.debug("Secret {} found updating payload.", coordinate.getCoordinateBase()); + final UpdateSecretRequest request = new UpdateSecretRequest() + .withSecretId(coordinate.getCoordinateBase()) + .withSecretString(payload) + .withDescription("Airbyte secret."); + client.updateSecret(request); + } else { + log.debug("Secret {} not found, creating a new one.", coordinate.getCoordinateBase()); + final CreateSecretRequest secretRequest = new CreateSecretRequest() + .withName(coordinate.getCoordinateBase()) + .withSecretString(payload) + .withDescription("Airbyte secret."); + client.createSecret(secretRequest); + } + + } + + /** + * Utility to clean up after integration tests. + * + * @param coordinate SecretCoordinate to delete. + */ + @VisibleForTesting + protected void deleteSecret(final SecretCoordinate coordinate) { + client.deleteSecret(new DeleteSecretRequest() + .withSecretId(coordinate.getCoordinateBase()) + .withForceDeleteWithoutRecovery(true)); + } + +} diff --git a/airbyte-config/config-persistence/src/main/java/io/airbyte/config/persistence/split_secrets/SecretPersistence.java b/airbyte-config/config-persistence/src/main/java/io/airbyte/config/persistence/split_secrets/SecretPersistence.java index 54aa0cec12cc..4397a510f068 100644 --- a/airbyte-config/config-persistence/src/main/java/io/airbyte/config/persistence/split_secrets/SecretPersistence.java +++ b/airbyte-config/config-persistence/src/main/java/io/airbyte/config/persistence/split_secrets/SecretPersistence.java @@ -34,6 +34,9 @@ static Optional getLongLived(final @Nullable DSLContext dslCo case VAULT -> { return Optional.of(new VaultSecretPersistence(configs.getVaultAddress(), configs.getVaultPrefix(), configs.getVaultToken())); } + case AWS_SECRET_MANAGER -> { + return Optional.of(new AWSSecretManagerPersistence(configs.getAwsAccessKey(), configs.getAwsSecretAccessKey())); + } default -> { return Optional.empty(); } @@ -62,6 +65,9 @@ static Optional getEphemeral(final DSLContext dslContext, fin case VAULT -> { return Optional.of(new VaultSecretPersistence(configs.getVaultAddress(), configs.getVaultPrefix(), configs.getVaultToken())); } + case AWS_SECRET_MANAGER -> { + return Optional.of(new AWSSecretManagerPersistence(configs.getAwsAccessKey(), configs.getAwsSecretAccessKey())); + } default -> { return Optional.empty(); } diff --git a/airbyte-config/config-persistence/src/test-integration/java/io/airbyte/config/persistence/split_secrets/AWSSecretManagerPersistenceIntegrationTest.java b/airbyte-config/config-persistence/src/test-integration/java/io/airbyte/config/persistence/split_secrets/AWSSecretManagerPersistenceIntegrationTest.java new file mode 100644 index 000000000000..5df8130e23f2 --- /dev/null +++ b/airbyte-config/config-persistence/src/test-integration/java/io/airbyte/config/persistence/split_secrets/AWSSecretManagerPersistenceIntegrationTest.java @@ -0,0 +1,61 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.config.persistence.split_secrets; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; + +import io.airbyte.config.Configs; +import io.airbyte.config.EnvConfigs; +import java.util.Optional; +import org.apache.commons.lang3.RandomUtils; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +public class AWSSecretManagerPersistenceIntegrationTest { + + public String coordinate_base; + private AWSSecretManagerPersistence persistence; + private final Configs configs = new EnvConfigs(); + + @BeforeEach + void setup() { + persistence = new AWSSecretManagerPersistence(configs.getAwsAccessKey(), configs.getAwsSecretAccessKey()); + coordinate_base = "aws/airbyte/secret/integration/" + RandomUtils.nextInt() % 20000; + } + + @Test + void testReadWriteUpdate() throws InterruptedException { + SecretCoordinate secretCoordinate = new SecretCoordinate(coordinate_base, 1); + + // try reading a non-existent secret + Optional firstRead = persistence.read(secretCoordinate); + assertTrue(firstRead.isEmpty()); + + // write it + String payload = "foo-secret"; + persistence.write(secretCoordinate, payload); + persistence.cache.refreshNow(secretCoordinate.getCoordinateBase()); + Optional read2 = persistence.read(secretCoordinate); + assertTrue(read2.isPresent()); + assertEquals(payload, read2.get()); + + // update it + final var secondPayload = "bar-secret"; + final var coordinate2 = new SecretCoordinate(coordinate_base, 2); + persistence.write(coordinate2, secondPayload); + persistence.cache.refreshNow(secretCoordinate.getCoordinateBase()); + final var thirdRead = persistence.read(coordinate2); + assertTrue(thirdRead.isPresent()); + assertEquals(secondPayload, thirdRead.get()); + } + + @AfterEach + void tearDown() { + persistence.deleteSecret(new SecretCoordinate(coordinate_base, 1)); + } + +} diff --git a/airbyte-config/init/src/main/resources/icons/google-pagespeed-insights.svg b/airbyte-config/init/src/main/resources/icons/google-pagespeed-insights.svg new file mode 100644 index 000000000000..f30b683ac8c9 --- /dev/null +++ b/airbyte-config/init/src/main/resources/icons/google-pagespeed-insights.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/airbyte-config/init/src/main/resources/seed/destination_definitions.yaml b/airbyte-config/init/src/main/resources/seed/destination_definitions.yaml index e081e623f076..81a45c082617 100644 --- a/airbyte-config/init/src/main/resources/seed/destination_definitions.yaml +++ b/airbyte-config/init/src/main/resources/seed/destination_definitions.yaml @@ -39,11 +39,13 @@ - name: BigQuery destinationDefinitionId: 22f6c74f-5699-40ff-833c-4a879ea40133 dockerRepository: airbyte/destination-bigquery - dockerImageTag: 1.2.8 + dockerImageTag: 1.2.9 documentationUrl: https://docs.airbyte.com/integrations/destinations/bigquery icon: bigquery.svg - normalizationRepository: airbyte/normalization - normalizationTag: 0.2.24 + normalizationConfig: + normalizationRepository: airbyte/normalization + normalizationTag: 0.2.25 + normalizationIntegrationType: bigquery supportsDbt: true resourceRequirements: jobSpecific: @@ -55,11 +57,13 @@ - name: BigQuery (denormalized typed struct) destinationDefinitionId: 079d5540-f236-4294-ba7c-ade8fd918496 dockerRepository: airbyte/destination-bigquery-denormalized - dockerImageTag: 1.2.8 + dockerImageTag: 1.2.9 documentationUrl: https://docs.airbyte.com/integrations/destinations/bigquery icon: bigquery.svg - normalizationRepository: airbyte/normalization - normalizationTag: 0.2.24 + normalizationConfig: + normalizationRepository: airbyte/normalization + normalizationTag: 0.2.25 + normalizationIntegrationType: bigquery resourceRequirements: jobSpecific: - jobType: sync @@ -88,8 +92,10 @@ documentationUrl: https://docs.airbyte.com/integrations/destinations/clickhouse icon: clickhouse.svg releaseStage: alpha - normalizationRepository: airbyte/normalization-clickhouse - normalizationTag: 0.2.24 + normalizationConfig: + normalizationRepository: airbyte/normalization-clickhouse + normalizationTag: 0.2.25 + normalizationIntegrationType: clickhouse supportsDbt: true - name: Cloudflare R2 destinationDefinitionId: 0fb07be9-7c3b-4336-850d-5efc006152ee @@ -200,8 +206,10 @@ documentationUrl: https://docs.airbyte.com/integrations/destinations/mssql icon: mssql.svg releaseStage: alpha - normalizationRepository: airbyte/normalization-mssql - normalizationTag: 0.2.24 + normalizationConfig: + normalizationRepository: airbyte/normalization-mssql + normalizationTag: 0.2.25 + normalizationIntegrationType: mssql supportsDbt: true - name: MeiliSearch destinationDefinitionId: af7c921e-5892-4ff2-b6c1-4a5ab258fb7e @@ -224,8 +232,10 @@ documentationUrl: https://docs.airbyte.com/integrations/destinations/mysql icon: mysql.svg releaseStage: alpha - normalizationRepository: airbyte/normalization-mysql - normalizationTag: 0.2.24 + normalizationConfig: + normalizationRepository: airbyte/normalization-mysql + normalizationTag: 0.2.25 + normalizationIntegrationType: mysql supportsDbt: true - name: Oracle destinationDefinitionId: 3986776d-2319-4de9-8af8-db14c0996e72 @@ -234,8 +244,10 @@ documentationUrl: https://docs.airbyte.com/integrations/destinations/oracle icon: oracle.svg releaseStage: alpha - normalizationRepository: airbyte/normalization-oracle - normalizationTag: 0.2.24 + normalizationConfig: + normalizationRepository: airbyte/normalization-oracle + normalizationTag: 0.2.25 + normalizationIntegrationType: oracle supportsDbt: true - name: Postgres destinationDefinitionId: 25c5221d-dce2-4163-ade9-739ef790f503 @@ -244,8 +256,10 @@ documentationUrl: https://docs.airbyte.com/integrations/destinations/postgres icon: postgresql.svg releaseStage: alpha - normalizationRepository: airbyte/normalization-postgres - normalizationTag: 0.2.24 + normalizationConfig: + normalizationRepository: airbyte/normalization + normalizationTag: 0.2.25 + normalizationIntegrationType: postgres supportsDbt: true - name: Pulsar destinationDefinitionId: 2340cbba-358e-11ec-8d3d-0242ac130203 @@ -274,8 +288,10 @@ dockerImageTag: 0.3.51 documentationUrl: https://docs.airbyte.com/integrations/destinations/redshift icon: redshift.svg - normalizationRepository: airbyte/normalization-redshift - normalizationTag: 0.2.24 + normalizationConfig: + normalizationRepository: airbyte/normalization-redshift + normalizationTag: 0.2.25 + normalizationIntegrationType: redshift supportsDbt: true resourceRequirements: jobSpecific: @@ -299,7 +315,7 @@ - name: S3 destinationDefinitionId: 4816b78f-1489-44c1-9060-4b19d5fa9362 dockerRepository: airbyte/destination-s3 - dockerImageTag: 0.3.17 + dockerImageTag: 0.3.18 documentationUrl: https://docs.airbyte.com/integrations/destinations/s3 icon: s3.svg resourceRequirements: @@ -312,7 +328,7 @@ - name: S3 Glue destinationDefinitionId: 471e5cab-8ed1-49f3-ba11-79c687784737 dockerRepository: airbyte/destination-s3-glue - dockerImageTag: 0.1.0 + dockerImageTag: 0.1.1 documentationUrl: https://docs.airbyte.com/integrations/destinations/s3-glue releaseStage: alpha - name: SFTP-JSON @@ -328,8 +344,10 @@ dockerImageTag: 0.4.40 documentationUrl: https://docs.airbyte.com/integrations/destinations/snowflake icon: snowflake.svg - normalizationRepository: airbyte/normalization-snowflake - normalizationTag: 0.2.24 + normalizationConfig: + normalizationRepository: airbyte/normalization-snowflake + normalizationTag: 0.2.25 + normalizationIntegrationType: snowflake supportsDbt: true resourceRequirements: jobSpecific: @@ -380,8 +398,10 @@ documentationUrl: https://docs.airbyte.com/integrations/destinations/tidb icon: tidb.svg releaseStage: alpha - normalizationRepository: airbyte/normalization-tidb - normalizationTag: 0.2.24 + normalizationConfig: + normalizationRepository: airbyte/normalization-tidb + normalizationTag: 0.2.25 + normalizationIntegrationType: tidb supportsDbt: true - name: Typesense destinationDefinitionId: 36be8dc6-9851-49af-b776-9d4c30e4ab6a diff --git a/airbyte-config/init/src/main/resources/seed/destination_specs.yaml b/airbyte-config/init/src/main/resources/seed/destination_specs.yaml index 5d7ad0b1223b..89b8ff9e8ce3 100644 --- a/airbyte-config/init/src/main/resources/seed/destination_specs.yaml +++ b/airbyte-config/init/src/main/resources/seed/destination_specs.yaml @@ -621,7 +621,7 @@ supported_destination_sync_modes: - "overwrite" - "append" -- dockerImage: "airbyte/destination-bigquery:1.2.8" +- dockerImage: "airbyte/destination-bigquery:1.2.9" spec: documentationUrl: "https://docs.airbyte.com/integrations/destinations/bigquery" connectionSpecification: @@ -831,7 +831,7 @@ - "overwrite" - "append" - "append_dedup" -- dockerImage: "airbyte/destination-bigquery-denormalized:1.2.8" +- dockerImage: "airbyte/destination-bigquery-denormalized:1.2.9" spec: documentationUrl: "https://docs.airbyte.com/integrations/destinations/bigquery" connectionSpecification: @@ -5297,7 +5297,7 @@ supported_destination_sync_modes: - "append" - "overwrite" -- dockerImage: "airbyte/destination-s3:0.3.17" +- dockerImage: "airbyte/destination-s3:0.3.18" spec: documentationUrl: "https://docs.airbyte.com/integrations/destinations/s3" connectionSpecification: @@ -5674,7 +5674,7 @@ supported_destination_sync_modes: - "overwrite" - "append" -- dockerImage: "airbyte/destination-s3-glue:0.1.0" +- dockerImage: "airbyte/destination-s3-glue:0.1.1" spec: documentationUrl: "https://docs.airbyte.com/integrations/destinations/s3" connectionSpecification: 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 08bd8d53c949..279d2d493b69 100644 --- a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml @@ -38,7 +38,7 @@ - name: AlloyDB for PostgreSQL sourceDefinitionId: 1fa90628-2b9e-11ed-a261-0242ac120002 dockerRepository: airbyte/source-alloydb - dockerImageTag: 1.0.32 + dockerImageTag: 1.0.34 documentationUrl: https://docs.airbyte.com/integrations/sources/alloydb icon: alloydb.svg sourceType: database @@ -77,7 +77,7 @@ - name: Amplitude sourceDefinitionId: fa9f58c6-2d03-4237-aaa4-07d75e0c1396 dockerRepository: airbyte/source-amplitude - dockerImageTag: 0.1.18 + dockerImageTag: 0.1.19 documentationUrl: https://docs.airbyte.com/integrations/sources/amplitude icon: amplitude.svg sourceType: api @@ -161,7 +161,7 @@ - name: BigCommerce sourceDefinitionId: 59c5501b-9f95-411e-9269-7143c939adbd dockerRepository: airbyte/source-bigcommerce - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.9 documentationUrl: https://docs.airbyte.com/integrations/sources/bigcommerce icon: bigcommerce.svg sourceType: api @@ -236,7 +236,7 @@ documentationUrl: https://docs.airbyte.com/integrations/sources/chartmogul icon: chartmogul.svg sourceType: api - releaseStage: alpha + releaseStage: beta - name: ClickHouse sourceDefinitionId: bad83517-5e54-4a3d-9b53-63e85fbd4d7c dockerRepository: airbyte/source-clickhouse @@ -259,7 +259,7 @@ documentationUrl: https://docs.airbyte.com/integrations/sources/close-com icon: close.svg sourceType: api - releaseStage: alpha + releaseStage: beta - name: CoinGecko Coins sourceDefinitionId: 9cdd4183-d0ba-40c3-aad3-6f46d4103974 dockerRepository: airbyte/source-coingecko-coins @@ -267,7 +267,7 @@ documentationUrl: https://docs.airbyte.com/integrations/sources/coingecko-coins icon: coingeckocoins.svg sourceType: api - releaseStage: beta + releaseStage: alpha - name: Cockroachdb sourceDefinitionId: 9fa5862c-da7c-11eb-8d19-0242ac130003 dockerRepository: airbyte/source-cockroachdb @@ -451,7 +451,7 @@ - name: Facebook Marketing sourceDefinitionId: e7778cfc-e97c-4458-9ecb-b4f2bba8946c dockerRepository: airbyte/source-facebook-marketing - dockerImageTag: 0.2.78 + dockerImageTag: 0.2.79 documentationUrl: https://docs.airbyte.com/integrations/sources/facebook-marketing icon: facebook.svg sourceType: api @@ -459,11 +459,11 @@ - name: Facebook Pages sourceDefinitionId: 010eb12f-837b-4685-892d-0a39f76a98f5 dockerRepository: airbyte/source-facebook-pages - dockerImageTag: 0.1.6 + dockerImageTag: 0.2.0 documentationUrl: https://docs.airbyte.com/integrations/sources/facebook-pages icon: facebook.svg sourceType: api - releaseStage: alpha + releaseStage: beta - name: Sample Data (Faker) sourceDefinitionId: dfd88b22-b603-4c3d-aad7-3701784586b1 dockerRepository: airbyte/source-faker @@ -554,7 +554,7 @@ - name: GitHub sourceDefinitionId: ef69ef6e-aa7f-4af1-a01d-ef775033524e dockerRepository: airbyte/source-github - dockerImageTag: 0.3.8 + dockerImageTag: 0.3.10 documentationUrl: https://docs.airbyte.com/integrations/sources/github icon: github.svg sourceType: api @@ -562,7 +562,7 @@ - name: Gitlab sourceDefinitionId: 5e6175e5-68e1-4c17-bff9-56103bbb0d80 dockerRepository: airbyte/source-gitlab - dockerImageTag: 0.1.9 + dockerImageTag: 0.1.12 documentationUrl: https://docs.airbyte.com/integrations/sources/gitlab icon: gitlab.svg sourceType: api @@ -578,7 +578,7 @@ - name: GNews sourceDefinitionId: ce38aec4-5a77-439a-be29-9ca44fd4e811 dockerRepository: airbyte/source-gnews - dockerImageTag: 0.1.0 + dockerImageTag: 0.1.2 documentationUrl: https://docs.airbyte.com/integrations/sources/gnews sourceType: api releaseStage: alpha @@ -628,6 +628,14 @@ icon: googledirectory.svg sourceType: api releaseStage: alpha +- name: Google PageSpeed Insights + sourceDefinitionId: 1e9086ab-ddac-4c1d-aafd-ba43ff575fe4 + dockerRepository: airbyte/source-google-pagespeed-insights + dockerImageTag: 0.1.0 + documentationUrl: https://docs.airbyte.com/integrations/sources/google-pagespeed-insights + icon: google-pagespeed-insights.svg + sourceType: api + releaseStage: alpha - name: Google Search Console sourceDefinitionId: eb4c9e00-db83-4d63-a386-39cfa91012a8 dockerRepository: airbyte/source-google-search-console @@ -686,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 @@ -777,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 @@ -935,15 +943,15 @@ - name: Metabase sourceDefinitionId: c7cb421b-942e-4468-99ee-e369bcabaec5 dockerRepository: airbyte/source-metabase - dockerImageTag: 0.2.0 + dockerImageTag: 0.3.1 documentationUrl: https://docs.airbyte.com/integrations/sources/metabase icon: metabase.svg sourceType: api - releaseStage: alpha + releaseStage: beta - name: Microsoft SQL Server (MSSQL) sourceDefinitionId: b5ea17b1-f170-46dc-bc31-cc744ca984c1 dockerRepository: airbyte/source-mssql - dockerImageTag: 0.4.25 + dockerImageTag: 0.4.26 documentationUrl: https://docs.airbyte.com/integrations/sources/mssql icon: mssql.svg sourceType: database @@ -974,11 +982,11 @@ - name: Monday sourceDefinitionId: 80a54ea2-9959-4040-aac1-eee42423ec9b dockerRepository: airbyte/source-monday - dockerImageTag: 0.1.4 + dockerImageTag: 0.2.1 documentationUrl: https://docs.airbyte.com/integrations/sources/monday icon: monday.svg sourceType: api - releaseStage: alpha + releaseStage: beta - name: MongoDb sourceDefinitionId: b2e713cd-cc36-4c0a-b5bd-b47cb8a0561e dockerRepository: airbyte/source-mongodb-v2 @@ -998,7 +1006,7 @@ - name: MySQL sourceDefinitionId: 435bb9a5-7887-4809-aa58-28c27df0d7ad dockerRepository: airbyte/source-mysql - dockerImageTag: 1.0.15 + dockerImageTag: 1.0.18 documentationUrl: https://docs.airbyte.com/integrations/sources/mysql icon: mysql.svg sourceType: database @@ -1127,7 +1135,7 @@ - name: Pardot sourceDefinitionId: ad15c7ba-72a7-440b-af15-b9a963dc1a8a dockerRepository: airbyte/source-pardot - dockerImageTag: 0.1.0 + dockerImageTag: 0.1.1 documentationUrl: https://docs.airbyte.com/integrations/sources/pardot sourceType: api releaseStage: alpha @@ -1180,7 +1188,7 @@ - name: Pinterest sourceDefinitionId: 5cb7e5fe-38c2-11ec-8d3d-0242ac130003 dockerRepository: airbyte/source-pinterest - dockerImageTag: 0.1.9 + dockerImageTag: 0.2.1 documentationUrl: https://docs.airbyte.com/integrations/sources/pinterest icon: pinterest.svg sourceType: api @@ -1242,15 +1250,15 @@ - 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 - dockerImageTag: 1.0.32 + dockerImageTag: 1.0.34 documentationUrl: https://docs.airbyte.com/integrations/sources/postgres icon: postgresql.svg sourceType: database @@ -1371,7 +1379,7 @@ - name: Retently sourceDefinitionId: db04ecd1-42e7-4115-9cec-95812905c626 dockerRepository: airbyte/source-retently - dockerImageTag: 0.1.2 + dockerImageTag: 0.1.3 documentationUrl: https://docs.airbyte.com/integrations/sources/retently icon: retently.svg sourceType: api @@ -1407,7 +1415,7 @@ - name: S3 sourceDefinitionId: 69589781-7828-43c5-9f63-8925b1c1ccc2 dockerRepository: airbyte/source-s3 - dockerImageTag: 0.1.26 + dockerImageTag: 0.1.27 documentationUrl: https://docs.airbyte.com/integrations/sources/s3 icon: s3.svg sourceType: file @@ -1522,7 +1530,7 @@ - name: Snapchat Marketing sourceDefinitionId: 200330b2-ea62-4d11-ac6d-cfe3e3f8ab2b dockerRepository: airbyte/source-snapchat-marketing - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.10 documentationUrl: https://docs.airbyte.com/integrations/sources/snapchat-marketing icon: snapchat.svg sourceType: api @@ -1530,7 +1538,7 @@ - name: Snowflake sourceDefinitionId: e2d65910-8c8b-40a1-ae7d-ee2416b2bfa2 dockerRepository: airbyte/source-snowflake - dockerImageTag: 0.1.26 + dockerImageTag: 0.1.27 documentationUrl: https://docs.airbyte.com/integrations/sources/snowflake icon: snowflake.svg sourceType: database @@ -1552,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 @@ -1629,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 @@ -1817,11 +1825,11 @@ - name: WooCommerce sourceDefinitionId: 2a2552ca-9f78-4c1c-9eb7-4d0dc66d72df dockerRepository: airbyte/source-woocommerce - dockerImageTag: 0.1.2 + dockerImageTag: 0.2.0 documentationUrl: https://docs.airbyte.com/integrations/sources/woocommerce icon: woocommerce.svg sourceType: api - releaseStage: alpha + releaseStage: beta - name: Workable sourceDefinitionId: ef3c99c6-9e90-43c8-9517-926cfd978517 dockerRepository: airbyte/source-workable @@ -1871,7 +1879,7 @@ - name: Zendesk Support sourceDefinitionId: 79c1aa37-dae3-42ae-b333-d1c105477715 dockerRepository: airbyte/source-zendesk-support - dockerImageTag: 0.2.18 + dockerImageTag: 0.2.19 documentationUrl: https://docs.airbyte.com/integrations/sources/zendesk-support icon: zendesk.svg sourceType: api @@ -2000,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 36e887c0dc2e..cfcdd1e7fe84 100644 --- a/airbyte-config/init/src/main/resources/seed/source_specs.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_specs.yaml @@ -299,7 +299,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-alloydb:1.0.32" +- dockerImage: "airbyte/source-alloydb:1.0.34" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/postgres" connectionSpecification: @@ -373,24 +373,15 @@ order: 7 ssl_mode: title: "SSL Modes" - description: "SSL connection modes. \n
  • disable - Disables\ - \ encryption of communication between Airbyte and source database
  • \n\ - \
  • allow - Enables encryption only when required by the source\ - \ database
  • \n
  • prefer - allows unencrypted connection only\ - \ if the source database does not support encryption
  • \n
  • require\ - \ - Always require encryption. If the source database server does not\ - \ support encryption, connection will fail
  • \n
  • verify-ca\ - \ - Always require encryption and verifies that the source database server\ - \ has a valid SSL certificate
  • \n
  • verify-full - This is\ - \ the most secure mode. Always require encryption and verifies the identity\ - \ of the source database server
\n Read more in the docs." type: "object" order: 7 oneOf: - title: "disable" additionalProperties: true - description: "Disable SSL." + description: "Disables encryption of communication between Airbyte and\ + \ source database." required: - "mode" properties: @@ -400,7 +391,7 @@ order: 0 - title: "allow" additionalProperties: true - description: "Allow SSL mode." + description: "Enables encryption only when required by the source database." required: - "mode" properties: @@ -410,7 +401,8 @@ order: 0 - title: "prefer" additionalProperties: true - description: "Prefer SSL mode." + description: "Allows unencrypted connection only if the source database\ + \ does not support encryption." required: - "mode" properties: @@ -420,7 +412,8 @@ order: 0 - title: "require" additionalProperties: true - description: "Require SSL mode." + description: "Always require encryption. If the source database server\ + \ does not support encryption, connection will fail." required: - "mode" properties: @@ -430,7 +423,8 @@ order: 0 - title: "verify-ca" additionalProperties: true - description: "Verify-ca SSL mode." + description: "Always require encryption and verifies that the source database\ + \ server has a valid SSL certificate." required: - "mode" - "ca_certificate" @@ -469,7 +463,8 @@ order: 4 - title: "verify-full" additionalProperties: true - description: "Verify-full SSL mode." + description: "This is the most secure mode. Always require encryption\ + \ and verifies the identity of the source database server." required: - "mode" - "ca_certificate" @@ -1176,7 +1171,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-amplitude:0.1.18" +- dockerImage: "airbyte/source-amplitude:0.1.19" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/amplitude" connectionSpecification: @@ -1184,7 +1179,6 @@ title: "Amplitude Spec" type: "object" required: - - "data_region" - "api_key" - "secret_key" - "start_date" @@ -1677,7 +1671,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-bigcommerce:0.1.7" +- dockerImage: "airbyte/source-bigcommerce:0.1.9" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/bigcommerce" connectionSpecification: @@ -3480,7 +3474,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-facebook-marketing:0.2.78" +- dockerImage: "airbyte/source-facebook-marketing:0.2.79" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/facebook-marketing" changelogUrl: "https://docs.airbyte.com/integrations/sources/facebook-marketing" @@ -3846,7 +3840,7 @@ oauthFlowInitParameters: [] oauthFlowOutputParameters: - - "access_token" -- dockerImage: "airbyte/source-facebook-pages:0.1.6" +- dockerImage: "airbyte/source-facebook-pages:0.2.0" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/facebook-pages" connectionSpecification: @@ -3863,20 +3857,15 @@ title: "Page Access Token" description: "Facebook Page Access Token" airbyte_secret: true + order: 0 page_id: type: "string" title: "Page ID" description: "Page ID" + order: 1 supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] - authSpecification: - auth_type: "oauth2.0" - oauth2Specification: - rootObject: [] - oauthFlowInitParameters: [] - oauthFlowOutputParameters: - - - "access_token" - dockerImage: "airbyte/source-faker:1.0.0" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/faker" @@ -4549,7 +4538,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-github:0.3.8" +- dockerImage: "airbyte/source-github:0.3.10" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/github" connectionSpecification: @@ -4684,7 +4673,7 @@ path_in_connector_config: - "credentials" - "client_secret" -- dockerImage: "airbyte/source-gitlab:0.1.9" +- dockerImage: "airbyte/source-gitlab:0.1.12" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/gitlab" connectionSpecification: @@ -4697,24 +4686,37 @@ - "start_date" additionalProperties: true properties: + private_token: + type: "string" + title: "Private Token" + description: "Log into your GitLab account and then generate a personal\ + \ [Access Token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html)." + airbyte_secret: true + order: 0 api_url: type: "string" examples: - "gitlab.com" title: "API URL" description: "Please enter your basic URL from GitLab instance." - private_token: + order: 1 + start_date: type: "string" - title: "Private Token" - description: "Log into your GitLab account and then generate a personal\ - \ Access Token." - airbyte_secret: true + title: "Start Date" + description: "The date from which you'd like to replicate data for GitLab\ + \ API, in the format YYYY-MM-DDT00:00:00Z. All data generated after this\ + \ date will be replicated." + 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$" + order: 2 groups: type: "string" examples: - "airbyte.io" title: "Groups" description: "Space-delimited list of groups. e.g. airbyte.io." + order: 3 projects: type: "string" title: "Projects" @@ -4722,15 +4724,7 @@ - "airbyte.io/documentation" description: "Space-delimited list of projects. e.g. airbyte.io/documentation\ \ meltano/tap-gitlab." - start_date: - type: "string" - title: "Start Date" - description: "The date from which you'd like to replicate data for GitLab\ - \ API, in the format YYYY-MM-DDT00:00:00Z. All data generated after this\ - \ date will be replicated." - 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$" + order: 4 supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] @@ -4752,7 +4746,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-gnews:0.1.0" +- dockerImage: "airbyte/source-gnews:0.1.2" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/gnews" connectionSpecification: @@ -5575,6 +5569,65 @@ - - "client_secret" oauthFlowOutputParameters: - - "refresh_token" +- dockerImage: "airbyte/source-google-pagespeed-insights:0.1.0" + spec: + documentationUrl: "https://docs.airbyte.io/integrations/sources/google-pagespeed-insights" + connectionSpecification: + $schema: "http://json-schema.org/draft-07/schema#" + title: "Google PageSpeed Insights Spec" + type: "object" + required: + - "urls" + - "strategies" + - "categories" + additionalProperties: true + properties: + api_key: + type: "string" + title: "API Key" + description: "Google PageSpeed API Key. See here. The key is optional - however the API is heavily rate limited\ + \ when using without API Key. Creating and using the API key therefore\ + \ is recommended. The key is case sensitive." + airbyte_secret: true + urls: + type: "array" + items: + type: "string" + pattern: "^(?:origin:)?(http(s)?:\\/\\/)[\\w.-]+(?:\\.[\\w\\.-]+)+[\\\ + w\\-\\._~:\\/?#[\\]@!\\$&'\\(\\)\\*\\+,;=.]+$" + title: "URLs to analyse" + description: "The URLs to retrieve pagespeed information from. The connector\ + \ will attempt to sync PageSpeed reports for all the defined URLs. Format:\ + \ https://(www.)url.domain" + example: "https://example.com" + strategies: + type: "array" + items: + type: "string" + enum: + - "desktop" + - "mobile" + title: "Analyses Strategies" + description: "The analyses strategy to use. Either \"desktop\" or \"mobile\"\ + ." + categories: + type: "array" + items: + type: "string" + enum: + - "accessibility" + - "best-practices" + - "performance" + - "pwa" + - "seo" + title: "Lighthouse Categories" + description: "Defines which Lighthouse category to run. One or many of:\ + \ \"accessibility\", \"best-practices\", \"performance\", \"pwa\", \"\ + seo\"." + supportsNormalization: false + supportsDBT: false + supported_destination_sync_modes: [] - dockerImage: "airbyte/source-google-search-console:0.1.18" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/google-search-console" @@ -6004,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: @@ -6032,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)" @@ -6605,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: @@ -6624,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" @@ -6631,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" @@ -6644,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" @@ -6681,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: [] @@ -7832,7 +7896,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-metabase:0.2.0" +- dockerImage: "airbyte/source-metabase:0.3.1" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/metabase" connectionSpecification: @@ -7871,7 +7935,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-mssql:0.4.25" +- dockerImage: "airbyte/source-mssql:0.4.26" spec: documentationUrl: "https://docs.airbyte.com/integrations/destinations/mssql" connectionSpecification: @@ -7949,9 +8013,6 @@ ssl_method: type: "string" const: "unencrypted" - enum: - - "unencrypted" - default: "unencrypted" - title: "Encrypted (trust server certificate)" description: "Use the certificate provided by the server without verification.\ \ (For testing purposes only!)" @@ -7961,9 +8022,6 @@ ssl_method: type: "string" const: "encrypted_trust_server_certificate" - enum: - - "encrypted_trust_server_certificate" - default: "encrypted_trust_server_certificate" - title: "Encrypted (verify certificate)" description: "Verify and use the certificate provided by the server." required: @@ -7974,9 +8032,6 @@ ssl_method: type: "string" const: "encrypted_verify_certificate" - enum: - - "encrypted_verify_certificate" - default: "encrypted_verify_certificate" hostNameInCertificate: title: "Host Name In Certificate" type: "string" @@ -8003,9 +8058,6 @@ method: type: "string" const: "STANDARD" - enum: - - "STANDARD" - default: "STANDARD" order: 0 - title: "Logical Replication (CDC)" description: "CDC uses {TBC} to detect inserts, updates, and deletes.\ @@ -8016,9 +8068,6 @@ method: type: "string" const: "CDC" - enum: - - "CDC" - default: "CDC" order: 0 data_to_sync: title: "Data to Sync" @@ -8045,18 +8094,6 @@ \ the \"Snapshot\" level, you must enable the snapshot isolation mode on the database." order: 2 - initial_waiting_seconds: - type: "integer" - title: "Initial Waiting Time in Seconds (Advanced)" - description: "The amount of time the connector will wait when it launches\ - \ to determine if there is new data to sync or not. Defaults to\ - \ 300 seconds. Valid range: 120 seconds to 1200 seconds. Read about\ - \ initial waiting time." - default: 300 - min: 120 - max: 1200 - order: 3 tunnel_method: type: "object" title: "SSH Tunnel Method" @@ -8484,7 +8521,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-monday:0.1.4" +- dockerImage: "airbyte/source-monday:0.2.1" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/monday" connectionSpecification: @@ -8761,7 +8798,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-mysql:1.0.15" +- dockerImage: "airbyte/source-mysql:1.0.18" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/mysql" connectionSpecification: @@ -8823,21 +8860,14 @@ order: 6 ssl_mode: title: "SSL modes" - description: "SSL connection modes.
  • preferred - Automatically\ - \ attempt SSL connection. If the MySQL server does not support SSL, continue\ - \ with a regular connection.
  • required - Always connect\ - \ with SSL. If the MySQL server doesn’t support SSL, the connection will\ - \ not be established. Certificate Authority (CA) and Hostname are not\ - \ verified.
  • verify-ca - Always connect with SSL. Verifies\ - \ CA, but allows connection even if Hostname does not match.
  • Verify\ - \ Identity - Always connect with SSL. Verify both CA and Hostname.
  • Read\ - \ more in the docs." type: "object" order: 7 oneOf: - title: "preferred" - description: "Preferred SSL mode." + description: "Automatically attempt SSL connection. If the MySQL server\ + \ does not support SSL, continue with a regular connection." required: - "mode" properties: @@ -8846,7 +8876,9 @@ const: "preferred" order: 0 - title: "required" - description: "Require SSL mode." + description: "Always connect with SSL. If the MySQL server doesn’t support\ + \ SSL, the connection will not be established. Certificate Authority\ + \ (CA) and Hostname are not verified." required: - "mode" properties: @@ -8855,7 +8887,8 @@ const: "required" order: 0 - title: "Verify CA" - description: "Verify CA SSL mode." + description: "Always connect with SSL. Verifies CA, but allows connection\ + \ even if Hostname does not match." required: - "mode" - "ca_certificate" @@ -8897,7 +8930,7 @@ airbyte_secret: true order: 4 - title: "Verify Identity" - description: "Verify-full SSL mode." + description: "Always connect with SSL. Verify both CA and Hostname." required: - "mode" - "ca_certificate" @@ -10482,9 +10515,9 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-pardot:0.1.0" +- dockerImage: "airbyte/source-pardot:0.1.1" spec: - documentationUrl: "https://docsurl.com" + documentationUrl: "https://docs.airbyte.com/integrations/sources/pardot" connectionSpecification: $schema: "http://json-schema.org/draft-07/schema#" title: "Pardot Spec" @@ -10783,7 +10816,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-pinterest:0.1.9" +- dockerImage: "airbyte/source-pinterest:0.2.1" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/pinterest" connectionSpecification: @@ -11287,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: @@ -11322,7 +11355,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-postgres:1.0.32" +- dockerImage: "airbyte/source-postgres:1.0.34" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/postgres" connectionSpecification: @@ -11396,24 +11429,15 @@ order: 7 ssl_mode: title: "SSL Modes" - description: "SSL connection modes. \n
    • disable - Disables\ - \ encryption of communication between Airbyte and source database
    • \n\ - \
    • allow - Enables encryption only when required by the source\ - \ database
    • \n
    • prefer - allows unencrypted connection only\ - \ if the source database does not support encryption
    • \n
    • require\ - \ - Always require encryption. If the source database server does not\ - \ support encryption, connection will fail
    • \n
    • verify-ca\ - \ - Always require encryption and verifies that the source database server\ - \ has a valid SSL certificate
    • \n
    • verify-full - This is\ - \ the most secure mode. Always require encryption and verifies the identity\ - \ of the source database server
    \n Read more in the docs." type: "object" order: 7 oneOf: - title: "disable" additionalProperties: true - description: "Disable SSL." + description: "Disables encryption of communication between Airbyte and\ + \ source database." required: - "mode" properties: @@ -11423,7 +11447,7 @@ order: 0 - title: "allow" additionalProperties: true - description: "Allow SSL mode." + description: "Enables encryption only when required by the source database." required: - "mode" properties: @@ -11433,7 +11457,8 @@ order: 0 - title: "prefer" additionalProperties: true - description: "Prefer SSL mode." + description: "Allows unencrypted connection only if the source database\ + \ does not support encryption." required: - "mode" properties: @@ -11443,7 +11468,8 @@ order: 0 - title: "require" additionalProperties: true - description: "Require SSL mode." + description: "Always require encryption. If the source database server\ + \ does not support encryption, connection will fail." required: - "mode" properties: @@ -11453,7 +11479,8 @@ order: 0 - title: "verify-ca" additionalProperties: true - description: "Verify-ca SSL mode." + description: "Always require encryption and verifies that the source database\ + \ server has a valid SSL certificate." required: - "mode" - "ca_certificate" @@ -11492,7 +11519,8 @@ order: 4 - title: "verify-full" additionalProperties: true - description: "Verify-full SSL mode." + description: "This is the most secure mode. Always require encryption\ + \ and verifies the identity of the source database server." required: - "mode" - "ca_certificate" @@ -12240,7 +12268,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-retently:0.1.2" +- dockerImage: "airbyte/source-retently:0.1.3" spec: documentationUrl: "https://docsurl.com" connectionSpecification: @@ -12260,14 +12288,11 @@ - "client_id" - "client_secret" - "refresh_token" - additionalProperties: false + additionalProperties: true properties: auth_type: type: "string" const: "Client" - enum: - - "Client" - default: "Client" order: 0 client_id: title: "Client ID" @@ -12288,14 +12313,11 @@ title: "Authenticate with API Token" required: - "api_key" - additionalProperties: false + additionalProperties: true properties: auth_type: type: "string" const: "Token" - enum: - - "Token" - default: "Token" order: 0 api_key: title: "API Token" @@ -12315,7 +12337,7 @@ oauth_config_specification: complete_oauth_output_specification: type: "object" - additionalProperties: false + additionalProperties: true properties: refresh_token: type: "string" @@ -12324,7 +12346,7 @@ - "refresh_token" complete_oauth_server_input_specification: type: "object" - additionalProperties: false + additionalProperties: true properties: client_id: type: "string" @@ -12332,7 +12354,7 @@ type: "string" complete_oauth_server_output_specification: type: "object" - additionalProperties: false + additionalProperties: true properties: client_id: type: "string" @@ -12477,7 +12499,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-s3:0.1.26" +- dockerImage: "airbyte/source-s3:0.1.27" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/s3" changelogUrl: "https://docs.airbyte.com/integrations/sources/s3" @@ -12610,6 +12632,8 @@ \ during schema detection, increasing this should solve it. Beware\ \ of raising this too high as you could hit OOM errors." default: 10000 + minimum: 1 + maximum: 2147483647 order: 9 type: "integer" - title: "Parquet" @@ -13570,7 +13594,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-snapchat-marketing:0.1.8" +- dockerImage: "airbyte/source-snapchat-marketing:0.1.10" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/snapchat-marketing" connectionSpecification: @@ -13631,7 +13655,7 @@ - - "client_secret" oauthFlowOutputParameters: - - "refresh_token" -- dockerImage: "airbyte/source-snowflake:0.1.26" +- dockerImage: "airbyte/source-snowflake:0.1.27" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/snowflake" connectionSpecification: @@ -13880,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" @@ -13929,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: @@ -13952,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: [] @@ -14649,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" @@ -15735,50 +15750,58 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-woocommerce:0.1.2" +- dockerImage: "airbyte/source-woocommerce:0.2.0" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/woocommerce" connectionSpecification: $schema: "http://json-schema.org/draft-07/schema#" - title: "Woocommerce Source CDK Specifications" + title: "Woocommerce Spec" type: "object" required: - - "shop" - - "start_date" - "api_key" - "api_secret" - additionalProperties: false + - "shop" + - "start_date" + additionalProperties: true properties: + api_key: + type: "string" + title: "Customer Key" + description: "Customer Key for API in WooCommerce shop" + airbyte_secret: true + order: 0 + api_secret: + type: "string" + title: "Customer Secret" + description: "Customer Secret for API in WooCommerce shop" + airbyte_secret: true + order: 1 shop: type: "string" + title: "Shop Name" description: "The name of the store. For https://EXAMPLE.com, the shop name\ \ is 'EXAMPLE.com'." + order: 2 start_date: type: "string" - description: "The date you would like to replicate data. Format: YYYY-MM-DD." + title: "Start Date" + description: "The date you would like to replicate data from. Format: YYYY-MM-DD" examples: - "2021-01-01" pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}$" - api_key: - type: "string" - description: "The CUSTOMER KEY for API in WooCommerce shop." - airbyte_secret: true - api_secret: - type: "string" - description: "The CUSTOMER SECRET for API in WooCommerce shop." - airbyte_secret: true + order: 3 conversion_window_days: - title: "Conversion Window" type: "integer" + title: "Conversion Window" description: "A conversion window is the period of time after an ad interaction\ \ (such as an ad click or video view) during which a conversion, such\ - \ as a purchase, is recorded in Google Ads." + \ as a purchase, is recorded in Google Ads" + order: 4 minimum: 0 maximum: 1095 default: 0 examples: - 14 - order: 5 supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] @@ -16147,7 +16170,7 @@ path_in_connector_config: - "credentials" - "client_secret" -- dockerImage: "airbyte/source-zendesk-support:0.2.18" +- dockerImage: "airbyte/source-zendesk-support:0.2.19" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/zendesk-support" connectionSpecification: @@ -17227,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-container-orchestrator/src/main/java/io/airbyte/container_orchestrator/orchestrator/DbtJobOrchestrator.java b/airbyte-container-orchestrator/src/main/java/io/airbyte/container_orchestrator/orchestrator/DbtJobOrchestrator.java index d5cd4f89b3a0..55f403b10e67 100644 --- a/airbyte-container-orchestrator/src/main/java/io/airbyte/container_orchestrator/orchestrator/DbtJobOrchestrator.java +++ b/airbyte-container-orchestrator/src/main/java/io/airbyte/container_orchestrator/orchestrator/DbtJobOrchestrator.java @@ -18,7 +18,7 @@ import io.airbyte.workers.WorkerConfigs; import io.airbyte.workers.general.DbtTransformationRunner; import io.airbyte.workers.general.DbtTransformationWorker; -import io.airbyte.workers.normalization.NormalizationRunnerFactory; +import io.airbyte.workers.normalization.DefaultNormalizationRunner; import io.airbyte.workers.process.KubePodProcess; import io.airbyte.workers.process.ProcessFactory; import io.airbyte.workers.sync.ReplicationLauncherWorker; @@ -77,11 +77,10 @@ public Optional runJob() throws Exception { Math.toIntExact(jobRunConfig.getAttemptId()), workerConfigs.getResourceRequirements(), new DbtTransformationRunner( - processFactory, NormalizationRunnerFactory.create( - destinationLauncherConfig.getDockerImage(), + processFactory, new DefaultNormalizationRunner( processFactory, - NormalizationRunnerFactory.NORMALIZATION_VERSION, - destinationLauncherConfig.getNormalizationDockerImage()))); + destinationLauncherConfig.getNormalizationDockerImage(), + destinationLauncherConfig.getNormalizationIntegrationType()))); log.info("Running dbt worker..."); final Path jobRoot = TemporalUtils.getJobRoot(configs.getWorkspaceRoot(), diff --git a/airbyte-container-orchestrator/src/main/java/io/airbyte/container_orchestrator/orchestrator/NormalizationJobOrchestrator.java b/airbyte-container-orchestrator/src/main/java/io/airbyte/container_orchestrator/orchestrator/NormalizationJobOrchestrator.java index aec91a39b78b..5c0b2e178ad2 100644 --- a/airbyte-container-orchestrator/src/main/java/io/airbyte/container_orchestrator/orchestrator/NormalizationJobOrchestrator.java +++ b/airbyte-container-orchestrator/src/main/java/io/airbyte/container_orchestrator/orchestrator/NormalizationJobOrchestrator.java @@ -18,7 +18,7 @@ import io.airbyte.persistence.job.models.IntegrationLauncherConfig; import io.airbyte.persistence.job.models.JobRunConfig; import io.airbyte.workers.general.DefaultNormalizationWorker; -import io.airbyte.workers.normalization.NormalizationRunnerFactory; +import io.airbyte.workers.normalization.DefaultNormalizationRunner; import io.airbyte.workers.normalization.NormalizationWorker; import io.airbyte.workers.process.KubePodProcess; import io.airbyte.workers.process.ProcessFactory; @@ -70,11 +70,10 @@ public Optional runJob() throws Exception { final NormalizationWorker normalizationWorker = new DefaultNormalizationWorker( jobRunConfig.getJobId(), Math.toIntExact(jobRunConfig.getAttemptId()), - NormalizationRunnerFactory.create( - destinationLauncherConfig.getDockerImage(), + new DefaultNormalizationRunner( processFactory, - NormalizationRunnerFactory.NORMALIZATION_VERSION, - destinationLauncherConfig.getNormalizationDockerImage()), + destinationLauncherConfig.getNormalizationDockerImage(), + destinationLauncherConfig.getNormalizationIntegrationType()), configs.getWorkerEnvironment()); log.info("Running normalization worker..."); diff --git a/airbyte-container-orchestrator/src/main/java/io/airbyte/container_orchestrator/orchestrator/ReplicationJobOrchestrator.java b/airbyte-container-orchestrator/src/main/java/io/airbyte/container_orchestrator/orchestrator/ReplicationJobOrchestrator.java index 114052263ca4..b4d73416e743 100644 --- a/airbyte-container-orchestrator/src/main/java/io/airbyte/container_orchestrator/orchestrator/ReplicationJobOrchestrator.java +++ b/airbyte-container-orchestrator/src/main/java/io/airbyte/container_orchestrator/orchestrator/ReplicationJobOrchestrator.java @@ -148,7 +148,7 @@ public Optional runJob() throws Exception { new VersionedAirbyteMessageBufferedWriterFactory(serDeProvider, migratorFactory, destinationLauncherConfig.getProtocolVersion())), new AirbyteMessageTracker(), new RecordSchemaValidator(WorkerUtils.mapStreamNamesToSchemas(syncInput)), - metricReporter); + metricReporter, featureFlags.applyFieldSelection()); log.info("Running replication worker..."); final var jobRoot = TemporalUtils.getJobRoot(configs.getWorkspaceRoot(), 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-db/db-lib/src/main/java/io/airbyte/db/IncrementalUtils.java b/airbyte-db/db-lib/src/main/java/io/airbyte/db/IncrementalUtils.java index 3337c3775f82..09a4be45f13f 100644 --- a/airbyte-db/db-lib/src/main/java/io/airbyte/db/IncrementalUtils.java +++ b/airbyte-db/db-lib/src/main/java/io/airbyte/db/IncrementalUtils.java @@ -4,9 +4,9 @@ package io.airbyte.db; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; import io.airbyte.protocol.models.JsonSchemaPrimitiveUtil; import io.airbyte.protocol.models.JsonSchemaPrimitiveUtil.JsonSchemaPrimitive; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.util.Optional; public class IncrementalUtils { diff --git a/airbyte-db/db-lib/src/main/java/io/airbyte/db/instance/configs/migrations/V0_40_23_002__AddNormalizationIntegrationTypeToActorDefinition.java b/airbyte-db/db-lib/src/main/java/io/airbyte/db/instance/configs/migrations/V0_40_23_002__AddNormalizationIntegrationTypeToActorDefinition.java new file mode 100644 index 000000000000..1f8f1726c897 --- /dev/null +++ b/airbyte-db/db-lib/src/main/java/io/airbyte/db/instance/configs/migrations/V0_40_23_002__AddNormalizationIntegrationTypeToActorDefinition.java @@ -0,0 +1,35 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.db.instance.configs.migrations; + +import org.flywaydb.core.api.migration.BaseJavaMigration; +import org.flywaydb.core.api.migration.Context; +import org.jooq.DSLContext; +import org.jooq.impl.DSL; +import org.jooq.impl.SQLDataType; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +public class V0_40_23_002__AddNormalizationIntegrationTypeToActorDefinition extends BaseJavaMigration { + + private static final Logger LOGGER = LoggerFactory.getLogger( + V0_40_23_002__AddNormalizationIntegrationTypeToActorDefinition.class); + + @Override + public void migrate(final Context context) throws Exception { + LOGGER.info("Running migration: {}", this.getClass().getSimpleName()); + final DSLContext ctx = DSL.using(context.getConnection()); + addIntegrationTypeColumn(ctx); + } + + static void addIntegrationTypeColumn(final DSLContext ctx) { + ctx.alterTable("actor_definition") + .addColumnIfNotExists(DSL.field( + "normalization_integration_type", + SQLDataType.VARCHAR(255).nullable(true))) + .execute(); + } + +} diff --git a/airbyte-db/db-lib/src/main/resources/configs_database/normalized_tables_schema.txt b/airbyte-db/db-lib/src/main/resources/configs_database/normalized_tables_schema.txt index fa9c708d43d9..82533ef0e397 100644 --- a/airbyte-db/db-lib/src/main/resources/configs_database/normalized_tables_schema.txt +++ b/airbyte-db/db-lib/src/main/resources/configs_database/normalized_tables_schema.txt @@ -71,26 +71,27 @@ Referenced by: Table "public.actor_definition" - Column | Type | Collation | Nullable | Default -----------------------------+--------------------------+-----------+----------+------------------- - id | uuid | | not null | - name | character varying(256) | | not null | - docker_repository | character varying(256) | | not null | - docker_image_tag | character varying(256) | | not null | - documentation_url | character varying(256) | | | - icon | character varying(256) | | | - actor_type | actor_type | | not null | - source_type | source_type | | | - spec | jsonb | | not null | - created_at | timestamp with time zone | | not null | CURRENT_TIMESTAMP - updated_at | timestamp with time zone | | not null | CURRENT_TIMESTAMP - tombstone | boolean | | not null | false - release_stage | release_stage | | | - release_date | date | | | - resource_requirements | jsonb | | | - normalization_repository | character varying(255) | | | - normalization_tag | character varying(255) | | | - supports_dbt | boolean | | | + Column | Type | Collation | Nullable | Default +--------------------------------+--------------------------+-----------+----------+------------------- + id | uuid | | not null | + name | character varying(256) | | not null | + docker_repository | character varying(256) | | not null | + docker_image_tag | character varying(256) | | not null | + documentation_url | character varying(256) | | | + icon | character varying(256) | | | + actor_type | actor_type | | not null | + source_type | source_type | | | + spec | jsonb | | not null | + created_at | timestamp with time zone | | not null | CURRENT_TIMESTAMP + updated_at | timestamp with time zone | | not null | CURRENT_TIMESTAMP + tombstone | boolean | | not null | false + release_stage | release_stage | | | + release_date | date | | | + resource_requirements | jsonb | | | + normalization_repository | character varying(255) | | | + normalization_tag | character varying(255) | | | + supports_dbt | boolean | | | + normalization_integration_type | character varying(255) | | | Indexes: "actor_definition_pkey" PRIMARY KEY, btree (id) Referenced by: diff --git a/airbyte-db/db-lib/src/main/resources/configs_database/schema_dump.txt b/airbyte-db/db-lib/src/main/resources/configs_database/schema_dump.txt index b6d17a880f00..4e3b80eae471 100644 --- a/airbyte-db/db-lib/src/main/resources/configs_database/schema_dump.txt +++ b/airbyte-db/db-lib/src/main/resources/configs_database/schema_dump.txt @@ -57,6 +57,7 @@ create table "public"."actor_definition"( "normalization_repository" varchar(255) null, "normalization_tag" varchar(255) null, "supports_dbt" bool null, + "normalization_integration_type" varchar(255) null, constraint "actor_definition_pkey" primary key ("id") ); diff --git a/airbyte-db/db-lib/src/test/java/io/airbyte/db/IncrementalUtilsTest.java b/airbyte-db/db-lib/src/test/java/io/airbyte/db/IncrementalUtilsTest.java index 3e31511334dc..d99c2a3c450c 100644 --- a/airbyte-db/db-lib/src/test/java/io/airbyte/db/IncrementalUtilsTest.java +++ b/airbyte-db/db-lib/src/test/java/io/airbyte/db/IncrementalUtilsTest.java @@ -10,11 +10,11 @@ import com.fasterxml.jackson.databind.node.ObjectNode; import com.google.common.collect.Lists; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.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.CatalogHelpers; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.util.Collections; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/airbyte-integrations/bases/base-java-s3/build.gradle b/airbyte-integrations/bases/base-java-s3/build.gradle index eac8f75291d4..d4a138ba8021 100644 --- a/airbyte-integrations/bases/base-java-s3/build.gradle +++ b/airbyte-integrations/bases/base-java-s3/build.gradle @@ -12,7 +12,7 @@ dependencies { implementation 'com.github.alexmojaki:s3-stream-upload:2.2.2' implementation ('org.apache.parquet:parquet-avro:1.12.3') { exclude group: 'org.slf4j', module: 'slf4j-log4j12'} - implementation ('com.github.airbytehq:json-avro-converter:1.0.1') { exclude group: 'ch.qos.logback', module: 'logback-classic'} + implementation ('com.github.airbytehq:json-avro-converter:1.1.0') { exclude group: 'ch.qos.logback', module: 'logback-classic'} implementation group: 'com.hadoop.gplcompression', name: 'hadoop-lzo', version: '0.4.20' // parquet @@ -28,7 +28,7 @@ dependencies { } implementation ('org.apache.parquet:parquet-avro:1.12.3') { exclude group: 'org.slf4j', module: 'slf4j-log4j12'} - implementation ('com.github.airbytehq:json-avro-converter:1.0.1') { exclude group: 'ch.qos.logback', module: 'logback-classic'} + implementation ('com.github.airbytehq:json-avro-converter:1.1.0') { exclude group: 'ch.qos.logback', module: 'logback-classic'} testImplementation 'org.apache.commons:commons-lang3:3.11' testImplementation 'org.xerial.snappy:snappy-java:1.1.8.4' diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/BaseS3Destination.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/BaseS3Destination.java index e655b2ddd524..266c38d23aa8 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/BaseS3Destination.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/BaseS3Destination.java @@ -12,10 +12,10 @@ import io.airbyte.integrations.destination.NamingConventionTransformer; import io.airbyte.integrations.destination.record_buffer.FileBuffer; import io.airbyte.integrations.destination.s3.util.S3NameTransformer; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/S3ConsumerFactory.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/S3ConsumerFactory.java index dc49e05ec6a8..237c6b2d045d 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/S3ConsumerFactory.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/S3ConsumerFactory.java @@ -15,12 +15,12 @@ import io.airbyte.integrations.destination.buffered_stream_consumer.OnStartFunction; import io.airbyte.integrations.destination.record_buffer.SerializableBuffer; import io.airbyte.integrations.destination.record_buffer.SerializedBufferingStrategy; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +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.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.util.List; import java.util.Map; import java.util.function.Consumer; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/SerializedBufferFactory.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/SerializedBufferFactory.java index 07221f113b1b..9d03ea343abd 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/SerializedBufferFactory.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/SerializedBufferFactory.java @@ -15,8 +15,8 @@ import io.airbyte.integrations.destination.s3.jsonl.JsonLSerializedBuffer; import io.airbyte.integrations.destination.s3.jsonl.S3JsonlFormatConfig; import io.airbyte.integrations.destination.s3.parquet.ParquetSerializedBuffer; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.concurrent.Callable; import java.util.function.Function; import org.slf4j.Logger; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/WriteConfig.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/WriteConfig.java index 3eddd2e187cc..4a796866b959 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/WriteConfig.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/WriteConfig.java @@ -4,7 +4,7 @@ package io.airbyte.integrations.destination.s3; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.util.ArrayList; import java.util.List; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/AvroRecordFactory.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/AvroRecordFactory.java index 365c652eb13e..c4f97afb1109 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/AvroRecordFactory.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/AvroRecordFactory.java @@ -11,7 +11,7 @@ import com.fasterxml.jackson.databind.node.ObjectNode; import io.airbyte.commons.jackson.MoreMappers; import io.airbyte.integrations.base.JavaBaseConstants; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.util.UUID; import org.apache.avro.Schema; import org.apache.avro.generic.GenericData; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/AvroSerializedBuffer.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/AvroSerializedBuffer.java index b410716f9688..a3a832e938d1 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/AvroSerializedBuffer.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/AvroSerializedBuffer.java @@ -8,9 +8,9 @@ import io.airbyte.integrations.destination.record_buffer.BaseSerializedBuffer; import io.airbyte.integrations.destination.record_buffer.BufferStorage; import io.airbyte.integrations.destination.record_buffer.SerializableBuffer; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.io.IOException; import java.io.OutputStream; import java.util.UUID; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/JsonSchemaType.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/JsonSchemaType.java index b9407c94b714..ae874c0c8c5d 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/JsonSchemaType.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/JsonSchemaType.java @@ -15,27 +15,48 @@ */ public enum JsonSchemaType { - STRING("string", true, null, Schema.Type.STRING), - NUMBER_INT("number", true, "integer", Schema.Type.INT), - NUMBER_BIGINT("string", true, "big_integer", Schema.Type.STRING), - NUMBER_FLOAT("number", true, "float", Schema.Type.FLOAT), - NUMBER("number", true, null, Schema.Type.DOUBLE), - INTEGER("integer", true, null, Schema.Type.INT), - BOOLEAN("boolean", true, null, Schema.Type.BOOLEAN), - NULL("null", true, null, Schema.Type.NULL), - OBJECT("object", false, null, Schema.Type.RECORD), - ARRAY("array", false, null, Schema.Type.ARRAY), - COMBINED("combined", false, null, Schema.Type.UNION); + STRING_V1("WellKnownTypes.json#/definitions/String", Schema.Type.STRING), + INTEGER_V1("WellKnownTypes.json#/definitions/Integer", Schema.Type.INT), + NUMBER_V1("WellKnownTypes.json#/definitions/Number", Schema.Type.DOUBLE), + BOOLEAN_V1("WellKnownTypes.json#/definitions/Boolean", Schema.Type.BOOLEAN), + BINARY_DATA_V1("WellKnownTypes.json#/definitions/BinaryData", Schema.Type.BYTES), + DATE_V1("WellKnownTypes.json#/definitions/Date", Schema.Type.INT), + TIMESTAMP_WITH_TIMEZONE_V1("WellKnownTypes.json#/definitions/TimestampWithTimezone", Schema.Type.LONG), + TIMESTAMP_WITHOUT_TIMEZONE_V1("WellKnownTypes.json#/definitions/TimestampWithoutTimezone", Schema.Type.LONG), + TIME_WITH_TIMEZONE_V1("WellKnownTypes.json#/definitions/TimeWithTimezone", Schema.Type.LONG), + TIME_WITHOUT_TIMEZONE_V1("WellKnownTypes.json#/definitions/TimeWithoutTimezone", Schema.Type.LONG), + OBJECT("object", Schema.Type.RECORD), + ARRAY("array", Schema.Type.ARRAY), + COMBINED("combined", Schema.Type.UNION), + @Deprecated + STRING_V0("string", null, Schema.Type.STRING), + @Deprecated + NUMBER_INT_V0("number", "integer", Schema.Type.INT), + @Deprecated + NUMBER_BIGINT_V0("string", "big_integer", Schema.Type.STRING), + @Deprecated + NUMBER_FLOAT_V0("number", "float", Schema.Type.FLOAT), + @Deprecated + NUMBER_V0("number", null, Schema.Type.DOUBLE), + @Deprecated + INTEGER_V0("integer", null, Schema.Type.INT), + @Deprecated + BOOLEAN_V0("boolean", null, Schema.Type.BOOLEAN), + @Deprecated + NULL("null", null, Schema.Type.NULL); private final String jsonSchemaType; - private final boolean isPrimitive; private final Schema.Type avroType; - private final String jsonSchemaAirbyteType; + private String jsonSchemaAirbyteType; - JsonSchemaType(final String jsonSchemaType, final boolean isPrimitive, final String jsonSchemaAirbyteType, final Schema.Type avroType) { + JsonSchemaType(final String jsonSchemaType, final String jsonSchemaAirbyteType, final Schema.Type avroType) { this.jsonSchemaType = jsonSchemaType; this.jsonSchemaAirbyteType = jsonSchemaAirbyteType; - this.isPrimitive = isPrimitive; + this.avroType = avroType; + } + + JsonSchemaType(final String jsonSchemaType, final Schema.Type avroType) { + this.jsonSchemaType = jsonSchemaType; this.avroType = avroType; } @@ -75,10 +96,6 @@ public String getJsonSchemaType() { return jsonSchemaType; } - public boolean isPrimitive() { - return isPrimitive; - } - public Schema.Type getAvroType() { return avroType; } diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/JsonToAvroSchemaConverter.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/JsonToAvroSchemaConverter.java index f689a7dfb3e2..791b454394e3 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/JsonToAvroSchemaConverter.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/JsonToAvroSchemaConverter.java @@ -36,6 +36,7 @@ */ public class JsonToAvroSchemaConverter { + private static final String REFERENCE_TYPE = "$ref"; private static final String TYPE = "type"; private static final String AIRBYTE_TYPE = "airbyte_type"; private static final Schema UUID_SCHEMA = LogicalTypes.uuid() @@ -54,7 +55,7 @@ static List getNonNullTypes(final String fieldName, final JsonNo } /** - * When no type is specified, it will default to string. + * When no type or $ref are specified, it will default to string. */ static List getTypes(final String fieldName, final JsonNode fieldDefinition) { final Optional combinedRestriction = getCombinedRestriction(fieldDefinition); @@ -63,25 +64,31 @@ static List getTypes(final String fieldName, final JsonNode fiel } final JsonNode typeProperty = fieldDefinition.get(TYPE); + final JsonNode referenceType = fieldDefinition.get(REFERENCE_TYPE); + final JsonNode airbyteTypeProperty = fieldDefinition.get(AIRBYTE_TYPE); final String airbyteType = airbyteTypeProperty == null ? null : airbyteTypeProperty.asText(); - if (typeProperty == null || typeProperty.isNull()) { - LOGGER.warn("Field \"{}\" has no type specification. It will default to string", fieldName); - return Collections.singletonList(JsonSchemaType.STRING); - } - if (typeProperty.isArray()) { + if (typeProperty != null && typeProperty.isArray()) { return MoreIterators.toList(typeProperty.elements()).stream() .map(s -> JsonSchemaType.fromJsonSchemaType(s.asText())) .collect(Collectors.toList()); } - if (typeProperty.isTextual()) { + if (hasTextValue(typeProperty)) { return Collections.singletonList(JsonSchemaType.fromJsonSchemaType(typeProperty.asText(), airbyteType)); } - LOGGER.warn("Field \"{}\" has unexpected type {}. It will default to string.", fieldName, typeProperty); - return Collections.singletonList(JsonSchemaType.STRING); + if (hasTextValue(referenceType)) { + return Collections.singletonList(JsonSchemaType.fromJsonSchemaType(referenceType.asText(), airbyteType)); + } + + LOGGER.warn("Field \"{}\" has unexpected type {}. It will default to string.", fieldName, referenceType); + return Collections.singletonList(JsonSchemaType.STRING_V1); + } + + private static boolean hasTextValue(JsonNode value) { + return value != null && !value.isNull() && value.isTextual(); } static Optional getCombinedRestriction(final JsonNode fieldDefinition) { @@ -218,8 +225,14 @@ Schema parseSingleType(final String fieldName, final Schema fieldSchema; switch (fieldType) { - case INTEGER, NUMBER, NUMBER_INT, NUMBER_BIGINT, NUMBER_FLOAT, BOOLEAN -> fieldSchema = Schema.create(fieldType.getAvroType()); - case STRING -> { + case INTEGER_V1, NUMBER_V1, BOOLEAN_V1, STRING_V1, BINARY_DATA_V1 -> fieldSchema = Schema.create(fieldType.getAvroType()); + case DATE_V1 -> fieldSchema = LogicalTypes.date().addToSchema(Schema.create(Schema.Type.INT)); + case TIMESTAMP_WITH_TIMEZONE_V1, TIMESTAMP_WITHOUT_TIMEZONE_V1 -> fieldSchema = LogicalTypes.timestampMicros() + .addToSchema(Schema.create(Schema.Type.LONG)); + case TIME_WITH_TIMEZONE_V1, TIME_WITHOUT_TIMEZONE_V1 -> fieldSchema = LogicalTypes.timeMicros().addToSchema(Schema.create(Schema.Type.LONG)); + case INTEGER_V0, NUMBER_V0, NUMBER_INT_V0, NUMBER_BIGINT_V0, NUMBER_FLOAT_V0, BOOLEAN_V0 -> fieldSchema = + Schema.create(fieldType.getAvroType()); + case STRING_V0 -> { if (fieldDefinition.has("format")) { final String format = fieldDefinition.get("format").asText(); fieldSchema = switch (format) { @@ -244,13 +257,14 @@ Schema parseSingleType(final String fieldName, LOGGER.warn("Array field \"{}\" does not specify the items type. It will default to an array of strings", fieldName); fieldSchema = Schema.createArray(Schema.createUnion(NULL_SCHEMA, STRING_SCHEMA)); } else if (items.isObject()) { - if (!items.has("type") || items.get("type").isNull()) { - LOGGER.warn("Array field \"{}\" does not specify the items type. it will default to an array of strings", fieldName); - fieldSchema = Schema.createArray(Schema.createUnion(NULL_SCHEMA, STRING_SCHEMA)); - } else { + if ((items.has("type") && !items.get("type").isNull()) || + items.has("$ref") && !items.get("$ref").isNull()) { // Objects inside Json array has no names. We name it with the ".items" suffix. final String elementFieldName = fieldName + ".items"; fieldSchema = Schema.createArray(parseJsonField(elementFieldName, fieldNamespace, items, appendExtraProps, addStringToLogicalTypes)); + } else { + LOGGER.warn("Array field \"{}\" does not specify the items type. it will default to an array of strings", fieldName); + fieldSchema = Schema.createArray(Schema.createUnion(NULL_SCHEMA, STRING_SCHEMA)); } } else if (items.isArray()) { final List arrayElementTypes = diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/S3AvroWriter.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/S3AvroWriter.java index ef1aab73eb4f..43bbfbc67b3b 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/S3AvroWriter.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/avro/S3AvroWriter.java @@ -14,8 +14,8 @@ import io.airbyte.integrations.destination.s3.util.StreamTransferManagerFactory; import io.airbyte.integrations.destination.s3.writer.BaseS3Writer; import io.airbyte.integrations.destination.s3.writer.DestinationFileWriter; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.io.IOException; import java.sql.Timestamp; import java.util.UUID; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/BaseSheetGenerator.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/BaseSheetGenerator.java index 41b0b5539de1..b486b061023a 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/BaseSheetGenerator.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/BaseSheetGenerator.java @@ -5,7 +5,7 @@ package io.airbyte.integrations.destination.s3.csv; import com.fasterxml.jackson.databind.JsonNode; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.util.LinkedList; import java.util.List; import java.util.UUID; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/CsvSerializedBuffer.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/CsvSerializedBuffer.java index 3fe069694516..0dbb695e5b01 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/CsvSerializedBuffer.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/CsvSerializedBuffer.java @@ -9,9 +9,9 @@ import io.airbyte.integrations.destination.record_buffer.BufferStorage; import io.airbyte.integrations.destination.record_buffer.SerializableBuffer; import io.airbyte.integrations.destination.s3.util.CompressionType; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.io.IOException; import java.io.OutputStream; import java.io.PrintWriter; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/CsvSheetGenerator.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/CsvSheetGenerator.java index a5139f615a30..239311082304 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/CsvSheetGenerator.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/CsvSheetGenerator.java @@ -6,7 +6,7 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.integrations.destination.s3.csv.S3CsvFormatConfig.Flattening; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.util.List; import java.util.UUID; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/S3CsvWriter.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/S3CsvWriter.java index 0a754d6ea6a5..3103f6100908 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/S3CsvWriter.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/S3CsvWriter.java @@ -14,8 +14,8 @@ import io.airbyte.integrations.destination.s3.util.StreamTransferManagerFactory; import io.airbyte.integrations.destination.s3.writer.BaseS3Writer; import io.airbyte.integrations.destination.s3.writer.DestinationFileWriter; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.io.IOException; import java.io.PrintWriter; import java.nio.charset.StandardCharsets; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/StagingDatabaseCsvSheetGenerator.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/StagingDatabaseCsvSheetGenerator.java index 27130ff8150a..b0c02f9fbb8e 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/StagingDatabaseCsvSheetGenerator.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/csv/StagingDatabaseCsvSheetGenerator.java @@ -7,7 +7,7 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.JavaBaseConstants; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.sql.Timestamp; import java.time.Instant; import java.util.Collections; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/jsonl/JsonLSerializedBuffer.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/jsonl/JsonLSerializedBuffer.java index 08e3c907c0b4..b77e3b526440 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/jsonl/JsonLSerializedBuffer.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/jsonl/JsonLSerializedBuffer.java @@ -17,9 +17,9 @@ import io.airbyte.integrations.destination.record_buffer.SerializableBuffer; import io.airbyte.integrations.destination.s3.S3DestinationConstants; import io.airbyte.integrations.destination.s3.util.CompressionType; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.io.OutputStream; import java.io.PrintWriter; import java.nio.charset.StandardCharsets; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/jsonl/S3JsonlWriter.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/jsonl/S3JsonlWriter.java index a973ae13746d..87fc961b0c7d 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/jsonl/S3JsonlWriter.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/jsonl/S3JsonlWriter.java @@ -19,8 +19,8 @@ import io.airbyte.integrations.destination.s3.util.StreamTransferManagerFactory; import io.airbyte.integrations.destination.s3.writer.BaseS3Writer; import io.airbyte.integrations.destination.s3.writer.DestinationFileWriter; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.io.IOException; import java.io.PrintWriter; import java.nio.charset.StandardCharsets; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/parquet/ParquetSerializedBuffer.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/parquet/ParquetSerializedBuffer.java index be466088cdd6..e487373a9ba9 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/parquet/ParquetSerializedBuffer.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/parquet/ParquetSerializedBuffer.java @@ -11,9 +11,9 @@ import io.airbyte.integrations.destination.s3.avro.AvroConstants; import io.airbyte.integrations.destination.s3.avro.AvroRecordFactory; import io.airbyte.integrations.destination.s3.avro.JsonToAvroSchemaConverter; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.io.File; import java.io.FileInputStream; import java.io.IOException; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/parquet/S3ParquetWriter.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/parquet/S3ParquetWriter.java index 1a5bd5cc877d..c6ab25e6f16a 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/parquet/S3ParquetWriter.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/parquet/S3ParquetWriter.java @@ -13,8 +13,8 @@ import io.airbyte.integrations.destination.s3.template.S3FilenameTemplateParameterObject; import io.airbyte.integrations.destination.s3.writer.BaseS3Writer; import io.airbyte.integrations.destination.s3.writer.DestinationFileWriter; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.io.IOException; import java.net.URI; import java.net.URISyntaxException; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/util/S3OutputPathHelper.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/util/S3OutputPathHelper.java index 8dc5db52574c..9e23accbf87c 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/util/S3OutputPathHelper.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/util/S3OutputPathHelper.java @@ -6,7 +6,7 @@ import static io.airbyte.integrations.destination.s3.S3DestinationConstants.NAME_TRANSFORMER; -import io.airbyte.protocol.models.AirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteStream; import java.util.LinkedList; import java.util.List; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/writer/BaseS3Writer.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/writer/BaseS3Writer.java index 5e7cc5029af6..0bad8cd70c64 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/writer/BaseS3Writer.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/writer/BaseS3Writer.java @@ -16,9 +16,9 @@ import io.airbyte.integrations.destination.s3.template.S3FilenameTemplateManager; import io.airbyte.integrations.destination.s3.template.S3FilenameTemplateParameterObject; import io.airbyte.integrations.destination.s3.util.S3OutputPathHelper; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.io.IOException; import java.text.DateFormat; import java.text.SimpleDateFormat; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/writer/DestinationWriter.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/writer/DestinationWriter.java index caf2a6d94314..191139c5079c 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/writer/DestinationWriter.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/writer/DestinationWriter.java @@ -5,7 +5,7 @@ package io.airbyte.integrations.destination.s3.writer; import com.fasterxml.jackson.databind.JsonNode; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.io.IOException; import java.util.UUID; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/writer/ProductionWriterFactory.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/writer/ProductionWriterFactory.java index 5f7679a3df5b..e7f17ad8615c 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/writer/ProductionWriterFactory.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/writer/ProductionWriterFactory.java @@ -13,8 +13,8 @@ import io.airbyte.integrations.destination.s3.csv.S3CsvWriter; import io.airbyte.integrations.destination.s3.jsonl.S3JsonlWriter; import io.airbyte.integrations.destination.s3.parquet.S3ParquetWriter; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.sql.Timestamp; import org.apache.avro.Schema; import org.slf4j.Logger; diff --git a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/writer/S3WriterFactory.java b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/writer/S3WriterFactory.java index a5ff267ede79..6308bba44d67 100644 --- a/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/writer/S3WriterFactory.java +++ b/airbyte-integrations/bases/base-java-s3/src/main/java/io/airbyte/integrations/destination/s3/writer/S3WriterFactory.java @@ -6,7 +6,7 @@ import com.amazonaws.services.s3.AmazonS3; import io.airbyte.integrations.destination.s3.S3DestinationConfig; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.sql.Timestamp; /** diff --git a/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/avro/AvroSerializedBufferTest.java b/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/avro/AvroSerializedBufferTest.java index 84a1408caae4..67b3f0f8f8fe 100644 --- a/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/avro/AvroSerializedBufferTest.java +++ b/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/avro/AvroSerializedBufferTest.java @@ -13,12 +13,12 @@ import io.airbyte.integrations.destination.record_buffer.BufferStorage; import io.airbyte.integrations.destination.record_buffer.FileBuffer; import io.airbyte.integrations.destination.record_buffer.InMemoryBuffer; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.CatalogHelpers; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.io.File; import java.io.InputStream; import java.util.List; diff --git a/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/avro/JsonSchemaTypeTest.java b/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/avro/JsonSchemaTypeTest.java index 3ecbb4d416f0..5777945acf0f 100644 --- a/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/avro/JsonSchemaTypeTest.java +++ b/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/avro/JsonSchemaTypeTest.java @@ -26,15 +26,25 @@ public void testFromJsonSchemaType(String type, String airbyteType, JsonSchemaTy public static class JsonSchemaTypeProvider implements ArgumentsProvider { @Override - public Stream provideArguments(ExtensionContext context) throws Exception { + public Stream provideArguments(ExtensionContext context) { return Stream.of( - Arguments.of("number", "integer", JsonSchemaType.NUMBER_INT), - Arguments.of("string", "big_integer", JsonSchemaType.NUMBER_BIGINT), - Arguments.of("number", "float", JsonSchemaType.NUMBER_FLOAT), - Arguments.of("number", null, JsonSchemaType.NUMBER), - Arguments.of("string", null, JsonSchemaType.STRING), - Arguments.of("integer", null, JsonSchemaType.INTEGER), - Arguments.of("boolean", null, JsonSchemaType.BOOLEAN), + Arguments.of("WellKnownTypes.json#/definitions/Number", null, JsonSchemaType.NUMBER_V1), + Arguments.of("WellKnownTypes.json#/definitions/String", null, JsonSchemaType.STRING_V1), + Arguments.of("WellKnownTypes.json#/definitions/Integer", null, JsonSchemaType.INTEGER_V1), + Arguments.of("WellKnownTypes.json#/definitions/Boolean", null, JsonSchemaType.BOOLEAN_V1), + Arguments.of("WellKnownTypes.json#/definitions/BinaryData", null, JsonSchemaType.BINARY_DATA_V1), + Arguments.of("WellKnownTypes.json#/definitions/Date", null, JsonSchemaType.DATE_V1), + Arguments.of("WellKnownTypes.json#/definitions/TimestampWithTimezone", null, JsonSchemaType.TIMESTAMP_WITH_TIMEZONE_V1), + Arguments.of("WellKnownTypes.json#/definitions/TimestampWithoutTimezone", null, JsonSchemaType.TIMESTAMP_WITHOUT_TIMEZONE_V1), + Arguments.of("WellKnownTypes.json#/definitions/TimeWithTimezone", null, JsonSchemaType.TIME_WITH_TIMEZONE_V1), + Arguments.of("WellKnownTypes.json#/definitions/TimeWithoutTimezone", null, JsonSchemaType.TIME_WITHOUT_TIMEZONE_V1), + Arguments.of("number", "integer", JsonSchemaType.NUMBER_INT_V0), + Arguments.of("string", "big_integer", JsonSchemaType.NUMBER_BIGINT_V0), + Arguments.of("number", "float", JsonSchemaType.NUMBER_FLOAT_V0), + Arguments.of("number", null, JsonSchemaType.NUMBER_V0), + Arguments.of("string", null, JsonSchemaType.STRING_V0), + Arguments.of("integer", null, JsonSchemaType.INTEGER_V0), + Arguments.of("boolean", null, JsonSchemaType.BOOLEAN_V0), Arguments.of("null", null, JsonSchemaType.NULL), Arguments.of("object", null, JsonSchemaType.OBJECT), Arguments.of("array", null, JsonSchemaType.ARRAY), diff --git a/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/avro/JsonToAvroConverterTest.java b/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/avro/JsonToAvroConverterTest.java index 290b4d543fb0..6c51dc9ef83c 100644 --- a/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/avro/JsonToAvroConverterTest.java +++ b/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/avro/JsonToAvroConverterTest.java @@ -9,7 +9,6 @@ import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectWriter; -import com.google.common.collect.Lists; import io.airbyte.commons.jackson.MoreMappers; import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; @@ -32,23 +31,20 @@ class JsonToAvroConverterTest { @Test public void testGetSingleTypes() { - final JsonNode input1 = Jsons.deserialize("{ \"type\": \"number\" }"); - assertEquals( - Collections.singletonList(JsonSchemaType.NUMBER), - JsonToAvroSchemaConverter.getTypes("field", input1)); - } + final JsonNode input1 = Jsons.deserialize(""" + {"$ref": "WellKnownTypes.json#/definitions/Number"}" + """); - @Test - public void testGetUnionTypes() { - final JsonNode input2 = Jsons.deserialize("{ \"type\": [\"null\", \"string\"] }"); assertEquals( - Lists.newArrayList(JsonSchemaType.NULL, JsonSchemaType.STRING), - JsonToAvroSchemaConverter.getTypes("field", input2)); + Collections.singletonList(JsonSchemaType.NUMBER_V1), + JsonToAvroSchemaConverter.getTypes("field", input1)); } @Test public void testNoCombinedRestriction() { - final JsonNode input1 = Jsons.deserialize("{ \"type\": \"number\" }"); + final JsonNode input1 = Jsons.deserialize(""" + {"$ref": "WellKnownTypes.json#/definitions/String"}" + """); assertTrue(JsonToAvroSchemaConverter.getCombinedRestriction(input1).isEmpty()); } @@ -58,12 +54,13 @@ public void testWithCombinedRestriction() { assertTrue(JsonToAvroSchemaConverter.getCombinedRestriction(input2).isPresent()); } - public static class GetFieldTypeTestCaseProvider implements ArgumentsProvider { + @Deprecated + public static class GetFieldTypeTestCaseProviderV0 implements ArgumentsProvider { @Override public Stream provideArguments(final ExtensionContext context) throws Exception { final JsonNode testCases = - Jsons.deserialize(MoreResources.readResource("parquet/json_schema_converter/type_conversion_test_cases.json")); + Jsons.deserialize(MoreResources.readResource("parquet/json_schema_converter/type_conversion_test_cases_v0.json")); return MoreIterators.toList(testCases.elements()).stream().map(testCase -> Arguments.of( testCase.get("fieldName").asText(), testCase.get("jsonFieldSchema"), @@ -72,20 +69,61 @@ public Stream provideArguments(final ExtensionContext conte } + public static class GetFieldTypeTestCaseProviderV1 implements ArgumentsProvider { + + @Override + public Stream provideArguments(final ExtensionContext context) throws Exception { + final JsonNode testCases = + Jsons.deserialize(MoreResources.readResource("parquet/json_schema_converter/type_conversion_test_cases_v1.json")); + return MoreIterators.toList(testCases.elements()).stream().map(testCase -> Arguments.of( + testCase.get("fieldName").asText(), + testCase.get("jsonFieldSchema"), + testCase.get("avroFieldType"))); + } + + } + + @ParameterizedTest + @ArgumentsSource(GetFieldTypeTestCaseProviderV0.class) + public void testFieldTypeConversionV0(final String fieldName, final JsonNode jsonFieldSchema, final JsonNode avroFieldType) { + assertEquals( + avroFieldType, + Jsons.deserialize(SCHEMA_CONVERTER.parseJsonField(fieldName, null, jsonFieldSchema, true, true).toString()), + String.format("Test for %s failed", fieldName)); + } + @ParameterizedTest - @ArgumentsSource(GetFieldTypeTestCaseProvider.class) - public void testFieldTypeConversion(final String fieldName, final JsonNode jsonFieldSchema, final JsonNode avroFieldType) { + @ArgumentsSource(GetFieldTypeTestCaseProviderV1.class) + public void testFieldTypeConversionV1(final String fieldName, final JsonNode jsonFieldSchema, final JsonNode avroFieldType) { assertEquals( avroFieldType, Jsons.deserialize(SCHEMA_CONVERTER.parseJsonField(fieldName, null, jsonFieldSchema, true, true).toString()), String.format("Test for %s failed", fieldName)); } - public static class GetAvroSchemaTestCaseProvider implements ArgumentsProvider { + @Deprecated + public static class GetAvroSchemaTestCaseProviderV0 implements ArgumentsProvider { @Override public Stream provideArguments(final ExtensionContext context) throws Exception { - final JsonNode testCases = Jsons.deserialize(MoreResources.readResource("parquet/json_schema_converter/json_conversion_test_cases.json")); + final JsonNode testCases = Jsons.deserialize(MoreResources.readResource("parquet/json_schema_converter/json_conversion_test_cases_v0.json")); + return MoreIterators.toList(testCases.elements()).stream().map(testCase -> Arguments.of( + testCase.get("schemaName").asText(), + testCase.get("namespace").asText(), + testCase.get("appendAirbyteFields").asBoolean(), + testCase.get("jsonSchema"), + testCase.get("jsonObject"), + testCase.get("avroSchema"), + testCase.get("avroObject"))); + } + + } + + public static class GetAvroSchemaTestCaseProviderV1 implements ArgumentsProvider { + + @Override + public Stream provideArguments(final ExtensionContext context) throws Exception { + final JsonNode testCases = Jsons.deserialize(MoreResources.readResource("parquet/json_schema_converter/json_conversion_test_cases_v1.json")); return MoreIterators.toList(testCases.elements()).stream().map(testCase -> Arguments.of( testCase.get("schemaName").asText(), testCase.get("namespace").asText(), @@ -102,14 +140,40 @@ public Stream provideArguments(final ExtensionContext conte * This test verifies both the schema and object conversion. */ @ParameterizedTest - @ArgumentsSource(GetAvroSchemaTestCaseProvider.class) - public void testJsonAvroConversion(final String schemaName, - final String namespace, - final boolean appendAirbyteFields, - final JsonNode jsonSchema, - final JsonNode jsonObject, - final JsonNode avroSchema, - final JsonNode avroObject) + @ArgumentsSource(GetAvroSchemaTestCaseProviderV0.class) + public void testJsonAvroConversionV0(final String schemaName, + final String namespace, + final boolean appendAirbyteFields, + final JsonNode jsonSchema, + final JsonNode jsonObject, + final JsonNode avroSchema, + final JsonNode avroObject) + throws Exception { + final Schema actualAvroSchema = SCHEMA_CONVERTER.getAvroSchema(jsonSchema, schemaName, namespace, appendAirbyteFields, true, true, true); + assertEquals( + avroSchema, + Jsons.deserialize(actualAvroSchema.toString()), + String.format("Schema conversion for %s failed", schemaName)); + + final Schema.Parser schemaParser = new Schema.Parser(); + final GenericData.Record actualAvroObject = AvroConstants.JSON_CONVERTER.convertToGenericDataRecord( + WRITER.writeValueAsBytes(jsonObject), + schemaParser.parse(Jsons.serialize(avroSchema))); + assertEquals( + avroObject, + Jsons.deserialize(actualAvroObject.toString()), + String.format("Object conversion for %s failed", schemaName)); + } + + @ParameterizedTest + @ArgumentsSource(GetAvroSchemaTestCaseProviderV1.class) + public void testJsonAvroConversionV1(final String schemaName, + final String namespace, + final boolean appendAirbyteFields, + final JsonNode jsonSchema, + final JsonNode jsonObject, + final JsonNode avroSchema, + final JsonNode avroObject) throws Exception { final Schema actualAvroSchema = SCHEMA_CONVERTER.getAvroSchema(jsonSchema, schemaName, namespace, appendAirbyteFields, true, true, true); assertEquals( diff --git a/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/csv/CsvSerializedBufferTest.java b/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/csv/CsvSerializedBufferTest.java index 697bc245eb10..a7acb4892fda 100644 --- a/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/csv/CsvSerializedBufferTest.java +++ b/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/csv/CsvSerializedBufferTest.java @@ -15,12 +15,12 @@ import io.airbyte.integrations.destination.record_buffer.InMemoryBuffer; import io.airbyte.integrations.destination.s3.S3Format; import io.airbyte.integrations.destination.s3.csv.S3CsvFormatConfig.Flattening; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.CatalogHelpers; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.io.BufferedReader; import java.io.File; import java.io.InputStream; diff --git a/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/csv/S3CsvWriterTest.java b/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/csv/S3CsvWriterTest.java index 42a6ee1ebade..d0f2e92de507 100644 --- a/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/csv/S3CsvWriterTest.java +++ b/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/csv/S3CsvWriterTest.java @@ -26,10 +26,10 @@ import io.airbyte.integrations.destination.s3.csv.S3CsvFormatConfig.Flattening; import io.airbyte.integrations.destination.s3.csv.S3CsvWriter.Builder; import io.airbyte.integrations.destination.s3.util.CompressionType; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.nio.charset.StandardCharsets; diff --git a/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/jsonl/JsonLSerializedBufferTest.java b/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/jsonl/JsonLSerializedBufferTest.java index b66b53a4dd5f..15b3adec4d59 100644 --- a/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/jsonl/JsonLSerializedBufferTest.java +++ b/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/jsonl/JsonLSerializedBufferTest.java @@ -13,12 +13,12 @@ import io.airbyte.integrations.destination.record_buffer.BufferStorage; import io.airbyte.integrations.destination.record_buffer.FileBuffer; import io.airbyte.integrations.destination.record_buffer.InMemoryBuffer; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.CatalogHelpers; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.io.File; import java.io.InputStream; import java.nio.charset.StandardCharsets; diff --git a/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/parquet/ParquetSerializedBufferTest.java b/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/parquet/ParquetSerializedBufferTest.java index e43bef35f5cc..29e0e267ef9f 100644 --- a/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/parquet/ParquetSerializedBufferTest.java +++ b/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/parquet/ParquetSerializedBufferTest.java @@ -13,12 +13,12 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.destination.record_buffer.SerializableBuffer; import io.airbyte.integrations.destination.s3.S3DestinationConfig; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.CatalogHelpers; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.io.File; import java.io.FileOutputStream; import java.io.InputStream; diff --git a/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/util/S3OutputPathHelperTest.java b/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/util/S3OutputPathHelperTest.java index aaa903b29a57..5dd1a02ad74d 100644 --- a/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/util/S3OutputPathHelperTest.java +++ b/airbyte-integrations/bases/base-java-s3/src/test/java/io/airbyte/integrations/destination/s3/util/S3OutputPathHelperTest.java @@ -7,8 +7,8 @@ import static org.junit.jupiter.api.Assertions.assertEquals; import com.google.common.collect.Lists; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.SyncMode; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; diff --git a/airbyte-integrations/bases/base-java-s3/src/test/resources/parquet/json_schema_converter/json_conversion_test_cases.json b/airbyte-integrations/bases/base-java-s3/src/test/resources/parquet/json_schema_converter/json_conversion_test_cases_v0.json similarity index 99% rename from airbyte-integrations/bases/base-java-s3/src/test/resources/parquet/json_schema_converter/json_conversion_test_cases.json rename to airbyte-integrations/bases/base-java-s3/src/test/resources/parquet/json_schema_converter/json_conversion_test_cases_v0.json index 8f5928534904..55bd80ebc0e8 100644 --- a/airbyte-integrations/bases/base-java-s3/src/test/resources/parquet/json_schema_converter/json_conversion_test_cases.json +++ b/airbyte-integrations/bases/base-java-s3/src/test/resources/parquet/json_schema_converter/json_conversion_test_cases_v0.json @@ -588,7 +588,7 @@ } }, "jsonObject": { - "identifiers": [151, 152, "153", true, false] + "identifiers": [151, 152, "153", "text", true, false] }, "avroSchema": { "type": "record", @@ -620,7 +620,7 @@ ] }, "avroObject": { - "identifiers": [151, 152, "153", true, false], + "identifiers": [151, 152, 153, "text", true, false], "_airbyte_additional_properties": null } }, diff --git a/airbyte-integrations/bases/base-java-s3/src/test/resources/parquet/json_schema_converter/json_conversion_test_cases_v1.json b/airbyte-integrations/bases/base-java-s3/src/test/resources/parquet/json_schema_converter/json_conversion_test_cases_v1.json new file mode 100644 index 000000000000..cb1dad57fe7e --- /dev/null +++ b/airbyte-integrations/bases/base-java-s3/src/test/resources/parquet/json_schema_converter/json_conversion_test_cases_v1.json @@ -0,0 +1,2159 @@ +[ + { + "schemaName": "simple_schema", + "namespace": "namespace1", + "appendAirbyteFields": false, + "jsonSchema": { + "type": "object", + "properties": { + "node_id": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + } + }, + "jsonObject": { + "node_id": "abc123" + }, + "avroSchema": { + "type": "record", + "name": "simple_schema", + "namespace": "namespace1", + "fields": [ + { + "name": "node_id", + "type": ["null", "string"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "node_id": "abc123", + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "nested_record", + "namespace": "namespace2", + "appendAirbyteFields": false, + "jsonSchema": { + "type": "object", + "properties": { + "node_id": { + "$ref": "WellKnownTypes.json#/definitions/String" + }, + "user": { + "type": "object", + "properties": { + "first_name": { + "$ref": "WellKnownTypes.json#/definitions/String" + }, + "last_name": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + } + } + } + }, + "jsonObject": { + "node_id": "abc123", + "user": { + "first_name": "charles", + "last_name": "darwin" + } + }, + "avroSchema": { + "type": "record", + "name": "nested_record", + "namespace": "namespace2", + "fields": [ + { + "name": "node_id", + "type": ["null", "string"], + "default": null + }, + { + "name": "user", + "type": [ + "null", + { + "type": "record", + "name": "user", + "namespace": "", + "fields": [ + { + "name": "first_name", + "type": ["null", "string"], + "default": null + }, + { + "name": "last_name", + "type": ["null", "string"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "node_id": "abc123", + "user": { + "first_name": "charles", + "last_name": "darwin", + "_airbyte_additional_properties": null + }, + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "record_with_airbyte_fields", + "namespace": "namespace3", + "appendAirbyteFields": true, + "jsonSchema": { + "type": "object", + "properties": { + "node_id": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + } + }, + "jsonObject": { + "_airbyte_ab_id": "752fcd83-7e46-41da-b7ff-f05cb070c893", + "_airbyte_emitted_at": 1634982000, + "node_id": "abc123" + }, + "avroSchema": { + "type": "record", + "name": "record_with_airbyte_fields", + "namespace": "namespace3", + "fields": [ + { + "name": "_airbyte_ab_id", + "type": { + "type": "string", + "logicalType": "uuid" + } + }, + { + "name": "_airbyte_emitted_at", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + } + }, + { + "name": "node_id", + "type": ["null", "string"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "_airbyte_ab_id": "752fcd83-7e46-41da-b7ff-f05cb070c893", + "_airbyte_emitted_at": 1634982000, + "node_id": "abc123", + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "name_with:spécial:characters", + "namespace": "namespace4", + "appendAirbyteFields": false, + "jsonSchema": { + "type": "object", + "properties": { + "node:id": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + } + }, + "jsonObject": { + "node:id": "abc123" + }, + "avroSchema": { + "type": "record", + "name": "name_with_special_characters", + "namespace": "namespace4", + "doc": "_airbyte_original_name:name_with:spécial:characters", + "fields": [ + { + "name": "node_id", + "doc": "_airbyte_original_name:node:id", + "type": ["null", "string"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "node_id": "abc123", + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "record_with_union_type", + "namespace": "namespace5", + "appendAirbyteFields": false, + "jsonSchema": { + "type": "object", + "properties": { + "identifier": { + "oneOf": [ + { "$ref": "WellKnownTypes.json#/definitions/Number" }, + { "$ref": "WellKnownTypes.json#/definitions/String" } + ] + } + } + }, + "jsonObject": { + "identifier": "65536.0" + }, + "avroSchema": { + "type": "record", + "name": "record_with_union_type", + "namespace": "namespace5", + "fields": [ + { + "name": "identifier", + "type": ["null", "double", "string"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "identifier": 65536.0, + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "array_with_same_type", + "namespace": "namespace6", + "appendAirbyteFields": false, + "jsonSchema": { + "type": "object", + "properties": { + "identifier": { + "type": "array", + "items": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + } + } + }, + "jsonObject": { + "identifier": ["151", "152"] + }, + "avroSchema": { + "type": "record", + "name": "array_with_same_type", + "namespace": "namespace6", + "fields": [ + { + "name": "identifier", + "type": [ + "null", + { + "type": "array", + "items": ["null", "string"] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "identifier": ["151", "152"], + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "array_with_union_type", + "namespace": "namespace7", + "appendAirbyteFields": false, + "jsonSchema": { + "type": "object", + "properties": { + "identifiers": { + "type": "array", + "items": [ + { "$ref": "WellKnownTypes.json#/definitions/String" }, + { "$ref": "WellKnownTypes.json#/definitions/Integer" }, + { "$ref": "WellKnownTypes.json#/definitions/String" }, + { "$ref": "WellKnownTypes.json#/definitions/Boolean" } + ] + } + } + }, + "jsonObject": { + "identifiers": ["151", "152", true, false] + }, + "avroSchema": { + "type": "record", + "name": "array_with_union_type", + "namespace": "namespace7", + "fields": [ + { + "name": "identifiers", + "type": [ + "null", + { + "type": "array", + "items": ["null", "string", "int", "boolean"] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "identifiers": ["151", "152", true, false], + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "field_with_combined_restriction", + "namespace": "namespace8", + "appendAirbyteFields": false, + "jsonSchema": { + "properties": { + "created_at": { + "anyOf": [ + { + "$ref": "WellKnownTypes.json#/definitions/TimestampWithTimezone" + }, + { + "$ref": "WellKnownTypes.json#/definitions/String" + }, + { + "$ref": "WellKnownTypes.json#/definitions/Integer" + } + ] + } + } + }, + "jsonObject": { + "created_at": "2022-01-23T01:23:45Z" + }, + "avroSchema": { + "type": "record", + "name": "field_with_combined_restriction", + "namespace": "namespace8", + "fields": [ + { + "name": "created_at", + "type": [ + "null", + { + "type": "long", + "logicalType": "timestamp-micros" + }, + "string", + "int" + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "created_at": 1642901025000000, + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "record_with_combined_restriction_field", + "namespace": "namespace9", + "appendAirbyteFields": false, + "jsonSchema": { + "properties": { + "user": { + "type": "object", + "properties": { + "created_at": { + "anyOf": [ + { + "$ref": "WellKnownTypes.json#/definitions/TimestampWithTimezone" + }, + { + "$ref": "WellKnownTypes.json#/definitions/String" + }, + { + "$ref": "WellKnownTypes.json#/definitions/Integer" + } + ] + } + } + } + } + }, + "jsonObject": { + "user": { + "created_at": "2022-01-23T01:23:45Z" + } + }, + "avroSchema": { + "type": "record", + "name": "record_with_combined_restriction_field", + "namespace": "namespace9", + "fields": [ + { + "name": "user", + "type": [ + "null", + { + "type": "record", + "name": "user", + "namespace": "", + "fields": [ + { + "name": "created_at", + "type": [ + "null", + { + "type": "long", + "logicalType": "timestamp-micros" + }, + "string", + "int" + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "user": { + "created_at": 1642901025000000, + "_airbyte_additional_properties": null + }, + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "array_with_combined_restriction_field", + "namespace": "namespace10", + "appendAirbyteFields": false, + "jsonSchema": { + "properties": { + "identifiers": { + "type": "array", + "items": [ + { + "oneOf": [ + { + "$ref": "WellKnownTypes.json#/definitions/Integer" + }, + { + "$ref": "WellKnownTypes.json#/definitions/String" + } + ] + }, + { + "$ref": "WellKnownTypes.json#/definitions/Boolean" + } + ] + } + } + }, + "jsonObject": { + "identifiers": [151, 152, "153", "text", true, false] + }, + "avroSchema": { + "type": "record", + "name": "array_with_combined_restriction_field", + "namespace": "namespace10", + "fields": [ + { + "name": "identifiers", + "type": [ + "null", + { + "type": "array", + "items": ["null", "int", "string", "boolean"] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "identifiers": [151, 152, 153, "text", true, false], + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "field_with_bad_first_char", + "namespace": "namespace11", + "appendAirbyteFields": false, + "jsonSchema": { + "type": "object", + "properties": { + "5field_name": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + } + }, + "jsonObject": { + "_5field_name": "theory of relativity" + }, + "avroSchema": { + "type": "record", + "name": "field_with_bad_first_char", + "namespace": "namespace11", + "fields": [ + { + "name": "_5field_name", + "type": ["null", "string"], + "doc": "_airbyte_original_name:5field_name", + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "_5field_name": "theory of relativity", + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "record_with_airbyte_additional_properties", + "namespace": "namespace12", + "appendAirbyteFields": false, + "jsonSchema": { + "type": "object", + "properties": { + "node_id": { + "$ref": "WellKnownTypes.json#/definitions/String" + }, + "_airbyte_additional_properties": { + "type": "object" + } + } + }, + "jsonObject": { + "node_id": "abc123", + "_airbyte_additional_properties": { + "username": "343-guilty-spark", + "password": 1439, + "active": true + } + }, + "avroSchema": { + "type": "record", + "name": "record_with_airbyte_additional_properties", + "namespace": "namespace12", + "fields": [ + { + "name": "node_id", + "type": ["null", "string"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "node_id": "abc123", + "_airbyte_additional_properties": { + "username": "343-guilty-spark", + "password": "1439", + "active": "true" + } + } + }, + { + "schemaName": "record_with_ab_additional_properties", + "namespace": "namespace13", + "appendAirbyteFields": false, + "jsonSchema": { + "type": "object", + "properties": { + "node_id": { + "$ref": "WellKnownTypes.json#/definitions/String" + }, + "_ab_additional_properties": { + "type": "object" + } + } + }, + "jsonObject": { + "node_id": "abc123", + "_ab_additional_properties": { + "username": "343-guilty-spark", + "password": 1439, + "active": true + } + }, + "avroSchema": { + "type": "record", + "name": "record_with_ab_additional_properties", + "namespace": "namespace13", + "fields": [ + { + "name": "node_id", + "type": ["null", "string"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "node_id": "abc123", + "_airbyte_additional_properties": { + "username": "343-guilty-spark", + "password": "1439", + "active": "true" + } + } + }, + { + "schemaName": "record_without_properties", + "namespace": "namespace14", + "appendAirbyteFields": false, + "jsonSchema": { + "type": "object" + }, + "jsonObject": { + "username": "343-guilty-spark", + "password": 1439, + "active": true + }, + "avroSchema": { + "type": "record", + "name": "record_without_properties", + "namespace": "namespace14", + "fields": [ + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "_airbyte_additional_properties": { + "username": "343-guilty-spark", + "password": "1439", + "active": "true" + } + } + }, + { + "schemaName": "logical_type_date_time_fields", + "namespace": "namespace15", + "appendAirbyteFields": false, + "jsonSchema": { + "type": "object", + "properties": { + "date_time_field": { + "$ref": "WellKnownTypes.json#/definitions/TimestampWithoutTimezone" + }, + "date_field": { + "$ref": "WellKnownTypes.json#/definitions/Date" + }, + "time_field": { + "$ref": "WellKnownTypes.json#/definitions/TimeWithoutTimezone" + } + } + }, + "jsonObject": { + "date_time_field": "2021-01-01T01:01:01+01:00", + "date_field": "2021-01-01", + "time_field": "12:23:01.541" + }, + "avroSchema": { + "type": "record", + "name": "logical_type_date_time_fields", + "namespace": "namespace15", + "fields": [ + { + "name": "date_time_field", + "type": [ + "null", + { + "type": "long", + "logicalType": "timestamp-micros" + }, + "string" + ], + "default": null + }, + { + "name": "date_field", + "type": [ + "null", + { + "type": "int", + "logicalType": "date" + }, + "string" + ], + "default": null + }, + { + "name": "time_field", + "type": [ + "null", + { + "type": "long", + "logicalType": "time-micros" + }, + "string" + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "date_time_field": 1609459261000000, + "date_field": 18628, + "time_field": 44581541000, + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "schema_with_same_object_name", + "namespace": "namespace16", + "appendAirbyteFields": false, + "jsonSchema": { + "type": "object", + "properties": { + "author": { + "type": "object", + "properties": { + "id": { + "$ref": "WellKnownTypes.json#/definitions/Integer" + } + } + }, + "commit": { + "type": "object", + "properties": { + "message": { + "$ref": "WellKnownTypes.json#/definitions/String" + }, + "author": { + "type": "object", + "properties": { + "name": { + "$ref": "WellKnownTypes.json#/definitions/String" + }, + "pr": { + "type": "object", + "properties": { + "id": { + "$ref": "WellKnownTypes.json#/definitions/String" + }, + "message": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + } + } + } + } + } + } + } + }, + "jsonObject": { + "author": { + "id": 12345 + }, + "commit": { + "message": "test commit message", + "author": { + "name": "test author", + "pr": { + "id": "random id", + "message": "test pr description" + } + } + } + }, + "avroSchema": { + "type": "record", + "name": "schema_with_same_object_name", + "namespace": "namespace16", + "fields": [ + { + "name": "author", + "type": [ + "null", + { + "type": "record", + "name": "author", + "namespace": "", + "fields": [ + { + "name": "id", + "type": ["null", "int"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ], + "default": null + }, + { + "name": "commit", + "type": [ + "null", + { + "type": "record", + "name": "commit", + "namespace": "", + "fields": [ + { + "name": "message", + "type": ["null", "string"], + "default": null + }, + { + "name": "author", + "type": [ + "null", + { + "type": "record", + "name": "author", + "namespace": "commit", + "fields": [ + { + "name": "name", + "type": ["null", "string"], + "default": null + }, + { + "name": "pr", + "type": [ + "null", + { + "type": "record", + "name": "pr", + "namespace": "commit.author", + "fields": [ + { + "name": "id", + "type": ["null", "string"], + "default": null + }, + { + "name": "message", + "type": ["null", "string"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "author": { + "id": 12345, + "_airbyte_additional_properties": null + }, + "commit": { + "message": "test commit message", + "author": { + "name": "test author", + "pr": { + "id": "random id", + "message": "test pr description", + "_airbyte_additional_properties": null + }, + "_airbyte_additional_properties": null + }, + "_airbyte_additional_properties": null + }, + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "array_without_items_in_schema", + "namespace": "namespace17", + "appendAirbyteFields": false, + "jsonSchema": { + "type": "object", + "properties": { + "identifier": { + "type": "array" + } + } + }, + "jsonObject": { + "identifier": ["151", 152, true, { "id": 153 }] + }, + "avroSchema": { + "type": "record", + "name": "array_without_items_in_schema", + "namespace": "namespace17", + "fields": [ + { + "name": "identifier", + "type": [ + "null", + { + "type": "array", + "items": ["null", "string"] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": ["null", { "type": "map", "values": "string" }], + "default": null + } + ] + }, + "avroObject": { + "identifier": ["151", "152", "true", "{\"id\":153}"], + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "array_with_same_object_name", + "namespace": "namespace18", + "appendAirbyteFields": false, + "jsonSchema": { + "properties": { + "parent_object": { + "type": "object", + "properties": { + "object_array": { + "type": "array", + "items": [ + { "$ref": "WellKnownTypes.json#/definitions/Integer" }, + { "$ref": "WellKnownTypes.json#/definitions/Boolean" }, + { + "type": "object", + "properties": { + "id": { + "type": "object", + "properties": { + "id_part_1": { + "$ref": "WellKnownTypes.json#/definitions/Integer" + }, + "id_part_2": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + } + } + } + }, + { + "type": "object", + "properties": { + "id": { + "type": "object", + "properties": { + "id_part_1": { + "$ref": "WellKnownTypes.json#/definitions/String" + }, + "id_part_2": { + "$ref": "WellKnownTypes.json#/definitions/Integer" + } + } + }, + ":message": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + } + } + ] + } + } + } + } + }, + "jsonObject": { + "parent_object": { + "object_array": [ + "1234", + true, + { + "id": { + "id_part_1": "1000", + "id_part_2": "abcde" + } + }, + { + "id": { + "id_part_1": "wxyz", + "id_part_2": 2000 + }, + ":message": "test message" + } + ] + } + }, + "avroSchema": { + "type": "record", + "name": "array_with_same_object_name", + "namespace": "namespace18", + "fields": [ + { + "name": "parent_object", + "type": [ + "null", + { + "type": "record", + "name": "parent_object", + "namespace": "", + "fields": [ + { + "name": "object_array", + "type": [ + "null", + { + "type": "array", + "items": [ + "null", + "int", + "boolean", + { + "type": "record", + "name": "object_array", + "namespace": "parent_object", + "fields": [ + { + "name": "id", + "type": [ + "null", + { + "type": "record", + "namespace": "parent_object.object_array", + "name": "id", + "fields": [ + { + "name": "id_part_1", + "type": ["null", "int", "string"], + "default": null + }, + { + "name": "id_part_2", + "type": ["null", "string", "int"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ], + "default": null + }, + { + "name": "_message", + "type": ["null", "string"], + "doc": "_airbyte_original_name::message", + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "parent_object": { + "object_array": [ + 1234, + true, + { + "id": { + "id_part_1": 1000, + "id_part_2": "abcde", + "_airbyte_additional_properties": null + }, + "_message": null, + "_airbyte_additional_properties": null + }, + { + "id": { + "id_part_1": "wxyz", + "id_part_2": 2000, + "_airbyte_additional_properties": null + }, + "_message": "test message", + "_airbyte_additional_properties": null + } + ], + "_airbyte_additional_properties": null + }, + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "object_inside_array_inside_array", + "namespace": "namespace19", + "appendAirbyteFields": false, + "jsonSchema": { + "type": "object", + "properties": { + "filters": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "filterFamily": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + } + } + } + } + } + }, + "avroSchema": { + "type": "record", + "name": "object_inside_array_inside_array", + "namespace": "namespace19", + "fields": [ + { + "name": "filters", + "type": [ + "null", + { + "type": "array", + "items": [ + "null", + { + "type": "array", + "items": [ + "null", + { + "type": "record", + "name": "filters_items_items", + "namespace": "", + "doc": "_airbyte_original_name:filters.items.items", + "fields": [ + { + "name": "filterFamily", + "type": ["null", "string"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ] + } + ] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "jsonObject": { + "filters": [ + [ + { + "filterFamily": "type_a" + }, + { + "filterFamily": "type_b" + } + ], + [ + { + "filterFamily": "type_b" + } + ] + ] + }, + "avroObject": { + "filters": [ + [ + { + "filterFamily": "type_a", + "_airbyte_additional_properties": null + }, + { + "filterFamily": "type_b", + "_airbyte_additional_properties": null + } + ], + [ + { + "filterFamily": "type_b", + "_airbyte_additional_properties": null + } + ] + ], + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "array_field_with_empty_items", + "namespace": "namespace20", + "appendAirbyteFields": false, + "jsonSchema": { + "type": "object", + "properties": { + "array_field": { + "type": "array", + "items": {} + } + } + }, + "jsonObject": { + "array_field": [1234, true, "false", 0.001] + }, + "avroSchema": { + "type": "record", + "name": "array_field_with_empty_items", + "namespace": "namespace20", + "fields": [ + { + "name": "array_field", + "type": [ + "null", + { + "type": "array", + "items": ["null", "string"] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "array_field": ["1234", "true", "false", "0.001"], + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "namespace_with_special_characters", + "namespace": "namespace_with:spécial:characters", + "appendAirbyteFields": false, + "jsonSchema": { + "type": "object", + "properties": { + "node_id": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + } + }, + "jsonObject": { + "node_id": "abc123" + }, + "avroSchema": { + "type": "record", + "name": "namespace_with_special_characters", + "namespace": "namespace_with_special_characters", + "fields": [ + { + "name": "node_id", + "type": ["null", "string"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "node_id": "abc123", + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "nullable_value", + "namespace": "namespace22", + "appendAirbyteFields": false, + "jsonSchema": { + "type": "object", + "properties": { + "node_id": { + "$ref": "WellKnownTypes.json#/definitions/Number" + } + } + }, + "jsonObject": { + "node_id": null + }, + "avroSchema": { + "type": "record", + "name": "nullable_value", + "namespace": "namespace22", + "fields": [ + { + "name": "node_id", + "type": ["null", "double"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "node_id": null, + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "any_of_with_same_name", + "namespace": "namespace23", + "appendAirbyteFields": true, + "jsonSchema": { + "type": "object", + "properties": { + "same_record_name_field": { + "type": "object", + "properties": { + "sub_field_1": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + } + }, + "any_of_field": { + "anyOf": [ + { + "type": "object", + "properties": { + "same_record_name_field": { + "type": "object", + "properties": { + "sub_field_2": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + } + } + } + } + ] + } + } + }, + "jsonObject": { + "_airbyte_ab_id": "5e8f8f8f-8f8f-8f8f-8f8f-8f8f8f8f8f8f", + "_airbyte_emitted_at": 1234567890, + "same_record_name_field": null, + "any_of_field": { + "same_record_name_field": null, + "_airbyte_additional_properties": null + }, + "_airbyte_additional_properties": null + }, + "avroSchema": { + "type": "record", + "name": "any_of_with_same_name", + "namespace": "namespace23", + "fields": [ + { + "name": "_airbyte_ab_id", + "type": { + "type": "string", + "logicalType": "uuid" + } + }, + { + "name": "_airbyte_emitted_at", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + } + }, + { + "name": "same_record_name_field", + "type": [ + "null", + { + "type": "record", + "name": "same_record_name_field", + "namespace": "", + "fields": [ + { + "name": "sub_field_1", + "type": ["null", "string"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ], + "default": null + }, + { + "name": "any_of_field", + "type": [ + "null", + { + "type": "record", + "name": "any_of_field", + "namespace": "", + "fields": [ + { + "name": "same_record_name_field", + "type": [ + "null", + { + "type": "record", + "name": "same_record_name_field", + "namespace": "any_of_field", + "fields": [ + { + "name": "sub_field_2", + "type": ["null", "string"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "_airbyte_ab_id": "5e8f8f8f-8f8f-8f8f-8f8f-8f8f8f8f8f8f", + "_airbyte_emitted_at": 1234567890, + "same_record_name_field": null, + "any_of_field": { + "same_record_name_field": null, + "_airbyte_additional_properties": null + }, + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "all_of_with_same_name", + "namespace": "namespace24", + "appendAirbyteFields": true, + "jsonSchema": { + "type": "object", + "properties": { + "same_record_name_field": { + "type": "object", + "properties": { + "sub_field_1": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + } + }, + "any_of_field": { + "allOf": [ + { + "type": "object", + "properties": { + "same_record_name_field": { + "type": "object", + "properties": { + "sub_field_2": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + } + } + } + } + ] + } + } + }, + "jsonObject": { + "_airbyte_ab_id": "5e8f8f8f-8f8f-8f8f-8f8f-8f8f8f8f8f8f", + "_airbyte_emitted_at": 1234567890, + "same_record_name_field": null, + "any_of_field": { + "same_record_name_field": null, + "_airbyte_additional_properties": null + }, + "_airbyte_additional_properties": null + }, + "avroSchema": { + "type": "record", + "name": "all_of_with_same_name", + "namespace": "namespace24", + "fields": [ + { + "name": "_airbyte_ab_id", + "type": { + "type": "string", + "logicalType": "uuid" + } + }, + { + "name": "_airbyte_emitted_at", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + } + }, + { + "name": "same_record_name_field", + "type": [ + "null", + { + "type": "record", + "name": "same_record_name_field", + "namespace": "", + "fields": [ + { + "name": "sub_field_1", + "type": ["null", "string"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ], + "default": null + }, + { + "name": "any_of_field", + "type": [ + "null", + { + "type": "record", + "name": "any_of_field", + "namespace": "", + "fields": [ + { + "name": "same_record_name_field", + "type": [ + "null", + { + "type": "record", + "name": "same_record_name_field", + "namespace": "any_of_field", + "fields": [ + { + "name": "sub_field_2", + "type": ["null", "string"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "_airbyte_ab_id": "5e8f8f8f-8f8f-8f8f-8f8f-8f8f8f8f8f8f", + "_airbyte_emitted_at": 1234567890, + "same_record_name_field": null, + "any_of_field": { + "same_record_name_field": null, + "_airbyte_additional_properties": null + }, + "_airbyte_additional_properties": null + } + }, + { + "schemaName": "one_of_with_same_name", + "namespace": "namespace25", + "appendAirbyteFields": true, + "jsonSchema": { + "type": "object", + "properties": { + "same_record_name_field": { + "type": "object", + "properties": { + "sub_field_1": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + } + }, + "any_of_field": { + "anyOf": [ + { + "type": "object", + "properties": { + "same_record_name_field": { + "type": "object", + "properties": { + "sub_field_2": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + } + } + } + } + ] + } + } + }, + "jsonObject": { + "_airbyte_ab_id": "5e8f8f8f-8f8f-8f8f-8f8f-8f8f8f8f8f8f", + "_airbyte_emitted_at": 1234567890, + "same_record_name_field": null, + "any_of_field": { + "same_record_name_field": null, + "_airbyte_additional_properties": null + }, + "_airbyte_additional_properties": null + }, + "avroSchema": { + "type": "record", + "name": "one_of_with_same_name", + "namespace": "namespace25", + "fields": [ + { + "name": "_airbyte_ab_id", + "type": { + "type": "string", + "logicalType": "uuid" + } + }, + { + "name": "_airbyte_emitted_at", + "type": { + "type": "long", + "logicalType": "timestamp-millis" + } + }, + { + "name": "same_record_name_field", + "type": [ + "null", + { + "type": "record", + "name": "same_record_name_field", + "namespace": "", + "fields": [ + { + "name": "sub_field_1", + "type": ["null", "string"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ], + "default": null + }, + { + "name": "any_of_field", + "type": [ + "null", + { + "type": "record", + "name": "any_of_field", + "namespace": "", + "fields": [ + { + "name": "same_record_name_field", + "type": [ + "null", + { + "type": "record", + "name": "same_record_name_field", + "namespace": "any_of_field", + "fields": [ + { + "name": "sub_field_2", + "type": ["null", "string"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + } + ], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": [ + "null", + { + "type": "map", + "values": "string" + } + ], + "default": null + } + ] + }, + "avroObject": { + "_airbyte_ab_id": "5e8f8f8f-8f8f-8f8f-8f8f-8f8f8f8f8f8f", + "_airbyte_emitted_at": 1234567890, + "same_record_name_field": null, + "any_of_field": { + "same_record_name_field": null, + "_airbyte_additional_properties": null + }, + "_airbyte_additional_properties": null + } + } +] diff --git a/airbyte-integrations/bases/base-java-s3/src/test/resources/parquet/json_schema_converter/type_conversion_test_cases.json b/airbyte-integrations/bases/base-java-s3/src/test/resources/parquet/json_schema_converter/type_conversion_test_cases_v0.json similarity index 100% rename from airbyte-integrations/bases/base-java-s3/src/test/resources/parquet/json_schema_converter/type_conversion_test_cases.json rename to airbyte-integrations/bases/base-java-s3/src/test/resources/parquet/json_schema_converter/type_conversion_test_cases_v0.json diff --git a/airbyte-integrations/bases/base-java-s3/src/test/resources/parquet/json_schema_converter/type_conversion_test_cases_v1.json b/airbyte-integrations/bases/base-java-s3/src/test/resources/parquet/json_schema_converter/type_conversion_test_cases_v1.json new file mode 100644 index 000000000000..d6e75600e7ca --- /dev/null +++ b/airbyte-integrations/bases/base-java-s3/src/test/resources/parquet/json_schema_converter/type_conversion_test_cases_v1.json @@ -0,0 +1,245 @@ +[ + { + "fieldName": "string_field", + "jsonFieldSchema": { + "$ref": "WellKnownTypes.json#/definitions/String" + }, + "avroFieldType": ["null", "string"] + }, + { + "fieldName": "integer_field", + "jsonFieldSchema": { + "$ref": "WellKnownTypes.json#/definitions/Integer" + }, + "avroFieldType": ["null", "int"] + }, + { + "fieldName": "float_field", + "jsonFieldSchema": { + "$ref": "WellKnownTypes.json#/definitions/Number" + }, + "avroFieldType": ["null", "double"] + }, + { + "fieldName": "union_field", + "jsonFieldSchema": { + "oneOf": [ + { "$ref": "WellKnownTypes.json#/definitions/Number" }, + { "$ref": "WellKnownTypes.json#/definitions/String" } + ] + }, + "avroFieldType": ["null", "double", "string"] + }, + { + "fieldName": "array_field_single_type", + "jsonFieldSchema": { + "type": "array", + "items": { + "$ref": "WellKnownTypes.json#/definitions/String" + } + }, + "avroFieldType": [ + "null", + { + "type": "array", + "items": ["null", "string"] + } + ] + }, + { + "fieldName": "array_field_multiple_types", + "jsonFieldSchema": { + "type": "array", + "items": [ + { + "$ref": "WellKnownTypes.json#/definitions/String" + }, + { + "$ref": "WellKnownTypes.json#/definitions/Number" + }, + { + "$ref": "WellKnownTypes.json#/definitions/Integer" + } + ] + }, + "avroFieldType": [ + "null", + { + "type": "array", + "items": ["null", "string", "double", "int"] + } + ] + }, + { + "fieldName": "object_field", + "jsonFieldSchema": { + "type": "object", + "properties": { + "id": { + "$ref": "WellKnownTypes.json#/definitions/Integer" + }, + "node_id": { + "oneOf": [ + { "$ref": "WellKnownTypes.json#/definitions/Integer" }, + { "$ref": "WellKnownTypes.json#/definitions/String" } + ] + } + } + }, + "avroFieldType": [ + "null", + { + "type": "record", + "name": "object_field", + "fields": [ + { + "name": "id", + "type": ["null", "int"], + "default": null + }, + { + "name": "node_id", + "type": ["null", "int", "string"], + "default": null + }, + { + "name": "_airbyte_additional_properties", + "type": ["null", { "type": "map", "values": "string" }], + "default": null + } + ] + } + ] + }, + { + "fieldName": "object_field_without_properties", + "jsonFieldSchema": { + "type": "object" + }, + "avroFieldType": [ + "null", + { + "type": "record", + "name": "object_field_without_properties", + "fields": [ + { + "name": "_airbyte_additional_properties", + "type": ["null", { "type": "map", "values": "string" }], + "default": null + } + ] + } + ] + }, + { + "fieldName": "_airbyte_additional_properties", + "jsonFieldSchema": { + "type": "object" + }, + "avroFieldType": ["null", { "type": "map", "values": "string" }] + }, + { + "fieldName": "_ab_additional_properties", + "jsonFieldSchema": { + "type": "object" + }, + "avroFieldType": ["null", { "type": "map", "values": "string" }] + }, + { + "fieldName": "any_of_field", + "jsonFieldSchema": { + "anyOf": [ + { "$ref": "WellKnownTypes.json#/definitions/String" }, + { "$ref": "WellKnownTypes.json#/definitions/Integer" }, + { "$ref": "WellKnownTypes.json#/definitions/Number" } + ] + }, + "avroFieldType": ["null", "string", "int", "double"] + }, + { + "fieldName": "all_of_field", + "jsonFieldSchema": { + "allOf": [ + { "$ref": "WellKnownTypes.json#/definitions/String" }, + { "$ref": "WellKnownTypes.json#/definitions/Integer" }, + { "$ref": "WellKnownTypes.json#/definitions/Number" } + ] + }, + "avroFieldType": ["null", "string", "int", "double"] + }, + { + "fieldName": "one_of_field", + "jsonFieldSchema": { + "oneOf": [ + { "$ref": "WellKnownTypes.json#/definitions/String" }, + { "$ref": "WellKnownTypes.json#/definitions/Integer" } + ] + }, + "avroFieldType": ["null", "string", "int"] + }, + { + "fieldName": "logical_type_date_time", + "jsonFieldSchema": { + "$ref": "WellKnownTypes.json#/definitions/TimestampWithTimezone" + }, + "avroFieldType": [ + "null", + { "type": "long", "logicalType": "timestamp-micros" }, + "string" + ] + }, + { + "fieldName": "logical_type_date", + "jsonFieldSchema": { + "$ref": "WellKnownTypes.json#/definitions/Date" + }, + "avroFieldType": [ + "null", + { "type": "int", "logicalType": "date" }, + "string" + ] + }, + { + "fieldName": "logical_type_time", + "jsonFieldSchema": { + "$ref": "WellKnownTypes.json#/definitions/TimeWithTimezone" + }, + "avroFieldType": [ + "null", + { "type": "long", "logicalType": "time-micros" }, + "string" + ] + }, + { + "fieldName": "array_field_without_items", + "jsonFieldSchema": { + "type": "array" + }, + "avroFieldType": [ + "null", + { + "type": "array", + "items": ["null", "string"] + } + ] + }, + { + "fieldName": "array_field_with_empty_items", + "jsonFieldSchema": { + "type": "array", + "items": {} + }, + "avroFieldType": [ + "null", + { + "type": "array", + "items": ["null", "string"] + } + ] + }, + { + "fieldName": "field_without_type", + "jsonFieldSchema": {}, + "avroFieldType": ["null", "string"] + } +] diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/BaseConnector.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/BaseConnector.java index 7a784b16bb64..4b613a783536 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/BaseConnector.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/BaseConnector.java @@ -7,7 +7,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; import io.airbyte.integrations.base.Integration; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; public abstract class BaseConnector implements Integration { 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 77c30edbf3e9..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 @@ -6,11 +6,11 @@ import io.airbyte.commons.concurrency.VoidCallable; import io.airbyte.commons.functional.CheckedConsumer; -import io.airbyte.protocol.models.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; /** * Interface for the destination's consumption of incoming records wrapped in an - * {@link io.airbyte.protocol.models.AirbyteMessage}. + * {@link io.airbyte.protocol.models.v0.AirbyteMessage}. * * This is via the accept method, which commonly handles parsing, validation, batching and writing * of the transformed data to the final destination i.e. the technical system data is being written @@ -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/base/Integration.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/Integration.java index fdca6ef6b276..9468f82f25c6 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/Integration.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/Integration.java @@ -5,8 +5,8 @@ package io.airbyte.integrations.base; import com.fasterxml.jackson.databind.JsonNode; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.ConnectorSpecification; public interface Integration { diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/IntegrationRunner.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/IntegrationRunner.java index cda5830460e1..104496fe859f 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/IntegrationRunner.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/IntegrationRunner.java @@ -15,10 +15,10 @@ import io.airbyte.commons.string.Strings; import io.airbyte.commons.util.AutoCloseableIterator; import io.airbyte.integrations.util.ConnectorExceptionUtil; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.validation.json.JsonSchemaValidator; import java.nio.charset.StandardCharsets; import java.nio.file.Path; diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/Source.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/Source.java index 42a2d143ef79..1373c86219f4 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/Source.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/Source.java @@ -6,9 +6,9 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.commons.util.AutoCloseableIterator; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; public interface Source extends Integration { diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/spec_modification/SpecModifyingDestination.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/spec_modification/SpecModifyingDestination.java index 4c6e7509f1aa..5254fd57001b 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/spec_modification/SpecModifyingDestination.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/spec_modification/SpecModifyingDestination.java @@ -7,10 +7,10 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.util.function.Consumer; public abstract class SpecModifyingDestination implements Destination { diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/spec_modification/SpecModifyingSource.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/spec_modification/SpecModifyingSource.java index 1bf4ffc6407a..0c2c3502f51d 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/spec_modification/SpecModifyingSource.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/spec_modification/SpecModifyingSource.java @@ -7,11 +7,11 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.commons.util.AutoCloseableIterator; import io.airbyte.integrations.base.Source; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; +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.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConnectorSpecification; /** * In some cases we want to prune or mutate the spec for an existing source. The common case is that diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/ssh/SshHelpers.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/ssh/SshHelpers.java index f1b0f30a47bb..e169b6f27803 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/ssh/SshHelpers.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/ssh/SshHelpers.java @@ -7,7 +7,7 @@ import com.fasterxml.jackson.databind.node.ObjectNode; import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.io.IOException; public class SshHelpers { diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/ssh/SshWrappedDestination.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/ssh/SshWrappedDestination.java index 56b489d8eaca..b3571c5540b7 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/ssh/SshWrappedDestination.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/ssh/SshWrappedDestination.java @@ -11,11 +11,11 @@ import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.AirbyteTraceMessageUtility; import io.airbyte.integrations.base.Destination; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; +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.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.util.List; import java.util.function.Consumer; import org.slf4j.Logger; diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/ssh/SshWrappedSource.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/ssh/SshWrappedSource.java index 1c955ab09f65..ad3fefb785a3 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/ssh/SshWrappedSource.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/ssh/SshWrappedSource.java @@ -9,12 +9,12 @@ import io.airbyte.commons.util.AutoCloseableIterators; import io.airbyte.integrations.base.AirbyteTraceMessageUtility; import io.airbyte.integrations.base.Source; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; +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.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.util.List; import org.slf4j.Logger; import org.slf4j.LoggerFactory; 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 dc4933063303..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 @@ -15,11 +15,11 @@ import io.airbyte.integrations.destination.dest_state_lifecycle_manager.DefaultDestStateLifecycleManager; import io.airbyte.integrations.destination.dest_state_lifecycle_manager.DestStateLifecycleManager; import io.airbyte.integrations.destination.record_buffer.BufferingStrategy; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.HashMap; import java.util.Map; import java.util.Set; @@ -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/buffered_stream_consumer/CheckAndRemoveRecordWriter.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/CheckAndRemoveRecordWriter.java index e399d2c01cd8..b3ba31ca9836 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/CheckAndRemoveRecordWriter.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/CheckAndRemoveRecordWriter.java @@ -4,7 +4,7 @@ package io.airbyte.integrations.destination.buffered_stream_consumer; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; @FunctionalInterface public interface CheckAndRemoveRecordWriter { diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/RecordSizeEstimator.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/RecordSizeEstimator.java index aeebd06e74c3..5ccb3a59b33a 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/RecordSizeEstimator.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/RecordSizeEstimator.java @@ -7,7 +7,7 @@ import com.fasterxml.jackson.databind.JsonNode; import com.google.common.annotations.VisibleForTesting; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.util.HashMap; import java.util.Map; diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/RecordWriter.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/RecordWriter.java index f8296dc65ff4..3e8ffc8eb92d 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/RecordWriter.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/RecordWriter.java @@ -5,7 +5,7 @@ package io.airbyte.integrations.destination.buffered_stream_consumer; import io.airbyte.commons.functional.CheckedBiConsumer; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import java.util.List; public interface RecordWriter extends CheckedBiConsumer, Exception> { diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/StreamDateFormatter.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/StreamDateFormatter.java index 52d27061c60b..cb5718ee211e 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/StreamDateFormatter.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/StreamDateFormatter.java @@ -4,7 +4,7 @@ package io.airbyte.integrations.destination.buffered_stream_consumer; -import io.airbyte.protocol.models.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; /** * Allows specifying transformation logic from Airbyte Json to String. 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 0482e63ebd76..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 @@ -6,9 +6,9 @@ import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Preconditions; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteStateMessage.AirbyteStateType; import java.util.Queue; import java.util.function.Supplier; @@ -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 79096c009f23..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 @@ -5,7 +5,7 @@ package io.airbyte.integrations.destination.dest_state_lifecycle_manager; import com.google.common.annotations.VisibleForTesting; -import io.airbyte.protocol.models.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; import java.util.Collections; import java.util.LinkedList; import java.util.List; @@ -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/DestStateLifecycleManager.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestStateLifecycleManager.java index 8db820c3dbe8..fe461f94a403 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestStateLifecycleManager.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestStateLifecycleManager.java @@ -4,7 +4,7 @@ package io.airbyte.integrations.destination.dest_state_lifecycle_manager; -import io.airbyte.protocol.models.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; import java.util.Queue; /** 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 8311e0adcb2e..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 @@ -6,9 +6,9 @@ import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Preconditions; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.StreamDescriptor; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage.AirbyteStateType; +import io.airbyte.protocol.models.v0.StreamDescriptor; import java.util.Comparator; import java.util.HashMap; import java.util.LinkedList; @@ -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/BaseSerializedBuffer.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/BaseSerializedBuffer.java index fe95b43b73d4..8a5334b9cbe9 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/BaseSerializedBuffer.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/BaseSerializedBuffer.java @@ -5,7 +5,7 @@ package io.airbyte.integrations.destination.record_buffer; import com.google.common.io.CountingOutputStream; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.io.File; import java.io.IOException; import java.io.InputStream; 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 6483c0f9867b..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 @@ -4,8 +4,8 @@ package io.airbyte.integrations.destination.record_buffer; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; /** * High-level interface used by @@ -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/InMemoryRecordBufferingStrategy.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/InMemoryRecordBufferingStrategy.java index ebb4151ebf56..8068fd8f28d3 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/InMemoryRecordBufferingStrategy.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/InMemoryRecordBufferingStrategy.java @@ -7,9 +7,9 @@ import io.airbyte.integrations.destination.buffered_stream_consumer.CheckAndRemoveRecordWriter; import io.airbyte.integrations.destination.buffered_stream_consumer.RecordSizeEstimator; import io.airbyte.integrations.destination.buffered_stream_consumer.RecordWriter; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import java.util.ArrayList; import java.util.HashMap; import java.util.List; diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/SerializableBuffer.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/SerializableBuffer.java index b75b971407c2..9d02524606d7 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/SerializableBuffer.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/SerializableBuffer.java @@ -4,7 +4,7 @@ package io.airbyte.integrations.destination.record_buffer; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; 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 9ab420a23126..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 @@ -7,9 +7,9 @@ import io.airbyte.commons.functional.CheckedBiConsumer; import io.airbyte.commons.functional.CheckedBiFunction; import io.airbyte.commons.string.Strings; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.ArrayList; import java.util.HashMap; import java.util.List; @@ -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 CheckedBiFunction> configErrorPredicates = - List.of(getConfigErrorPredicate(), getConnectionErrorPredicate(), isRecoveryConnectionExceptionPredicate()); + List.of(getConfigErrorPredicate(), getConnectionErrorPredicate(), + isRecoveryConnectionExceptionPredicate(), isUnknownColumnInFieldListException()); public static boolean isConfigError(final Throwable e) { return configErrorPredicates.stream().anyMatch(predicate -> predicate.test(e)); @@ -36,6 +38,8 @@ public static String getDisplayMessage(final Throwable e) { return ErrorMessage.getErrorMessage(connEx.getStateCode(), connEx.getErrorCode(), connEx.getExceptionMessage(), connEx); } else if (isRecoveryConnectionExceptionPredicate().test(e)) { return RECOVERY_CONNECTION_ERROR_MESSAGE; + } else if (isUnknownColumnInFieldListException().test(e)) { + return e.getMessage(); } else { return String.format(COMMON_EXCEPTION_MESSAGE_TEMPLATE, e.getMessage() != null ? e.getMessage() : ""); } @@ -71,4 +75,14 @@ private static Predicate isRecoveryConnectionExceptionPredicate() { .contains("due to conflict with recovery"); } + private static Predicate isUnknownColumnInFieldListException() { + return e -> e instanceof SQLSyntaxErrorException + && e.getMessage() + .toLowerCase(Locale.ROOT) + .contains("unknown column") + && e.getMessage() + .toLowerCase(Locale.ROOT) + .contains("in 'field list'"); + } + } diff --git a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/base/AirbyteTraceMessageUtilityTest.java b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/base/AirbyteTraceMessageUtilityTest.java index 0c5351552899..f8a6cc1f7741 100644 --- a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/base/AirbyteTraceMessageUtilityTest.java +++ b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/base/AirbyteTraceMessageUtilityTest.java @@ -6,7 +6,7 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.AirbyteErrorTraceMessage.FailureType; +import io.airbyte.protocol.models.v0.AirbyteErrorTraceMessage.FailureType; import java.io.ByteArrayOutputStream; import java.io.PrintStream; import java.nio.charset.StandardCharsets; diff --git a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/base/FailureTrackingAirbyteMessageConsumerTest.java b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/base/FailureTrackingAirbyteMessageConsumerTest.java index 2a4210b6f900..7ef0e78ea3a4 100644 --- a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/base/FailureTrackingAirbyteMessageConsumerTest.java +++ b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/base/FailureTrackingAirbyteMessageConsumerTest.java @@ -12,8 +12,8 @@ import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage.Type; import org.junit.jupiter.api.Test; class FailureTrackingAirbyteMessageConsumerTest { diff --git a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/base/IntegrationRunnerTest.java b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/base/IntegrationRunnerTest.java index eb00200a72f6..db431ad5bdd4 100644 --- a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/base/IntegrationRunnerTest.java +++ b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/base/IntegrationRunnerTest.java @@ -27,17 +27,17 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.util.AutoCloseableIterators; import io.airbyte.commons.util.MoreIterators; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; +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.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +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.validation.json.JsonSchemaValidator; import java.io.ByteArrayInputStream; import java.io.IOException; diff --git a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/buffered_stream_consumer/BufferedStreamConsumerTest.java b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/buffered_stream_consumer/BufferedStreamConsumerTest.java index 0a2561e94086..26332dd2a4e2 100644 --- a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/buffered_stream_consumer/BufferedStreamConsumerTest.java +++ b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/buffered_stream_consumer/BufferedStreamConsumerTest.java @@ -21,15 +21,15 @@ import io.airbyte.commons.functional.CheckedFunction; import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.destination.record_buffer.InMemoryRecordBufferingStrategy; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; 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.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.CatalogHelpers; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.time.Instant; import java.util.Collection; import java.util.List; diff --git a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/buffered_stream_consumer/RecordSizeEstimatorTest.java b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/buffered_stream_consumer/RecordSizeEstimatorTest.java index ad5c066f4ad9..7edc9750c2e5 100644 --- a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/buffered_stream_consumer/RecordSizeEstimatorTest.java +++ b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/buffered_stream_consumer/RecordSizeEstimatorTest.java @@ -8,7 +8,7 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import org.junit.jupiter.api.Test; class RecordSizeEstimatorTest { diff --git a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DefaultDestStateLifecycleManagerTest.java b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DefaultDestStateLifecycleManagerTest.java index f92ee2828045..7e3d355a594c 100644 --- a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DefaultDestStateLifecycleManagerTest.java +++ b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DefaultDestStateLifecycleManagerTest.java @@ -8,12 +8,12 @@ import static org.mockito.Mockito.mock; import static org.mockito.Mockito.verify; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.AirbyteStreamState; -import io.airbyte.protocol.models.StreamDescriptor; +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.AirbyteStateMessage.AirbyteStateType; +import io.airbyte.protocol.models.v0.AirbyteStreamState; +import io.airbyte.protocol.models.v0.StreamDescriptor; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; diff --git a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestSingleStateLifecycleManagerTest.java b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestSingleStateLifecycleManagerTest.java index c027aa8da483..24c95f0f4f4d 100644 --- a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestSingleStateLifecycleManagerTest.java +++ b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestSingleStateLifecycleManagerTest.java @@ -8,10 +8,10 @@ import static org.junit.jupiter.api.Assertions.assertTrue; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; +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.AirbyteStateMessage.AirbyteStateType; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; diff --git a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestStreamStateLifecycleManagerTest.java b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestStreamStateLifecycleManagerTest.java index 8894cb133437..4528fa077c04 100644 --- a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestStreamStateLifecycleManagerTest.java +++ b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestStreamStateLifecycleManagerTest.java @@ -7,12 +7,12 @@ import static org.junit.jupiter.api.Assertions.*; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.AirbyteStreamState; -import io.airbyte.protocol.models.StreamDescriptor; +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.AirbyteStateMessage.AirbyteStateType; +import io.airbyte.protocol.models.v0.AirbyteStreamState; +import io.airbyte.protocol.models.v0.StreamDescriptor; import java.util.LinkedList; import java.util.List; import org.junit.jupiter.api.BeforeEach; diff --git a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/record_buffer/InMemoryRecordBufferingStrategyTest.java b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/record_buffer/InMemoryRecordBufferingStrategyTest.java index 3a611c3c35f6..e2e1ce1f9bce 100644 --- a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/record_buffer/InMemoryRecordBufferingStrategyTest.java +++ b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/record_buffer/InMemoryRecordBufferingStrategyTest.java @@ -13,9 +13,9 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.destination.buffered_stream_consumer.RecordWriter; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import java.util.List; import org.junit.jupiter.api.Test; diff --git a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/record_buffer/SerializedBufferingStrategyTest.java b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/record_buffer/SerializedBufferingStrategyTest.java index 37497324c002..2c4929cd2da4 100644 --- a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/record_buffer/SerializedBufferingStrategyTest.java +++ b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/destination/record_buffer/SerializedBufferingStrategyTest.java @@ -17,10 +17,10 @@ import io.airbyte.commons.functional.CheckedBiConsumer; import io.airbyte.commons.functional.CheckedBiFunction; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; diff --git a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/util/ConnectorExceptionUtilTest.java b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/util/ConnectorExceptionUtilTest.java index 2b040478b585..7f20aabaedbe 100644 --- a/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/util/ConnectorExceptionUtilTest.java +++ b/airbyte-integrations/bases/base-java/src/test/java/io/airbyte/integrations/util/ConnectorExceptionUtilTest.java @@ -11,6 +11,7 @@ import io.airbyte.commons.exceptions.ConfigErrorException; import io.airbyte.commons.exceptions.ConnectionErrorException; import java.sql.SQLException; +import java.sql.SQLSyntaxErrorException; import org.junit.jupiter.api.Test; class ConnectorExceptionUtilTest { @@ -19,6 +20,7 @@ class ConnectorExceptionUtilTest { public static final String RECOVERY_EXCEPTION_MESSAGE = "FATAL: terminating connection due to conflict with recovery"; public static final String COMMON_EXCEPTION_MESSAGE = "something happens with connection"; public static final String CONNECTION_ERROR_MESSAGE_TEMPLATE = "State code: %s; Error code: %s; Message: %s"; + public static final String UNKNOWN_COLUMN_SQL_EXCEPTION_MESSAGE = "Unknown column 'table.column' in 'field list'"; @Test() void isConfigErrorForConfigException() { @@ -39,6 +41,12 @@ void isConfigErrorForRecoveryPSQLException() { assertTrue(ConnectorExceptionUtil.isConfigError(recoveryPSQLException)); } + @Test + void isConfigErrorForUnknownColumnSQLSyntaxErrorException() { + SQLSyntaxErrorException unknownColumnSQLSyntaxErrorException = new SQLSyntaxErrorException(UNKNOWN_COLUMN_SQL_EXCEPTION_MESSAGE); + assertTrue(ConnectorExceptionUtil.isConfigError(unknownColumnSQLSyntaxErrorException)); + } + @Test void isConfigErrorForCommonSQLException() { SQLException recoveryPSQLException = new SQLException(COMMON_EXCEPTION_MESSAGE); @@ -73,6 +81,13 @@ void getDisplayMessageForRecoveryException() { assertEquals(RECOVERY_CONNECTION_ERROR_MESSAGE, actualDisplayMessage); } + @Test + void getDisplayMessageForUnknownSQLErrorException() { + SQLSyntaxErrorException unknownColumnSQLSyntaxErrorException = new SQLSyntaxErrorException(UNKNOWN_COLUMN_SQL_EXCEPTION_MESSAGE); + String actualDisplayMessage = ConnectorExceptionUtil.getDisplayMessage(unknownColumnSQLSyntaxErrorException); + assertEquals(UNKNOWN_COLUMN_SQL_EXCEPTION_MESSAGE, actualDisplayMessage); + } + @Test void getDisplayMessageForCommonException() { Exception exception = new SQLException(COMMON_EXCEPTION_MESSAGE); @@ -99,6 +114,16 @@ void getRootConfigErrorFromRecoverySQLException() { assertEquals(recoveryException, actualRootConfigError); } + @Test + void getRootConfigErrorFromUnknownSQLErrorException() { + SQLException unknownSQLErrorException = new SQLSyntaxErrorException(UNKNOWN_COLUMN_SQL_EXCEPTION_MESSAGE); + RuntimeException runtimeException = new RuntimeException(COMMON_EXCEPTION_MESSAGE, unknownSQLErrorException); + Exception exception = new Exception(runtimeException); + + Throwable actualRootConfigError = ConnectorExceptionUtil.getRootConfigError(exception); + assertEquals(unknownSQLErrorException, actualRootConfigError); + } + @Test void getRootConfigErrorFromNonConfigException() { SQLException configErrorException = new SQLException(CONFIG_EXCEPTION_MESSAGE); diff --git a/airbyte-integrations/bases/base-standard-source-test-file/src/main/java/io/airbyte/integrations/standardtest/source/fs/ExecutableTestSource.java b/airbyte-integrations/bases/base-standard-source-test-file/src/main/java/io/airbyte/integrations/standardtest/source/fs/ExecutableTestSource.java index 765d1e720496..8dc734690a00 100644 --- a/airbyte-integrations/bases/base-standard-source-test-file/src/main/java/io/airbyte/integrations/standardtest/source/fs/ExecutableTestSource.java +++ b/airbyte-integrations/bases/base-standard-source-test-file/src/main/java/io/airbyte/integrations/standardtest/source/fs/ExecutableTestSource.java @@ -9,8 +9,8 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.nio.file.Path; import javax.annotation.Nullable; diff --git a/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/AirbyteDebeziumHandler.java b/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/AirbyteDebeziumHandler.java index 36400e876c16..a13e8b9ec7d7 100644 --- a/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/AirbyteDebeziumHandler.java +++ b/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/AirbyteDebeziumHandler.java @@ -13,10 +13,10 @@ import io.airbyte.integrations.debezium.internals.DebeziumEventUtils; import io.airbyte.integrations.debezium.internals.DebeziumRecordIterator; import io.airbyte.integrations.debezium.internals.DebeziumRecordPublisher; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.SyncMode; import io.debezium.engine.ChangeEvent; import java.time.Duration; import java.time.Instant; diff --git a/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/CdcStateHandler.java b/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/CdcStateHandler.java index 2d5e70f7a6d1..92a11d9b71ef 100644 --- a/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/CdcStateHandler.java +++ b/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/CdcStateHandler.java @@ -4,7 +4,7 @@ package io.airbyte.integrations.debezium; -import io.airbyte.protocol.models.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; import java.util.Map; /** diff --git a/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/DebeziumEventUtils.java b/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/DebeziumEventUtils.java index 815ee8e30c9d..178015d1e300 100644 --- a/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/DebeziumEventUtils.java +++ b/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/DebeziumEventUtils.java @@ -8,8 +8,8 @@ import com.fasterxml.jackson.databind.node.ObjectNode; import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.debezium.CdcMetadataInjector; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.debezium.engine.ChangeEvent; import java.sql.Timestamp; import java.time.Instant; diff --git a/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/DebeziumPropertiesManager.java b/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/DebeziumPropertiesManager.java index ec243b362793..f702428c6db0 100644 --- a/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/DebeziumPropertiesManager.java +++ b/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/DebeziumPropertiesManager.java @@ -6,9 +6,9 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.db.jdbc.JdbcUtils; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.SyncMode; import java.util.Iterator; import java.util.Optional; import java.util.Properties; diff --git a/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/DebeziumRecordIterator.java b/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/DebeziumRecordIterator.java index a244eab227d7..292171497208 100644 --- a/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/DebeziumRecordIterator.java +++ b/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/DebeziumRecordIterator.java @@ -49,6 +49,7 @@ public class DebeziumRecordIterator extends AbstractIterator> queue, final CdcTargetPosition targetPosition, @@ -66,6 +67,7 @@ public DebeziumRecordIterator(final LinkedBlockingQueue computeNext() { // emitted. while (!MoreBooleans.isTruthy(publisherStatusSupplier.get()) || !queue.isEmpty()) { final ChangeEvent next; + + // #18987: waitTime is still required with heartbeats for backward + // compatibility with connectors not implementing heartbeat + // yet (MySql, MSSql), And also due to postgres taking a long time + // initially staying on "searching for WAL resume position" + final Duration waitTime = receivedFirstRecord ? SUBSEQUENT_RECORD_WAIT_TIME : this.firstRecordWaitTime; try { - // #18987: waitTime is still required with heartbeats for backward - // compatibility with connectors not implementing heartbeat - // yet (MySql, MSSql), And also due to postgres taking a long time - // initially staying on "searching for WAL resume position" - final Duration waitTime = receivedFirstRecord ? SUBSEQUENT_RECORD_WAIT_TIME : this.firstRecordWaitTime; next = queue.poll(waitTime.getSeconds(), TimeUnit.SECONDS); } catch (final InterruptedException e) { throw new RuntimeException(e); @@ -99,9 +102,12 @@ protected ChangeEvent computeNext() { // position" // when no changes exist. In that case queue will pop after timeout with null value for next if (next == null) { - LOGGER.info("Closing: queue returned null event"); - requestClose(); + if ((!receivedFirstRecord || hasSnapshotFinished || maxInstanceOfNoRecordsFound >= 10) && !signalledClose) { + LOGGER.info("No records were returned by Debezium in the timeout seconds {}, closing the engine and iterator", waitTime.getSeconds()); + requestClose(); + } LOGGER.info("no record found. polling again."); + maxInstanceOfNoRecordsFound++; continue; } @@ -113,7 +119,7 @@ protected ChangeEvent computeNext() { // wrap up sync if heartbeat position crossed the target OR heartbeat position hasn't changed for // too long if (targetPosition.reachedTargetPosition(heartbeatPos) - || (heartbeatPos.equals(this.lastHeartbeatPosition) && heartbeatPosNotChanging())) { + || (heartbeatPos.equals(this.lastHeartbeatPosition) && heartbeatPosNotChanging()) && !signalledClose) { LOGGER.info("Closing: Heartbeat indicates sync is done"); requestClose(); } @@ -136,7 +142,8 @@ protected ChangeEvent computeNext() { } this.tsLastHeartbeat = null; this.lastHeartbeatPosition = null; - receivedFirstRecord = true; + this.receivedFirstRecord = true; + this.maxInstanceOfNoRecordsFound = 0; return next; } return endOfData(); diff --git a/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/DebeziumRecordPublisher.java b/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/DebeziumRecordPublisher.java index 1c7d3b336ff1..20b27f65079b 100644 --- a/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/DebeziumRecordPublisher.java +++ b/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/DebeziumRecordPublisher.java @@ -5,7 +5,7 @@ package io.airbyte.integrations.debezium.internals; import com.fasterxml.jackson.databind.JsonNode; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.debezium.engine.ChangeEvent; import io.debezium.engine.DebeziumEngine; import io.debezium.engine.format.Json; diff --git a/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/PostgresDebeziumStateUtil.java b/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/PostgresDebeziumStateUtil.java index 9807233560a7..5750d9a36fe1 100644 --- a/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/PostgresDebeziumStateUtil.java +++ b/airbyte-integrations/bases/debezium-v1-9-6/src/main/java/io/airbyte/integrations/debezium/internals/PostgresDebeziumStateUtil.java @@ -8,7 +8,7 @@ import static io.debezium.connector.postgresql.SourceInfo.LSN_KEY; import com.fasterxml.jackson.databind.JsonNode; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.debezium.config.Configuration; import io.debezium.connector.common.OffsetReader; import io.debezium.connector.postgresql.PostgresConnectorConfig; diff --git a/airbyte-integrations/bases/debezium-v1-9-6/src/test/java/io/airbyte/integrations/debezium/AirbyteDebeziumHandlerTest.java b/airbyte-integrations/bases/debezium-v1-9-6/src/test/java/io/airbyte/integrations/debezium/AirbyteDebeziumHandlerTest.java index 45d50612f792..c7cceb17beef 100644 --- a/airbyte-integrations/bases/debezium-v1-9-6/src/test/java/io/airbyte/integrations/debezium/AirbyteDebeziumHandlerTest.java +++ b/airbyte-integrations/bases/debezium-v1-9-6/src/test/java/io/airbyte/integrations/debezium/AirbyteDebeziumHandlerTest.java @@ -5,12 +5,12 @@ package io.airbyte.integrations.debezium; import com.google.common.collect.Lists; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteCatalog; +import io.airbyte.protocol.models.v0.CatalogHelpers; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.SyncMode; import java.util.List; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/airbyte-integrations/bases/debezium-v1-9-6/src/test/java/io/airbyte/integrations/debezium/DebeziumEventUtilsTest.java b/airbyte-integrations/bases/debezium-v1-9-6/src/test/java/io/airbyte/integrations/debezium/DebeziumEventUtilsTest.java index 4de1b36524dd..935c632f3c3e 100644 --- a/airbyte-integrations/bases/debezium-v1-9-6/src/test/java/io/airbyte/integrations/debezium/DebeziumEventUtilsTest.java +++ b/airbyte-integrations/bases/debezium-v1-9-6/src/test/java/io/airbyte/integrations/debezium/DebeziumEventUtilsTest.java @@ -13,8 +13,8 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; import io.airbyte.integrations.debezium.internals.DebeziumEventUtils; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.debezium.engine.ChangeEvent; import java.io.IOException; import java.time.Instant; diff --git a/airbyte-integrations/bases/debezium-v1-9-6/src/test/java/io/airbyte/integrations/debezium/DebeziumRecordPublisherTest.java b/airbyte-integrations/bases/debezium-v1-9-6/src/test/java/io/airbyte/integrations/debezium/DebeziumRecordPublisherTest.java index 253469fede89..a03193421383 100644 --- a/airbyte-integrations/bases/debezium-v1-9-6/src/test/java/io/airbyte/integrations/debezium/DebeziumRecordPublisherTest.java +++ b/airbyte-integrations/bases/debezium-v1-9-6/src/test/java/io/airbyte/integrations/debezium/DebeziumRecordPublisherTest.java @@ -10,11 +10,11 @@ import com.google.common.collect.ImmutableList; import io.airbyte.integrations.debezium.internals.DebeziumPropertiesManager; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.CatalogHelpers; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.SyncMode; import java.util.regex.Pattern; import org.junit.jupiter.api.Test; diff --git a/airbyte-integrations/bases/debezium-v1-9-6/src/test/java/io/airbyte/integrations/debezium/internals/PostgresDebeziumStateUtilTest.java b/airbyte-integrations/bases/debezium-v1-9-6/src/test/java/io/airbyte/integrations/debezium/internals/PostgresDebeziumStateUtilTest.java index c3ad7c5b3cf4..25b850418992 100644 --- a/airbyte-integrations/bases/debezium-v1-9-6/src/test/java/io/airbyte/integrations/debezium/internals/PostgresDebeziumStateUtilTest.java +++ b/airbyte-integrations/bases/debezium-v1-9-6/src/test/java/io/airbyte/integrations/debezium/internals/PostgresDebeziumStateUtilTest.java @@ -8,7 +8,7 @@ import com.google.common.collect.ImmutableMap; import io.airbyte.commons.json.Jsons; import io.airbyte.db.jdbc.JdbcUtils; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.List; import java.util.Properties; import org.junit.jupiter.api.Assertions; diff --git a/airbyte-integrations/bases/debezium-v1-9-6/src/testFixtures/java/io/airbyte/integrations/debezium/CdcSourceTest.java b/airbyte-integrations/bases/debezium-v1-9-6/src/testFixtures/java/io/airbyte/integrations/debezium/CdcSourceTest.java index e5bf1cfd93df..10d2355284b8 100644 --- a/airbyte-integrations/bases/debezium-v1-9-6/src/testFixtures/java/io/airbyte/integrations/debezium/CdcSourceTest.java +++ b/airbyte-integrations/bases/debezium-v1-9-6/src/testFixtures/java/io/airbyte/integrations/debezium/CdcSourceTest.java @@ -21,21 +21,21 @@ import io.airbyte.commons.util.AutoCloseableIterators; import io.airbyte.db.Database; import io.airbyte.integrations.base.Source; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamState; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.StreamDescriptor; -import io.airbyte.protocol.models.SyncMode; +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.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteStreamState; +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.StreamDescriptor; +import io.airbyte.protocol.models.v0.SyncMode; import java.sql.SQLException; import java.util.ArrayList; import java.util.Collections; diff --git a/airbyte-integrations/bases/s3-destination-base-integration-test/build.gradle b/airbyte-integrations/bases/s3-destination-base-integration-test/build.gradle index c39130f24999..3a0c06738db8 100644 --- a/airbyte-integrations/bases/s3-destination-base-integration-test/build.gradle +++ b/airbyte-integrations/bases/s3-destination-base-integration-test/build.gradle @@ -32,7 +32,7 @@ dependencies { exclude group: 'org.slf4j', module: 'slf4j-reload4j' } implementation ('org.apache.parquet:parquet-avro:1.12.3') { exclude group: 'org.slf4j', module: 'slf4j-log4j12'} - implementation ('com.github.airbytehq:json-avro-converter:1.0.1') { exclude group: 'ch.qos.logback', module: 'logback-classic'} + implementation ('com.github.airbytehq:json-avro-converter:1.1.0') { exclude group: 'ch.qos.logback', module: 'logback-classic'} implementation project(':airbyte-integrations:bases:standard-destination-test') } diff --git a/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3AvroParquetDestinationAcceptanceTest.java b/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3AvroParquetDestinationAcceptanceTest.java index e16f04b1d2a1..e0b67ab2d9aa 100644 --- a/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3AvroParquetDestinationAcceptanceTest.java +++ b/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3AvroParquetDestinationAcceptanceTest.java @@ -11,11 +11,11 @@ import io.airbyte.commons.resources.MoreResources; import io.airbyte.integrations.destination.s3.avro.JsonSchemaType; import io.airbyte.integrations.standardtest.destination.argproviders.NumberDataTypeTestArgumentProvider; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.v0.CatalogHelpers; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.io.IOException; import java.util.Arrays; import java.util.List; @@ -84,7 +84,7 @@ private JsonNode getJsonNode(AirbyteStream stream, String name) { } private Set getExpectedSchemaType(JsonNode fieldDefinition) { - final JsonNode typeProperty = fieldDefinition.get("type"); + final JsonNode typeProperty = fieldDefinition.get("type") == null ? fieldDefinition.get("$ref") : fieldDefinition.get("type"); final JsonNode airbyteTypeProperty = fieldDefinition.get("airbyte_type"); final String airbyteTypePropertyText = airbyteTypeProperty == null ? null : airbyteTypeProperty.asText(); return Arrays.stream(JsonSchemaType.values()) diff --git a/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3BaseAvroDestinationAcceptanceTest.java b/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3BaseAvroDestinationAcceptanceTest.java index 3e68f37bb13b..c2f4e4f133f6 100644 --- a/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3BaseAvroDestinationAcceptanceTest.java +++ b/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3BaseAvroDestinationAcceptanceTest.java @@ -73,7 +73,7 @@ protected List retrieveRecords(final TestDestinationEnv testEnv, @Override protected TestDataComparator getTestDataComparator() { - return new S3AvroParquetTestDataComparator(); + return new S3BaseAvroParquetTestDataComparator(); } @Override diff --git a/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3AvroParquetTestDataComparator.java b/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3BaseAvroParquetTestDataComparator.java similarity index 89% rename from airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3AvroParquetTestDataComparator.java rename to airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3BaseAvroParquetTestDataComparator.java index 7ca839338222..32b7888b196e 100644 --- a/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3AvroParquetTestDataComparator.java +++ b/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3BaseAvroParquetTestDataComparator.java @@ -12,7 +12,7 @@ import java.time.ZonedDateTime; import java.time.format.DateTimeFormatter; -public class S3AvroParquetTestDataComparator extends AdvancedTestDataComparator { +public class S3BaseAvroParquetTestDataComparator extends AdvancedTestDataComparator { @Override protected boolean compareDateValues(String airbyteMessageValue, String destinationValue) { @@ -22,7 +22,7 @@ protected boolean compareDateValues(String airbyteMessageValue, String destinati } private Instant getInstantFromEpoch(String epochValue) { - return Instant.ofEpochMilli(Long.parseLong(epochValue.replaceAll("000$", ""))); + return Instant.ofEpochMilli(Long.parseLong(epochValue) / 1000); } @Override diff --git a/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3BaseCsvDestinationAcceptanceTest.java b/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3BaseCsvDestinationAcceptanceTest.java index 9bd7f204a3c6..21b0d308b01c 100644 --- a/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3BaseCsvDestinationAcceptanceTest.java +++ b/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3BaseCsvDestinationAcceptanceTest.java @@ -49,7 +49,9 @@ private static Map getFieldTypes(final JsonNode streamSchema) { final Iterator> iterator = fieldDefinitions.fields(); while (iterator.hasNext()) { final Entry entry = iterator.next(); - fieldTypes.put(entry.getKey(), entry.getValue().get("type").asText()); + JsonNode fieldValue = entry.getValue(); + JsonNode typeValue = fieldValue.get("type") == null ? fieldValue.get("$ref") : fieldValue.get("type"); + fieldTypes.put(entry.getKey(), typeValue.asText()); } return fieldTypes; } @@ -73,6 +75,9 @@ private static JsonNode getJsonNode(final Map input, final Map json.put(key, Boolean.valueOf(value)); + case "WellKnownTypes.json#/definitions/Integer" -> json.put(key, Integer.valueOf(value)); + case "WellKnownTypes.json#/definitions/Number" -> json.put(key, Double.valueOf(value)); case "boolean" -> json.put(key, Boolean.valueOf(value)); case "integer" -> json.put(key, Integer.valueOf(value)); case "number" -> json.put(key, Double.valueOf(value)); diff --git a/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3BaseParquetDestinationAcceptanceTest.java b/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3BaseParquetDestinationAcceptanceTest.java index 5d873007211d..c1d5f8f4fd5b 100644 --- a/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3BaseParquetDestinationAcceptanceTest.java +++ b/airbyte-integrations/bases/s3-destination-base-integration-test/src/main/java/io/airbyte/integrations/destination/s3/S3BaseParquetDestinationAcceptanceTest.java @@ -78,7 +78,7 @@ protected List retrieveRecords(final TestDestinationEnv testEnv, @Override protected TestDataComparator getTestDataComparator() { - return new S3AvroParquetTestDataComparator(); + return new S3BaseAvroParquetTestDataComparator(); } @Override diff --git a/airbyte-integrations/bases/source-acceptance-test/CHANGELOG.md b/airbyte-integrations/bases/source-acceptance-test/CHANGELOG.md index c678e58b9e87..193b110449f9 100644 --- a/airbyte-integrations/bases/source-acceptance-test/CHANGELOG.md +++ b/airbyte-integrations/bases/source-acceptance-test/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.2.23 +Skip backward compatibility tests on specifications if actual and previous specifications and discovered catalogs are identical.[#20435](https://github.com/airbytehq/airbyte/pull/20435) + ## 0.2.22 Capture control messages to store and use updated configurations. [#19979](https://github.com/airbytehq/airbyte/pull/19979). diff --git a/airbyte-integrations/bases/source-acceptance-test/Dockerfile b/airbyte-integrations/bases/source-acceptance-test/Dockerfile index e7a3eff1bcd4..24cc460a6f2e 100644 --- a/airbyte-integrations/bases/source-acceptance-test/Dockerfile +++ b/airbyte-integrations/bases/source-acceptance-test/Dockerfile @@ -33,7 +33,7 @@ COPY pytest.ini setup.py ./ COPY source_acceptance_test ./source_acceptance_test RUN pip install . -LABEL io.airbyte.version=0.2.22 +LABEL io.airbyte.version=0.2.23 LABEL io.airbyte.name=airbyte/source-acceptance-test ENTRYPOINT ["python", "-m", "pytest", "-p", "source_acceptance_test.plugin", "-r", "fEsx"] diff --git a/airbyte-integrations/bases/source-acceptance-test/source_acceptance_test/tests/test_core.py b/airbyte-integrations/bases/source-acceptance-test/source_acceptance_test/tests/test_core.py index b1fd78d9e30e..0928b07b3db8 100644 --- a/airbyte-integrations/bases/source-acceptance-test/source_acceptance_test/tests/test_core.py +++ b/airbyte-integrations/bases/source-acceptance-test/source_acceptance_test/tests/test_core.py @@ -83,7 +83,16 @@ class TestSpec(BaseTest): previous_spec_cache: ConnectorSpecification = None @pytest.fixture(name="skip_backward_compatibility_tests") - def skip_backward_compatibility_tests_fixture(self, inputs: SpecTestConfig, previous_connector_docker_runner: ConnectorRunner) -> bool: + def skip_backward_compatibility_tests_fixture( + self, + inputs: SpecTestConfig, + previous_connector_docker_runner: ConnectorRunner, + previous_connector_spec: ConnectorSpecification, + actual_connector_spec: ConnectorSpecification, + ) -> bool: + if actual_connector_spec == previous_connector_spec: + pytest.skip("The previous and actual specifications are identical.") + if previous_connector_docker_runner is None: pytest.skip("The previous connector image could not be retrieved.") @@ -358,8 +367,15 @@ def test_check(self, connector_config, inputs: ConnectionTestConfig, docker_runn class TestDiscovery(BaseTest): @pytest.fixture(name="skip_backward_compatibility_tests") def skip_backward_compatibility_tests_fixture( - self, inputs: DiscoveryTestConfig, previous_connector_docker_runner: ConnectorRunner + self, + inputs: DiscoveryTestConfig, + previous_connector_docker_runner: ConnectorRunner, + discovered_catalog: MutableMapping[str, AirbyteStream], + previous_discovered_catalog: MutableMapping[str, AirbyteStream], ) -> bool: + if discovered_catalog == previous_discovered_catalog: + pytest.skip("The previous and actual discovered catalogs are identical.") + if previous_connector_docker_runner is None: pytest.skip("The previous connector image could not be retrieved.") diff --git a/airbyte-integrations/bases/standard-destination-test/build.gradle b/airbyte-integrations/bases/standard-destination-test/build.gradle index d69a666b31fa..bb98faae7b65 100644 --- a/airbyte-integrations/bases/standard-destination-test/build.gradle +++ b/airbyte-integrations/bases/standard-destination-test/build.gradle @@ -5,6 +5,8 @@ dependencies { implementation project(':airbyte-db:db-lib') implementation project(':airbyte-commons-worker') implementation project(':airbyte-config:config-models') + implementation project(':airbyte-config:init') + implementation project(':airbyte-json-validation') implementation project(':airbyte-integrations:bases:base-java') implementation project(':airbyte-protocol:protocol-models') implementation project(':airbyte-commons-worker') diff --git a/airbyte-integrations/bases/standard-destination-test/src/main/java/io/airbyte/integrations/standardtest/destination/DestinationAcceptanceTest.java b/airbyte-integrations/bases/standard-destination-test/src/main/java/io/airbyte/integrations/standardtest/destination/DestinationAcceptanceTest.java index 6987641a29a3..23703a3d47dd 100644 --- a/airbyte-integrations/bases/standard-destination-test/src/main/java/io/airbyte/integrations/standardtest/destination/DestinationAcceptanceTest.java +++ b/airbyte-integrations/bases/standard-destination-test/src/main/java/io/airbyte/integrations/standardtest/destination/DestinationAcceptanceTest.java @@ -30,25 +30,27 @@ import io.airbyte.config.StandardCheckConnectionInput; import io.airbyte.config.StandardCheckConnectionOutput; import io.airbyte.config.StandardCheckConnectionOutput.Status; +import io.airbyte.config.StandardDestinationDefinition; import io.airbyte.config.WorkerDestinationConfig; +import io.airbyte.config.init.LocalDefinitionsProvider; import io.airbyte.integrations.destination.NamingConventionTransformer; import io.airbyte.integrations.standardtest.destination.argproviders.DataArgumentsProvider; import io.airbyte.integrations.standardtest.destination.argproviders.DataTypeTestArgumentProvider; import io.airbyte.integrations.standardtest.destination.comparator.BasicTestDataComparator; import io.airbyte.integrations.standardtest.destination.comparator.TestDataComparator; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.AirbyteStateMessage; +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.v0.DestinationSyncMode; +import io.airbyte.protocol.models.v0.SyncMode; import io.airbyte.workers.WorkerConfigs; import io.airbyte.workers.exception.WorkerException; import io.airbyte.workers.general.DbtTransformationRunner; @@ -57,8 +59,8 @@ import io.airbyte.workers.helper.EntrypointEnvChecker; import io.airbyte.workers.internal.AirbyteDestination; import io.airbyte.workers.internal.DefaultAirbyteDestination; +import io.airbyte.workers.normalization.DefaultNormalizationRunner; import io.airbyte.workers.normalization.NormalizationRunner; -import io.airbyte.workers.normalization.NormalizationRunnerFactory; import io.airbyte.workers.process.AirbyteIntegrationLauncher; import io.airbyte.workers.process.DockerProcessFactory; import io.airbyte.workers.process.ProcessFactory; @@ -72,6 +74,7 @@ import java.util.HashSet; import java.util.List; import java.util.Map; +import java.util.Objects; import java.util.Optional; import java.util.Random; import java.util.UUID; @@ -121,6 +124,29 @@ public abstract class DestinationAcceptanceTest { */ protected abstract String getImageName(); + private String getImageNameWithoutTag() { + return getImageName().contains(":") ? getImageName().split(":")[0] : getImageName(); + } + + private Optional getOptionalDestinationDefinitionFromProvider(final String imageNameWithoutTag) { + try { + LocalDefinitionsProvider provider = new LocalDefinitionsProvider(LocalDefinitionsProvider.DEFAULT_SEED_DEFINITION_RESOURCE_CLASS); + return provider.getDestinationDefinitions().stream() + .filter(definition -> imageNameWithoutTag.equalsIgnoreCase(definition.getDockerRepository())) + .findFirst(); + } catch (IOException e) { + return Optional.empty(); + } + } + + protected String getNormalizationImageName() { + return getOptionalDestinationDefinitionFromProvider(getImageNameWithoutTag()) + .filter(standardDestinationDefinition -> Objects.nonNull(standardDestinationDefinition.getNormalizationConfig())) + .map(standardDestinationDefinition -> standardDestinationDefinition.getNormalizationConfig().getNormalizationRepository() + ":" + + NORMALIZATION_VERSION) + .orElse(null); + } + /** * Configuration specific to the integration. Will be passed to integration where appropriate in * each test. Should be valid. @@ -200,24 +226,26 @@ protected boolean implementsAppend() throws WorkerException { } } - protected boolean normalizationFromSpec() throws Exception { - final ConnectorSpecification spec = runSpec(); - assertNotNull(spec); - if (spec.getSupportsNormalization() != null) { - return spec.getSupportsNormalization(); - } else { - return false; - } + protected boolean normalizationFromDefinition() { + return getOptionalDestinationDefinitionFromProvider(getImageNameWithoutTag()) + .filter(standardDestinationDefinition -> Objects.nonNull(standardDestinationDefinition.getNormalizationConfig())) + .map(standardDestinationDefinition -> Objects.nonNull(standardDestinationDefinition.getNormalizationConfig().getNormalizationRepository()) + && Objects.nonNull(standardDestinationDefinition.getNormalizationConfig().getNormalizationTag())) + .orElse(false); } - protected boolean dbtFromSpec() throws WorkerException { - final ConnectorSpecification spec = runSpec(); - assertNotNull(spec); - if (spec.getSupportsDBT() != null) { - return spec.getSupportsDBT(); - } else { - return false; - } + protected boolean dbtFromDefinition() { + return getOptionalDestinationDefinitionFromProvider(getImageNameWithoutTag()) + .map(standardDestinationDefinition -> Objects.nonNull(standardDestinationDefinition.getSupportsDbt()) + && standardDestinationDefinition.getSupportsDbt()) + .orElse(false); + } + + protected String getNormalizationIntegrationType() { + return getOptionalDestinationDefinitionFromProvider(getImageNameWithoutTag()) + .filter(standardDestinationDefinition -> Objects.nonNull(standardDestinationDefinition.getNormalizationConfig())) + .map(standardDestinationDefinition -> standardDestinationDefinition.getNormalizationConfig().getNormalizationIntegrationType()) + .orElse(null); } /** @@ -278,7 +306,7 @@ protected boolean implementsRecordSizeLimitChecks() { * Same idea as {@link #retrieveRecords(TestDestinationEnv, String, String, JsonNode)}. Except this * method should pull records from the table that contains the normalized records and convert them * back into the data as it would appear in an {@link AirbyteRecordMessage}. Only need to override - * this method if {@link #normalizationFromSpec} returns true. + * this method if {@link #normalizationFromDefinition} returns true. * * @param testEnv - information about the test environment. * @param streamName - name of the stream for which we are retrieving records. @@ -537,23 +565,26 @@ public void testLineBreakCharacters() throws Exception { @Test public void specNormalizationValueShouldBeCorrect() throws Exception { - final boolean normalizationFromSpec = normalizationFromSpec(); - assertEquals(normalizationFromSpec, supportsNormalization()); - if (normalizationFromSpec) { + final boolean normalizationFromDefinition = normalizationFromDefinition(); + assertEquals(normalizationFromDefinition, supportsNormalization()); + if (normalizationFromDefinition) { boolean normalizationRunnerFactorySupportsDestinationImage; try { - NormalizationRunnerFactory.create(getImageName(), processFactory, NORMALIZATION_VERSION, ""); + new DefaultNormalizationRunner( + processFactory, + getNormalizationImageName(), + getNormalizationIntegrationType()); normalizationRunnerFactorySupportsDestinationImage = true; } catch (final IllegalStateException e) { normalizationRunnerFactorySupportsDestinationImage = false; } - assertEquals(normalizationFromSpec, normalizationRunnerFactorySupportsDestinationImage); + assertEquals(normalizationFromDefinition, normalizationRunnerFactorySupportsDestinationImage); } } @Test - public void specDBTValueShouldBeCorrect() throws WorkerException { - assertEquals(dbtFromSpec(), supportsDBT()); + public void specDBTValueShouldBeCorrect() { + assertEquals(dbtFromDefinition(), supportsDBT()); } /** @@ -622,7 +653,7 @@ public void testIncrementalSync() throws Exception { @ArgumentsSource(DataArgumentsProvider.class) public void testSyncWithNormalization(final String messagesFilename, final String catalogFilename) throws Exception { - if (!normalizationFromSpec()) { + if (!normalizationFromDefinition()) { return; } @@ -829,7 +860,7 @@ protected int getMaxRecordValueLimit() { @Test public void testCustomDbtTransformations() throws Exception { - if (!dbtFromSpec()) { + if (!dbtFromDefinition()) { return; } @@ -845,10 +876,10 @@ public void testCustomDbtTransformations() throws Exception { // 'profiles.yml' // (we don't actually rely on normalization running anything else here though) final DbtTransformationRunner runner = new DbtTransformationRunner(processFactory, - NormalizationRunnerFactory.create( - getImageName(), + new DefaultNormalizationRunner( processFactory, - NORMALIZATION_VERSION, "")); + getNormalizationImageName(), + getNormalizationIntegrationType())); runner.start(); final Path transformationRoot = Files.createDirectories(jobRoot.resolve("transform")); final OperatorDbt dbtConfig = new OperatorDbt() @@ -861,9 +892,7 @@ public void testCustomDbtTransformations() throws Exception { // TODO once we're on DBT 1.x, switch this back to using the main branch .withGitRepoUrl("https://github.com/airbytehq/jaffle_shop.git") .withGitRepoBranch("pre_dbt_upgrade") - .withDockerImage( - NormalizationRunnerFactory.getNormalizationInfoForConnector(getImageName()).getLeft() - + ":" + NORMALIZATION_VERSION); + .withDockerImage(getNormalizationImageName()); // // jaffle_shop is a fictional ecommerce store maintained by fishtownanalytics/dbt. // @@ -913,7 +942,7 @@ public void testCustomDbtTransformations() throws Exception { @Test void testCustomDbtTransformationsFailure() throws Exception { - if (!normalizationFromSpec() || !dbtFromSpec()) { + if (!normalizationFromDefinition() || !dbtFromDefinition()) { // we require normalization implementation for this destination, because we make sure to install // required dbt dependency in the normalization docker image in order to run this test successfully // (we don't actually rely on normalization running anything here though) @@ -923,10 +952,10 @@ void testCustomDbtTransformationsFailure() throws Exception { final JsonNode config = getConfig(); final DbtTransformationRunner runner = new DbtTransformationRunner(processFactory, - NormalizationRunnerFactory.create( - getImageName(), + new DefaultNormalizationRunner( processFactory, - NORMALIZATION_VERSION, "")); + getNormalizationImageName(), + getNormalizationIntegrationType())); runner.start(); final Path transformationRoot = Files.createDirectories(jobRoot.resolve("transform")); final OperatorDbt dbtConfig = new OperatorDbt() @@ -1168,9 +1197,11 @@ protected void assertNamespaceNormalization(final String testCaseId, } private ConnectorSpecification runSpec() throws WorkerException { - return new DefaultGetSpecWorker( - new AirbyteIntegrationLauncher(JOB_ID, JOB_ATTEMPT, getImageName(), processFactory, null, false)) - .run(new JobGetSpecConfig().withDockerImage(getImageName()), jobRoot).getSpec(); + return convertProtocolObject( + new DefaultGetSpecWorker( + new AirbyteIntegrationLauncher(JOB_ID, JOB_ATTEMPT, getImageName(), processFactory, null, false)) + .run(new JobGetSpecConfig().withDockerImage(getImageName()), jobRoot).getSpec(), + ConnectorSpecification.class); } protected StandardCheckConnectionOutput runCheck(final JsonNode config) throws WorkerException { @@ -1250,18 +1281,19 @@ private List runSync( final WorkerDestinationConfig destinationConfig = new WorkerDestinationConfig() .withConnectionId(UUID.randomUUID()) - .withCatalog(catalog) + .withCatalog(convertProtocolObject(catalog, io.airbyte.protocol.models.ConfiguredAirbyteCatalog.class)) .withDestinationConnectionConfiguration(config); final AirbyteDestination destination = getDestination(); destination.start(destinationConfig, jobRoot); - messages.forEach(message -> Exceptions.toRuntime(() -> destination.accept(message))); + messages.forEach( + message -> Exceptions.toRuntime(() -> destination.accept(convertProtocolObject(message, io.airbyte.protocol.models.AirbyteMessage.class)))); destination.notifyEndOfInput(); final List destinationOutput = new ArrayList<>(); while (!destination.isFinished()) { - destination.attemptRead().ifPresent(destinationOutput::add); + destination.attemptRead().ifPresent(m -> destinationOutput.add(convertProtocolObject(m, AirbyteMessage.class))); } destination.close(); @@ -1270,10 +1302,10 @@ private List runSync( return destinationOutput; } - final NormalizationRunner runner = NormalizationRunnerFactory.create( - getImageName(), + final NormalizationRunner runner = new DefaultNormalizationRunner( processFactory, - NORMALIZATION_VERSION, ""); + getNormalizationImageName(), + getNormalizationIntegrationType()); runner.start(); final Path normalizationRoot = Files.createDirectories(jobRoot.resolve("normalize")); if (!runner.normalize(JOB_ID, JOB_ATTEMPT, normalizationRoot, @@ -1452,7 +1484,7 @@ public void testStressPerformance() throws Exception { final JsonNode config = getConfig(); final WorkerDestinationConfig destinationConfig = new WorkerDestinationConfig() .withConnectionId(UUID.randomUUID()) - .withCatalog(configuredTestCatalog) + .withCatalog(convertProtocolObject(configuredTestCatalog, io.airbyte.protocol.models.ConfiguredAirbyteCatalog.class)) .withDestinationConnectionConfiguration(config); final AirbyteDestination destination = getDestination(); @@ -1494,7 +1526,7 @@ public void testStressPerformance() throws Exception { .build())) .withEmittedAt(Instant.now().toEpochMilli())); try { - destination.accept(msg); + destination.accept(convertProtocolObject(msg, io.airbyte.protocol.models.AirbyteMessage.class)); } catch (final Exception e) { LOGGER.error("Failed to write a RECORD message: " + e); throw new RuntimeException(e); @@ -1510,7 +1542,7 @@ public void testStressPerformance() throws Exception { .withData( Jsons.jsonNode(ImmutableMap.builder().put("start_date", "2020-09-02").build()))); try { - destination.accept(msgState); + destination.accept(convertProtocolObject(msgState, io.airbyte.protocol.models.AirbyteMessage.class)); } catch (final Exception e) { LOGGER.error("Failed to write a STATE message: " + e); throw new RuntimeException(e); @@ -1764,4 +1796,8 @@ public Stream provideArguments(final ExtensionContext conte } + private static V0 convertProtocolObject(final V1 v1, final Class klass) { + return Jsons.object(Jsons.jsonNode(v1), klass); + } + } diff --git a/airbyte-integrations/bases/standard-destination-test/src/main/java/io/airbyte/integrations/standardtest/destination/LocalAirbyteDestination.java b/airbyte-integrations/bases/standard-destination-test/src/main/java/io/airbyte/integrations/standardtest/destination/LocalAirbyteDestination.java index 8446a483644c..5cda46766a7c 100644 --- a/airbyte-integrations/bases/standard-destination-test/src/main/java/io/airbyte/integrations/standardtest/destination/LocalAirbyteDestination.java +++ b/airbyte-integrations/bases/standard-destination-test/src/main/java/io/airbyte/integrations/standardtest/destination/LocalAirbyteDestination.java @@ -4,6 +4,7 @@ package io.airbyte.integrations.standardtest.destination; +import io.airbyte.commons.json.Jsons; import io.airbyte.config.WorkerDestinationConfig; import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; @@ -29,14 +30,15 @@ public LocalAirbyteDestination(final Destination dest) { @Override public void start(final WorkerDestinationConfig destinationConfig, final Path jobRoot) throws Exception { consumer = - dest.getConsumer(destinationConfig.getDestinationConnectionConfiguration(), destinationConfig.getCatalog(), + dest.getConsumer(destinationConfig.getDestinationConnectionConfiguration(), + Jsons.object(Jsons.jsonNode(destinationConfig.getCatalog()), io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog.class), Destination::defaultOutputRecordCollector); consumer.start(); } @Override public void accept(final AirbyteMessage message) throws Exception { - consumer.accept(message); + consumer.accept(Jsons.object(Jsons.jsonNode(message), io.airbyte.protocol.models.v0.AirbyteMessage.class)); } @Override diff --git a/airbyte-integrations/bases/standard-destination-test/src/main/java/io/airbyte/integrations/standardtest/destination/PerStreamStateMessageTest.java b/airbyte-integrations/bases/standard-destination-test/src/main/java/io/airbyte/integrations/standardtest/destination/PerStreamStateMessageTest.java index 120f9f1a8729..2ececb5dff1b 100644 --- a/airbyte-integrations/bases/standard-destination-test/src/main/java/io/airbyte/integrations/standardtest/destination/PerStreamStateMessageTest.java +++ b/airbyte-integrations/bases/standard-destination-test/src/main/java/io/airbyte/integrations/standardtest/destination/PerStreamStateMessageTest.java @@ -6,12 +6,12 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.AirbyteStreamState; -import io.airbyte.protocol.models.StreamDescriptor; +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.AirbyteStateMessage.AirbyteStateType; +import io.airbyte.protocol.models.v0.AirbyteStreamState; +import io.airbyte.protocol.models.v0.StreamDescriptor; import java.util.function.Consumer; import org.junit.jupiter.api.Test; import org.mockito.InOrder; diff --git a/airbyte-integrations/bases/standard-destination-test/src/main/java/io/airbyte/integrations/standardtest/destination/comparator/AdvancedTestDataComparator.java b/airbyte-integrations/bases/standard-destination-test/src/main/java/io/airbyte/integrations/standardtest/destination/comparator/AdvancedTestDataComparator.java index 6f983c6017b9..3c86a10a0455 100644 --- a/airbyte-integrations/bases/standard-destination-test/src/main/java/io/airbyte/integrations/standardtest/destination/comparator/AdvancedTestDataComparator.java +++ b/airbyte-integrations/bases/standard-destination-test/src/main/java/io/airbyte/integrations/standardtest/destination/comparator/AdvancedTestDataComparator.java @@ -16,6 +16,7 @@ import java.util.Iterator; import java.util.List; import java.util.Map; +import java.util.Set; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -27,7 +28,20 @@ public class AdvancedTestDataComparator implements TestDataComparator { public static final String AIRBYTE_DATETIME_FORMAT = "yyyy-MM-dd'T'HH:mm:ss"; public static final String AIRBYTE_DATETIME_PARSED_FORMAT = "yyyy-MM-dd HH:mm:ss.S"; public static final String AIRBYTE_DATETIME_PARSED_FORMAT_TZ = "yyyy-MM-dd HH:mm:ss XXX"; - public static final String AIRBYTE_DATETIME_WITH_TZ_FORMAT = "yyyy-MM-dd'T'HH:mm:ssXXX"; + public static final String AIRBYTE_DATETIME_WITH_TZ_FORMAT = "[yyyy][yy]['-']['/']['.'][' '][MMM][MM][M]['-']['/']['.'][' '][dd][d]" + + "[[' ']['T']HH:mm[':'ss[.][SSSSSS][SSSSS][SSSS][SSS][' '][z][zzz][Z][O][x][XXX][XX][X][' '][G]]]"; + + // TODO revisit dataset which used date as string: exchange_rate_catalog.json + // tried to change it to date time type but some connectors failed to store it e.i. + // bigquery-denormalized + private static final Set TEST_DATASET_IGNORE_LIST = + Set.of( + "2020-08-29T00:00:00Z", + "2020-08-30T00:00:00Z", + "2020-08-31T00:00:00Z", + "2020-09-01T00:00:00Z", + "2020-09-15T16:58:52.000000Z", + "2020-03-31T00:00:00Z"); @Override public void assertSameData(List expected, List actual) { @@ -81,7 +95,7 @@ protected void assertSameValue(final JsonNode expectedValue, final JsonNode actu protected boolean compareJsonNodes(final JsonNode expectedValue, final JsonNode actualValue) { if (expectedValue == null || actualValue == null) { return expectedValue == null && actualValue == null; - } else if (expectedValue.isNumber() || expectedValue.isDouble() || expectedValue.isFloat()) { + } else if (isNumeric(expectedValue.asText())) { return compareNumericValues(expectedValue.asText(), actualValue.asText()); } else if (expectedValue.isBoolean()) { return compareBooleanValues(expectedValue.asText(), actualValue.asText()); @@ -91,6 +105,8 @@ protected boolean compareJsonNodes(final JsonNode expectedValue, final JsonNode return compareDateTimeValues(expectedValue.asText(), actualValue.asText()); } else if (isDateValue(expectedValue.asText())) { return compareDateValues(expectedValue.asText(), actualValue.asText()); + } else if (isTimeWithTimezone(expectedValue.asText()) || isTimeWithoutTimezone(expectedValue.asText())) { + return compareTime(expectedValue.asText(), actualValue.asText()); } else if (expectedValue.isArray()) { return compareArrays(expectedValue, actualValue); } else if (expectedValue.isObject()) { @@ -106,6 +122,10 @@ protected boolean compareString(final JsonNode expectedValue, final JsonNode act return expectedValue.asText().equals(actualValue.asText()); } + private boolean isNumeric(final String value) { + return value.matches("-?\\d+(\\.\\d+)?"); + } + private List getArrayList(final JsonNode jsonArray) { List result = new ArrayList<>(); jsonArray.elements().forEachRemaining(result::add); @@ -151,7 +171,8 @@ protected DateTimeFormatter getAirbyteDateTimeParsedWithTzFormatter() { } protected boolean isDateTimeWithTzValue(final String value) { - return value.matches(".+[+-]\\d{2}:\\d{2}"); + return !TEST_DATASET_IGNORE_LIST.contains(value) && + value.matches("^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(\\.\\d+)?(Z|[+\\-]\\d{1,2}:\\d{2})( BC)?$"); } protected ZonedDateTime parseDestinationDateWithTz(final String destinationValue) { @@ -171,7 +192,15 @@ protected boolean compareDateTimeWithTzValues(final String airbyteMessageValue, } protected boolean isDateTimeValue(final String value) { - return value.matches("\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}"); + return value.matches("^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(\\.\\d+)?( BC)?$"); + } + + protected boolean isTimeWithTimezone(final String value) { + return value.matches("^\\d{2}:\\d{2}:\\d{2}(\\.\\d+)?(Z|[+\\-]\\d{1,2}:\\d{2})$"); + } + + protected boolean isTimeWithoutTimezone(final String value) { + return value.matches("^\\d{2}:\\d{2}:\\d{2}(\\.\\d+)?$"); } protected boolean compareDateTimeValues(final String airbyteMessageValue, final String destinationValue) { @@ -179,13 +208,17 @@ protected boolean compareDateTimeValues(final String airbyteMessageValue, final } protected boolean isDateValue(final String value) { - return value.matches("\\d{4}-\\d{2}-\\d{2}"); + return value.matches("^\\d{4}-\\d{2}-\\d{2}( BC)?$"); } protected boolean compareDateValues(final String airbyteMessageValue, final String destinationValue) { return compareTextValues(airbyteMessageValue, destinationValue); } + protected boolean compareTime(final String airbyteMessageValue, final String destinationValue) { + return compareTextValues(airbyteMessageValue, destinationValue); + } + protected boolean compareTextValues(final String firstValue, final String secondValue) { return firstValue.equals(secondValue); } diff --git a/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_array_test_catalog.json b/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_array_test_catalog.json index 6b2d0d2d19cb..db20d2562371 100644 --- a/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_array_test_catalog.json +++ b/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_array_test_catalog.json @@ -36,12 +36,6 @@ "$ref": "WellKnownTypes.json#/definitions/Number" } }, - "array_big_number": { - "type": ["array"], - "items": { - "$ref": "WellKnownTypes.json#/definitions/Number" - } - }, "array_integer": { "type": ["array"], "items": { diff --git a/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_array_test_messages.txt b/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_array_test_messages.txt index 5cc391b59b99..ecf027b74ac1 100644 --- a/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_array_test_messages.txt +++ b/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_array_test_messages.txt @@ -1,2 +1,2 @@ -{"type": "RECORD", "record": {"stream": "array_test_1", "emitted_at": 1602637589100, "data": { "string_array" : ["foo bar", "some random special characters: ࠈൡሗ"], "array_date" : ["2021-01-23", "1504-02-29"], "array_timestamp_with_timezone" : ["2022-11-22T01:23:45+05:00", "9999-12-21T01:23:45-05:00"], "array_timestamp_without_timezone" : ["2022-11-22T01:23:45", "1504-02-29T01:23:45"], "array_number" : ["56.78", "0", "-12345.678"], "array_big_number" : ["-12345.678", "100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.1234"], "array_integer" : ["42", "0", "12345"], "array_boolean" : [true, false], "array_binary_data" : ["dGVzdA=="] }}} +{"type": "RECORD", "record": {"stream": "array_test_1", "emitted_at": 1602637589100, "data": { "string_array" : ["foo bar", "some random special characters: ࠈൡሗ"], "array_date" : ["2021-01-23", "1504-02-29"], "array_timestamp_with_timezone" : ["2022-11-22T01:23:45+05:00", "9999-12-21T01:23:45-05:00"], "array_timestamp_without_timezone" : ["2022-11-22T01:23:45", "1504-02-29T01:23:45"], "array_number" : ["56.78", "0", "-12345.678"], "array_integer" : ["42", "0", "12345"], "array_boolean" : [true, false], "array_binary_data" : ["dGVzdA=="] }}} {"type": "STATE", "state": { "data": {"start_date": "2022-02-14"}}} diff --git a/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_basic_test_catalog.json b/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_basic_test_catalog.json index 6ad31482ab73..6a5fdbcdce01 100644 --- a/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_basic_test_catalog.json +++ b/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_basic_test_catalog.json @@ -70,16 +70,6 @@ } } }, - { - "name": "bignumber_test_1", - "json_schema": { - "properties": { - "data": { - "$ref": "WellKnownTypes.json#/definitions/Number" - } - } - } - }, { "name": "integer_test_1", "json_schema": { diff --git a/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_basic_test_messages.txt b/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_basic_test_messages.txt index e3cb1d861919..7353182ccabc 100644 --- a/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_basic_test_messages.txt +++ b/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_basic_test_messages.txt @@ -5,7 +5,7 @@ {"type": "RECORD", "record": {"stream": "date_test_1", "emitted_at": 1602637589200, "data": { "data" : "1504-02-29" }}} {"type": "RECORD", "record": {"stream": "date_test_1", "emitted_at": 1602637589300, "data": { "data" : "9999-12-23" }}} {"type": "RECORD", "record": {"stream": "datetime_test_1", "emitted_at": 1602637589100, "data": { "data" : "2022-01-23T01:23:45Z" }}} -{"type": "RECORD", "record": {"stream": "datetime_test_1", "emitted_at": 1602637589200, "data": { "data" : 2022-01-23T01:23:45.678-11:30 BC }}} +{"type": "RECORD", "record": {"stream": "datetime_test_1", "emitted_at": 1602637589200, "data": { "data" : "2022-01-23T01:23:45.678-11:30 BC" }}} {"type": "RECORD", "record": {"stream": "datetime_test_1", "emitted_at": 1602637589300, "data": { "data" : "9999-12-23T01:23:45Z" }}} {"type": "RECORD", "record": {"stream": "datetime_test_2", "emitted_at": 1602637589100, "data": { "data" : "2022-11-22T01:23:45" }}} {"type": "RECORD", "record": {"stream": "datetime_test_2", "emitted_at": 1602637589200, "data": { "data" : "1504-02-29T01:23:45" }}} @@ -17,9 +17,6 @@ {"type": "RECORD", "record": {"stream": "number_test_1", "emitted_at": 1602637589200, "data": { "data" : "56.78" }}} {"type": "RECORD", "record": {"stream": "number_test_1", "emitted_at": 1602637589300, "data": { "data" : "0" }}} {"type": "RECORD", "record": {"stream": "number_test_1", "emitted_at": 1602637589100, "data": { "data" : "-12345.678" }}} -{"type": "RECORD", "record": {"stream": "bignumber_test_1", "emitted_at": 1602637589200, "data": { "data" : "100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.1234" }}} -{"type": "RECORD", "record": {"stream": "bignumber_test_1", "emitted_at": 1602637589300, "data": { "data" : "0" }}} -{"type": "RECORD", "record": {"stream": "bignumber_test_1", "emitted_at": 1602637589100, "data": { "data" : "-12345.678" }}} {"type": "RECORD", "record": {"stream": "integer_test_1", "emitted_at": 1602637589200, "data": { "data" : "42" }}} {"type": "RECORD", "record": {"stream": "integer_test_1", "emitted_at": 1602637589300, "data": { "data" : "0" }}} {"type": "RECORD", "record": {"stream": "integer_test_1", "emitted_at": 1602637589100, "data": { "data" : "-12345" }}} diff --git a/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_object_test_catalog.json b/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_object_test_catalog.json index 3ca962affe2e..79d9951d256a 100644 --- a/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_object_test_catalog.json +++ b/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_object_test_catalog.json @@ -20,9 +20,6 @@ "property_number": { "$ref": "WellKnownTypes.json#/definitions/Number" }, - "property_big_number": { - "$ref": "WellKnownTypes.json#/definitions/String" - }, "property_integer": { "$ref": "WellKnownTypes.json#/definitions/Integer" }, diff --git a/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_object_test_messages.txt b/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_object_test_messages.txt index c264eed78c94..c2284f74ab6e 100644 --- a/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_object_test_messages.txt +++ b/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/data_type_object_test_messages.txt @@ -1,2 +1,2 @@ -{"type": "RECORD", "record": {"stream": "object_test_1", "emitted_at": 1602637589100, "data": {"property_string": "foo bar", "property_date": "2021-01-23", "property_timestamp_with_timezone": "2022-11-22T01:23:45+00:00", "property_timestamp_without_timezone": "2022-11-22T01:23:45", "property_number": "56.78", "property_big_number": "100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.1234", "property_integer": "42", "property_boolean": true, "property_binary_data" : "dGVzdA==" }}} +{"type": "RECORD", "record": {"stream": "object_test_1", "emitted_at": 1602637589100, "data": {"property_string": "foo bar", "property_date": "2021-01-23", "property_timestamp_with_timezone": "2022-11-22T01:23:45+00:00", "property_timestamp_without_timezone": "2022-11-22T01:23:45", "property_number": "56.78", "property_integer": "42", "property_boolean": true, "property_binary_data" : "dGVzdA==" }}} {"type": "STATE", "state": { "data": {"start_date": "2022-02-14"}}} diff --git a/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/exchange_rate_catalog.json b/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/exchange_rate_catalog.json index bfb3b03e14fc..4a17c63f1f41 100644 --- a/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/exchange_rate_catalog.json +++ b/airbyte-integrations/bases/standard-destination-test/src/main/resources/v1/exchange_rate_catalog.json @@ -11,7 +11,7 @@ "$ref": "WellKnownTypes.json#/definitions/String" }, "date": { - "$ref": "WellKnownTypes.json#/definitions/Date" + "$ref": "WellKnownTypes.json#/definitions/String" }, "HKD": { "$ref": "WellKnownTypes.json#/definitions/Number" diff --git a/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/AbstractSourceConnectorTest.java b/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/AbstractSourceConnectorTest.java index 0a7013c97ea2..9e811d49c5ba 100644 --- a/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/AbstractSourceConnectorTest.java +++ b/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/AbstractSourceConnectorTest.java @@ -11,6 +11,7 @@ import static org.mockito.Mockito.verify; import com.fasterxml.jackson.databind.JsonNode; +import io.airbyte.commons.json.Jsons; import io.airbyte.config.EnvConfigs; import io.airbyte.config.JobGetSpecConfig; import io.airbyte.config.ResourceRequirements; @@ -20,12 +21,12 @@ import io.airbyte.config.State; import io.airbyte.config.WorkerSourceConfig; import io.airbyte.config.persistence.ConfigRepository; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; +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.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.workers.WorkerConfigs; import io.airbyte.workers.exception.WorkerException; import io.airbyte.workers.general.DefaultCheckConnectionWorker; @@ -111,10 +112,12 @@ public abstract class AbstractSourceConnectorTest { private ConfigRepository mConfigRepository; - private final ArgumentCaptor lastPersistedCatalog = ArgumentCaptor.forClass(AirbyteCatalog.class); + // This has to be using the protocol version of the platform in order to capture the arg + private final ArgumentCaptor lastPersistedCatalog = + ArgumentCaptor.forClass(io.airbyte.protocol.models.AirbyteCatalog.class); protected AirbyteCatalog getLastPersistedCatalog() { - return lastPersistedCatalog.getValue(); + return convertProtocolObject(lastPersistedCatalog.getValue(), AirbyteCatalog.class); } @BeforeEach @@ -150,9 +153,10 @@ public void tearDownInternal() throws Exception { } protected ConnectorSpecification runSpec() throws WorkerException { - return new DefaultGetSpecWorker( + final io.airbyte.protocol.models.ConnectorSpecification spec = new DefaultGetSpecWorker( new AirbyteIntegrationLauncher(JOB_ID, JOB_ATTEMPT, getImageName(), processFactory, workerConfigs.getResourceRequirements(), false)) .run(new JobGetSpecConfig().withDockerImage(getImageName()), jobRoot).getSpec(); + return convertProtocolObject(spec, ConnectorSpecification.class); } protected StandardCheckConnectionOutput runCheck() throws Exception { @@ -198,14 +202,14 @@ protected List runRead(final ConfiguredAirbyteCatalog catalog, f final WorkerSourceConfig sourceConfig = new WorkerSourceConfig() .withSourceConnectionConfiguration(getConfig()) .withState(state == null ? null : new State().withState(state)) - .withCatalog(catalog); + .withCatalog(convertProtocolObject(catalog, io.airbyte.protocol.models.ConfiguredAirbyteCatalog.class)); final AirbyteSource source = new DefaultAirbyteSource( new AirbyteIntegrationLauncher(JOB_ID, JOB_ATTEMPT, getImageName(), processFactory, workerConfigs.getResourceRequirements(), false)); final List messages = new ArrayList<>(); source.start(sourceConfig, jobRoot); while (!source.isFinished()) { - source.attemptRead().ifPresent(messages::add); + source.attemptRead().ifPresent(m -> messages.add(convertProtocolObject(m, AirbyteMessage.class))); } source.close(); @@ -220,7 +224,7 @@ protected Map runReadVerifyNumberOfReceivedMsgs(final Configure final WorkerSourceConfig sourceConfig = new WorkerSourceConfig() .withSourceConnectionConfiguration(getConfig()) .withState(state == null ? null : new State().withState(state)) - .withCatalog(catalog); + .withCatalog(convertProtocolObject(catalog, io.airbyte.protocol.models.ConfiguredAirbyteCatalog.class)); final Map mapOfResourceRequirementsParams = prepareResourceRequestMapBySystemProperties(); final AirbyteSource source = @@ -228,7 +232,7 @@ protected Map runReadVerifyNumberOfReceivedMsgs(final Configure source.start(sourceConfig, jobRoot); while (!source.isFinished()) { - final Optional airbyteMessageOptional = source.attemptRead(); + final Optional airbyteMessageOptional = source.attemptRead().map(m -> convertProtocolObject(m, AirbyteMessage.class)); if (airbyteMessageOptional.isPresent() && airbyteMessageOptional.get().getType().equals(Type.RECORD)) { final AirbyteMessage airbyteMessage = airbyteMessageOptional.get(); final AirbyteRecordMessage record = airbyteMessage.getRecord(); @@ -276,4 +280,8 @@ private static Map prepareResourceRequestMapBySystemProperties() return result; } + private static V0 convertProtocolObject(final V1 v1, final Class klass) { + return Jsons.object(Jsons.jsonNode(v1), klass); + } + } diff --git a/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/AbstractSourceDatabaseTypeTest.java b/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/AbstractSourceDatabaseTypeTest.java index 6dd9c07abcca..bc0cacc27181 100644 --- a/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/AbstractSourceDatabaseTypeTest.java +++ b/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/AbstractSourceDatabaseTypeTest.java @@ -11,17 +11,17 @@ import com.google.common.collect.Lists; import io.airbyte.commons.json.Jsons; import io.airbyte.db.Database; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.AirbyteStream; +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.v0.SyncMode; import java.io.IOException; import java.sql.SQLException; import java.util.ArrayList; diff --git a/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/PythonSourceAcceptanceTest.java b/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/PythonSourceAcceptanceTest.java index b024cb99760c..2ae220f91958 100644 --- a/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/PythonSourceAcceptanceTest.java +++ b/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/PythonSourceAcceptanceTest.java @@ -12,9 +12,9 @@ import io.airbyte.commons.io.IOs; import io.airbyte.commons.io.LineGobbler; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.workers.WorkerUtils; import java.io.IOException; import java.nio.file.Files; diff --git a/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/SourceAcceptanceTest.java b/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/SourceAcceptanceTest.java index 5357ad6ad40e..14f4506e9018 100644 --- a/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/SourceAcceptanceTest.java +++ b/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/SourceAcceptanceTest.java @@ -4,8 +4,8 @@ package io.airbyte.integrations.standardtest.source; -import static io.airbyte.protocol.models.SyncMode.FULL_REFRESH; -import static io.airbyte.protocol.models.SyncMode.INCREMENTAL; +import static io.airbyte.protocol.models.v0.SyncMode.FULL_REFRESH; +import static io.airbyte.protocol.models.v0.SyncMode.INCREMENTAL; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; @@ -17,15 +17,15 @@ import com.google.common.collect.Sets; import io.airbyte.commons.json.Jsons; import io.airbyte.config.StandardCheckConnectionOutput.Status; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; +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.AirbyteStateMessage; +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 java.util.Collection; import java.util.HashMap; import java.util.List; diff --git a/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/TestDataHolder.java b/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/TestDataHolder.java index b78ef70f689a..da113e0cc90f 100644 --- a/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/TestDataHolder.java +++ b/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/TestDataHolder.java @@ -4,8 +4,8 @@ package io.airbyte.integrations.standardtest.source; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; import io.airbyte.protocol.models.JsonSchemaType; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.util.ArrayList; import java.util.Arrays; import java.util.List; diff --git a/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/performancetest/AbstractSourcePerformanceTest.java b/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/performancetest/AbstractSourcePerformanceTest.java index 77f894267e06..a4a9f4635264 100644 --- a/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/performancetest/AbstractSourcePerformanceTest.java +++ b/airbyte-integrations/bases/standard-source-test/src/main/java/io/airbyte/integrations/standardtest/source/performancetest/AbstractSourcePerformanceTest.java @@ -9,14 +9,14 @@ import com.fasterxml.jackson.databind.JsonNode; import com.google.common.collect.Lists; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; +import io.airbyte.protocol.models.v0.SyncMode; import java.util.ArrayList; import java.util.HashMap; import java.util.List; diff --git a/airbyte-integrations/connector-templates/source-java-jdbc/src/test-integration/java/io/airbyte/integrations/source/{{snakeCase name}}/{{pascalCase name}}SourceAcceptanceTest.java.hbs b/airbyte-integrations/connector-templates/source-java-jdbc/src/test-integration/java/io/airbyte/integrations/source/{{snakeCase name}}/{{pascalCase name}}SourceAcceptanceTest.java.hbs index c35378d0a682..199dd309e197 100644 --- a/airbyte-integrations/connector-templates/source-java-jdbc/src/test-integration/java/io/airbyte/integrations/source/{{snakeCase name}}/{{pascalCase name}}SourceAcceptanceTest.java.hbs +++ b/airbyte-integrations/connector-templates/source-java-jdbc/src/test-integration/java/io/airbyte/integrations/source/{{snakeCase name}}/{{pascalCase name}}SourceAcceptanceTest.java.hbs @@ -9,8 +9,8 @@ import io.airbyte.commons.json.Jsons; 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.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.util.HashMap; public class {{pascalCase name}}SourceAcceptanceTest extends SourceAcceptanceTest { diff --git a/airbyte-integrations/connectors/destination-aws-datalake/src/test/AwsDatalakeDestinationTest.java b/airbyte-integrations/connectors/destination-aws-datalake/src/test/AwsDatalakeDestinationTest.java index 415e11c2a2be..0b21fcea653e 100644 --- a/airbyte-integrations/connectors/destination-aws-datalake/src/test/AwsDatalakeDestinationTest.java +++ b/airbyte-integrations/connectors/destination-aws-datalake/src/test/AwsDatalakeDestinationTest.java @@ -8,7 +8,6 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.*; import org.junit.jupiter.api.Test; class AwsDatalakeDestinationTest { diff --git a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobStorageConsumer.java b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobStorageConsumer.java index f93b3fa4079a..c8ec5c6a07a6 100644 --- a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobStorageConsumer.java +++ b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobStorageConsumer.java @@ -12,14 +12,14 @@ import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; import io.airbyte.integrations.destination.azure_blob_storage.writer.AzureBlobStorageWriter; import io.airbyte.integrations.destination.azure_blob_storage.writer.AzureBlobStorageWriterFactory; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +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.AirbyteStream; +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.v0.DestinationSyncMode; import java.sql.Timestamp; import java.text.DateFormat; import java.text.SimpleDateFormat; diff --git a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobStorageDestination.java b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobStorageDestination.java index 976d962ce04c..f285fe1b6c97 100644 --- a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobStorageDestination.java +++ b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobStorageDestination.java @@ -11,10 +11,10 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.destination.azure_blob_storage.writer.AzureBlobStorageWriterFactory; import io.airbyte.integrations.destination.azure_blob_storage.writer.ProductionWriterFactory; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/csv/AzureBlobStorageCsvWriter.java b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/csv/AzureBlobStorageCsvWriter.java index 95ec281772a8..239420a9dae7 100644 --- a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/csv/AzureBlobStorageCsvWriter.java +++ b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/csv/AzureBlobStorageCsvWriter.java @@ -8,8 +8,8 @@ import io.airbyte.integrations.destination.azure_blob_storage.AzureBlobStorageDestinationConfig; import io.airbyte.integrations.destination.azure_blob_storage.writer.AzureBlobStorageWriter; import io.airbyte.integrations.destination.azure_blob_storage.writer.BaseAzureBlobStorageWriter; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.io.BufferedOutputStream; import java.io.IOException; import java.io.PrintWriter; diff --git a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/csv/BaseSheetGenerator.java b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/csv/BaseSheetGenerator.java index 45c82e17696b..3a4a95863de9 100644 --- a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/csv/BaseSheetGenerator.java +++ b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/csv/BaseSheetGenerator.java @@ -5,7 +5,7 @@ package io.airbyte.integrations.destination.azure_blob_storage.csv; import com.fasterxml.jackson.databind.JsonNode; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.util.LinkedList; import java.util.List; import java.util.UUID; diff --git a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/csv/CsvSheetGenerator.java b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/csv/CsvSheetGenerator.java index 1b705f90c282..8e1fa2941774 100644 --- a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/csv/CsvSheetGenerator.java +++ b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/csv/CsvSheetGenerator.java @@ -6,7 +6,7 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.integrations.destination.azure_blob_storage.csv.AzureBlobStorageCsvFormatConfig.Flattening; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.util.List; import java.util.UUID; diff --git a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/jsonl/AzureBlobStorageJsonlWriter.java b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/jsonl/AzureBlobStorageJsonlWriter.java index 26d3747a3490..e0cb89914414 100644 --- a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/jsonl/AzureBlobStorageJsonlWriter.java +++ b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/jsonl/AzureBlobStorageJsonlWriter.java @@ -14,8 +14,8 @@ import io.airbyte.integrations.destination.azure_blob_storage.AzureBlobStorageDestinationConfig; import io.airbyte.integrations.destination.azure_blob_storage.writer.AzureBlobStorageWriter; import io.airbyte.integrations.destination.azure_blob_storage.writer.BaseAzureBlobStorageWriter; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.io.BufferedOutputStream; import java.io.IOException; import java.io.PrintWriter; diff --git a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/writer/AzureBlobStorageWriter.java b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/writer/AzureBlobStorageWriter.java index 0c9f13461e9f..12d6b300555c 100644 --- a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/writer/AzureBlobStorageWriter.java +++ b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/writer/AzureBlobStorageWriter.java @@ -4,7 +4,7 @@ package io.airbyte.integrations.destination.azure_blob_storage.writer; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.io.IOException; import java.util.UUID; diff --git a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/writer/AzureBlobStorageWriterFactory.java b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/writer/AzureBlobStorageWriterFactory.java index 6eefa6d31ca1..d674cd5258c6 100644 --- a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/writer/AzureBlobStorageWriterFactory.java +++ b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/writer/AzureBlobStorageWriterFactory.java @@ -6,7 +6,7 @@ import com.azure.storage.blob.specialized.AppendBlobClient; import io.airbyte.integrations.destination.azure_blob_storage.AzureBlobStorageDestinationConfig; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; /** * Create different {@link AzureBlobStorageWriter} based on diff --git a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/writer/BaseAzureBlobStorageWriter.java b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/writer/BaseAzureBlobStorageWriter.java index 9328a33c8605..33433cad328f 100644 --- a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/writer/BaseAzureBlobStorageWriter.java +++ b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/writer/BaseAzureBlobStorageWriter.java @@ -6,9 +6,9 @@ import com.azure.storage.blob.specialized.AppendBlobClient; import io.airbyte.integrations.destination.azure_blob_storage.AzureBlobStorageDestinationConfig; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.io.IOException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/writer/ProductionWriterFactory.java b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/writer/ProductionWriterFactory.java index 29b1dddac78c..6351e5e99852 100644 --- a/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/writer/ProductionWriterFactory.java +++ b/airbyte-integrations/connectors/destination-azure-blob-storage/src/main/java/io/airbyte/integrations/destination/azure_blob_storage/writer/ProductionWriterFactory.java @@ -9,7 +9,7 @@ import io.airbyte.integrations.destination.azure_blob_storage.AzureBlobStorageFormat; import io.airbyte.integrations.destination.azure_blob_storage.csv.AzureBlobStorageCsvWriter; import io.airbyte.integrations.destination.azure_blob_storage.jsonl.AzureBlobStorageJsonlWriter; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-azure-blob-storage/src/test-integration/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-azure-blob-storage/src/test-integration/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobDestinationAcceptanceTest.java index fd08f5abca95..8c4a8b7787ff 100644 --- a/airbyte-integrations/connectors/destination-azure-blob-storage/src/test-integration/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-azure-blob-storage/src/test-integration/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobDestinationAcceptanceTest.java @@ -10,8 +10,8 @@ import com.google.common.collect.ImmutableMap; import io.airbyte.commons.io.IOs; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; import java.nio.file.Path; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; diff --git a/airbyte-integrations/connectors/destination-azure-blob-storage/src/test-integration/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobStorageJsonlDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-azure-blob-storage/src/test-integration/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobStorageJsonlDestinationAcceptanceTest.java index 4e20f59826ec..27222468a94c 100644 --- a/airbyte-integrations/connectors/destination-azure-blob-storage/src/test-integration/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobStorageJsonlDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-azure-blob-storage/src/test-integration/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobStorageJsonlDestinationAcceptanceTest.java @@ -17,7 +17,7 @@ public class AzureBlobStorageJsonlDestinationAcceptanceTest extends AzureBlobStorageDestinationAcceptanceTest { - protected AzureBlobStorageJsonlDestinationAcceptanceTest() { + public AzureBlobStorageJsonlDestinationAcceptanceTest() { super(AzureBlobStorageFormat.JSONL); } diff --git a/airbyte-integrations/connectors/destination-azure-blob-storage/src/test/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobDestinationTest.java b/airbyte-integrations/connectors/destination-azure-blob-storage/src/test/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobDestinationTest.java index 7e5126f780f0..f954d85131b3 100644 --- a/airbyte-integrations/connectors/destination-azure-blob-storage/src/test/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobDestinationTest.java +++ b/airbyte-integrations/connectors/destination-azure-blob-storage/src/test/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobDestinationTest.java @@ -10,7 +10,7 @@ import com.fasterxml.jackson.databind.JsonNode; import com.google.common.collect.ImmutableMap; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.junit.jupiter.api.Test; public class AzureBlobDestinationTest { diff --git a/airbyte-integrations/connectors/destination-azure-blob-storage/src/test/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobRecordConsumerTest.java b/airbyte-integrations/connectors/destination-azure-blob-storage/src/test/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobRecordConsumerTest.java index 5e0a5f2482b7..d4f0b686eda2 100644 --- a/airbyte-integrations/connectors/destination-azure-blob-storage/src/test/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobRecordConsumerTest.java +++ b/airbyte-integrations/connectors/destination-azure-blob-storage/src/test/java/io/airbyte/integrations/destination/azure_blob_storage/AzureBlobRecordConsumerTest.java @@ -7,8 +7,8 @@ import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; import io.airbyte.integrations.destination.azure_blob_storage.writer.AzureBlobStorageWriterFactory; import io.airbyte.integrations.standardtest.destination.PerStreamStateMessageTest; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.DisplayName; diff --git a/airbyte-integrations/connectors/destination-bigquery-denormalized/Dockerfile b/airbyte-integrations/connectors/destination-bigquery-denormalized/Dockerfile index a32f0bd1181b..53486620dae2 100644 --- a/airbyte-integrations/connectors/destination-bigquery-denormalized/Dockerfile +++ b/airbyte-integrations/connectors/destination-bigquery-denormalized/Dockerfile @@ -17,5 +17,5 @@ ENV ENABLE_SENTRY true COPY --from=build /airbyte /airbyte -LABEL io.airbyte.version=1.2.8 +LABEL io.airbyte.version=1.2.9 LABEL io.airbyte.name=airbyte/destination-bigquery-denormalized diff --git a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryDenormalizedDestination.java b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryDenormalizedDestination.java index 37f181f578e3..700e3b6390a4 100644 --- a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryDenormalizedDestination.java +++ b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryDenormalizedDestination.java @@ -20,8 +20,8 @@ import io.airbyte.integrations.destination.bigquery.uploader.UploaderType; import io.airbyte.integrations.destination.bigquery.uploader.config.UploaderConfig; import io.airbyte.integrations.destination.s3.avro.JsonToAvroSchemaConverter; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import java.io.IOException; import java.util.Map; import java.util.function.BiFunction; diff --git a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/DefaultBigQueryDenormalizedRecordFormatter.java b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/DefaultBigQueryDenormalizedRecordFormatter.java index 5f101e6f9f9f..286d65e11486 100644 --- a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/DefaultBigQueryDenormalizedRecordFormatter.java +++ b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/DefaultBigQueryDenormalizedRecordFormatter.java @@ -31,7 +31,7 @@ import io.airbyte.integrations.destination.bigquery.JsonSchemaType; import io.airbyte.integrations.destination.bigquery.formatter.arrayformater.ArrayFormatter; import io.airbyte.integrations.destination.bigquery.formatter.arrayformater.DefaultArrayFormatter; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.io.IOException; import java.util.Collections; import java.util.Comparator; diff --git a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/GcsBigQueryDenormalizedRecordFormatter.java b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/GcsBigQueryDenormalizedRecordFormatter.java index 0d247f294a69..8f8ebc9c0b63 100644 --- a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/GcsBigQueryDenormalizedRecordFormatter.java +++ b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/GcsBigQueryDenormalizedRecordFormatter.java @@ -10,7 +10,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.StandardNameTransformer; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.util.UUID; import java.util.concurrent.TimeUnit; diff --git a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test-integration/java/io/airbyte/integrations/destination/bigquery/BigQueryDenormalizedDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test-integration/java/io/airbyte/integrations/destination/bigquery/BigQueryDenormalizedDestinationAcceptanceTest.java index 2c84a7806a33..2efc146da794 100644 --- a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test-integration/java/io/airbyte/integrations/destination/bigquery/BigQueryDenormalizedDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test-integration/java/io/airbyte/integrations/destination/bigquery/BigQueryDenormalizedDestinationAcceptanceTest.java @@ -38,11 +38,11 @@ import io.airbyte.integrations.standardtest.destination.DestinationAcceptanceTest; import io.airbyte.integrations.standardtest.destination.argproviders.DataArgumentsProvider; import io.airbyte.integrations.standardtest.destination.comparator.TestDataComparator; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteCatalog; +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 java.io.IOException; import java.util.Collections; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test-integration/java/io/airbyte/integrations/destination/bigquery/BigQueryDenormalizedDestinationTest.java b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test-integration/java/io/airbyte/integrations/destination/bigquery/BigQueryDenormalizedDestinationTest.java index 174263209214..8f16ea09abfb 100644 --- a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test-integration/java/io/airbyte/integrations/destination/bigquery/BigQueryDenormalizedDestinationTest.java +++ b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test-integration/java/io/airbyte/integrations/destination/bigquery/BigQueryDenormalizedDestinationTest.java @@ -49,8 +49,8 @@ import com.google.cloud.bigquery.StandardSQLTypeName; import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.JavaBaseConstants; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.io.IOException; import java.time.Instant; import java.time.LocalDate; diff --git a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test-integration/java/io/airbyte/integrations/destination/bigquery/util/BigQueryDenormalizedTestDataUtils.java b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test-integration/java/io/airbyte/integrations/destination/bigquery/util/BigQueryDenormalizedTestDataUtils.java index f501cbf9531d..dd567a29661f 100644 --- a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test-integration/java/io/airbyte/integrations/destination/bigquery/util/BigQueryDenormalizedTestDataUtils.java +++ b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test-integration/java/io/airbyte/integrations/destination/bigquery/util/BigQueryDenormalizedTestDataUtils.java @@ -28,12 +28,12 @@ import io.airbyte.integrations.destination.bigquery.BigQueryDenormalizedTestConstants; import io.airbyte.integrations.destination.bigquery.BigQueryDestination; import io.airbyte.integrations.destination.bigquery.BigQueryUtils; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteStream; +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.v0.SyncMode; import java.io.ByteArrayInputStream; import java.io.IOException; import java.nio.charset.StandardCharsets; diff --git a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test/java/io/airbyte/integrations/destination/bigquery/BigQueryDenormalizedDestinationTest.java b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test/java/io/airbyte/integrations/destination/bigquery/BigQueryDenormalizedDestinationTest.java index 964bff57cb9f..567a357675ae 100644 --- a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test/java/io/airbyte/integrations/destination/bigquery/BigQueryDenormalizedDestinationTest.java +++ b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test/java/io/airbyte/integrations/destination/bigquery/BigQueryDenormalizedDestinationTest.java @@ -37,9 +37,9 @@ import io.airbyte.integrations.destination.bigquery.uploader.BigQueryUploaderFactory; import io.airbyte.integrations.destination.bigquery.uploader.UploaderType; import io.airbyte.integrations.destination.bigquery.uploader.config.UploaderConfig; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.io.IOException; import java.util.HashMap; import java.util.Map; diff --git a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test/java/io/airbyte/integrations/destination/bigquery/formatter/DefaultBigQueryDenormalizedRecordFormatterTest.java b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test/java/io/airbyte/integrations/destination/bigquery/formatter/DefaultBigQueryDenormalizedRecordFormatterTest.java index 7ceed170afb8..13ea39ea1054 100644 --- a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test/java/io/airbyte/integrations/destination/bigquery/formatter/DefaultBigQueryDenormalizedRecordFormatterTest.java +++ b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test/java/io/airbyte/integrations/destination/bigquery/formatter/DefaultBigQueryDenormalizedRecordFormatterTest.java @@ -36,7 +36,7 @@ import com.google.cloud.bigquery.StandardSQLTypeName; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.bigquery.BigQuerySQLNameTransformer; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.util.stream.Stream; import org.junit.jupiter.api.Test; import org.junit.jupiter.params.ParameterizedTest; diff --git a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test/java/io/airbyte/integrations/destination/bigquery/formatter/GcsBigQueryDenormalizedRecordFormatterTest.java b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test/java/io/airbyte/integrations/destination/bigquery/formatter/GcsBigQueryDenormalizedRecordFormatterTest.java index 0f136f48c675..c6b875928e65 100644 --- a/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test/java/io/airbyte/integrations/destination/bigquery/formatter/GcsBigQueryDenormalizedRecordFormatterTest.java +++ b/airbyte-integrations/connectors/destination-bigquery-denormalized/src/test/java/io/airbyte/integrations/destination/bigquery/formatter/GcsBigQueryDenormalizedRecordFormatterTest.java @@ -17,7 +17,7 @@ import com.google.cloud.bigquery.Schema; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.bigquery.BigQuerySQLNameTransformer; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import org.junit.jupiter.api.Test; import org.mockito.Mockito; diff --git a/airbyte-integrations/connectors/destination-bigquery/Dockerfile b/airbyte-integrations/connectors/destination-bigquery/Dockerfile index 575b8fe4b92a..d06f311b4e60 100644 --- a/airbyte-integrations/connectors/destination-bigquery/Dockerfile +++ b/airbyte-integrations/connectors/destination-bigquery/Dockerfile @@ -17,5 +17,5 @@ ENV ENABLE_SENTRY true COPY --from=build /airbyte /airbyte -LABEL io.airbyte.version=1.2.8 +LABEL io.airbyte.version=1.2.9 LABEL io.airbyte.name=airbyte/destination-bigquery diff --git a/airbyte-integrations/connectors/destination-bigquery/build.gradle b/airbyte-integrations/connectors/destination-bigquery/build.gradle index b060bdfde20e..42f989556d60 100644 --- a/airbyte-integrations/connectors/destination-bigquery/build.gradle +++ b/airbyte-integrations/connectors/destination-bigquery/build.gradle @@ -23,7 +23,7 @@ dependencies { implementation project(':airbyte-protocol:protocol-models') implementation project(':airbyte-integrations:bases:base-java-s3') implementation project(':airbyte-integrations:connectors:destination-gcs') - implementation ('com.github.airbytehq:json-avro-converter:1.0.1') { exclude group: 'ch.qos.logback', module: 'logback-classic'} + implementation ('com.github.airbytehq:json-avro-converter:1.1.0') { exclude group: 'ch.qos.logback', module: 'logback-classic'} testImplementation project(':airbyte-integrations:bases:standard-destination-test') diff --git a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryAvroSerializedBuffer.java b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryAvroSerializedBuffer.java index 7841ffe2fa23..a877c1ec9368 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryAvroSerializedBuffer.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryAvroSerializedBuffer.java @@ -11,10 +11,10 @@ import io.airbyte.integrations.destination.record_buffer.SerializableBuffer; import io.airbyte.integrations.destination.s3.avro.AvroSerializedBuffer; import io.airbyte.integrations.destination.s3.avro.S3AvroFormatConfig; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.io.IOException; import java.util.concurrent.Callable; import java.util.function.BiFunction; diff --git a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryDestination.java b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryDestination.java index 0e20d754eb6e..7ff3dfdaa5b6 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryDestination.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryDestination.java @@ -39,13 +39,13 @@ import io.airbyte.integrations.destination.record_buffer.FileBuffer; import io.airbyte.integrations.destination.record_buffer.SerializableBuffer; import io.airbyte.integrations.destination.s3.avro.S3AvroFormatConfig; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +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.AirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.io.ByteArrayInputStream; import java.io.IOException; import java.util.ArrayList; @@ -100,7 +100,10 @@ public AirbyteConnectionStatus check(final JsonNode config) { .build(); if (UploadingMethod.GCS.equals(uploadingMethod)) { - checkGcsPermission(config); + final AirbyteConnectionStatus status = checkGcsPermission(config); + if (!status.getStatus().equals(Status.SUCCEEDED)) { + return status; + } } final ImmutablePair result = BigQueryUtils.executeQuery(bigquery, queryConfig); @@ -120,7 +123,7 @@ public AirbyteConnectionStatus check(final JsonNode config) { * and delete an actual file. The latter is important because even if the service account may have * the proper permissions, the HMAC keys can only be verified by running the actual GCS check. */ - public AirbyteConnectionStatus checkGcsPermission(final JsonNode config) { + private AirbyteConnectionStatus checkGcsPermission(final JsonNode config) { final JsonNode loadingMethod = config.get(BigQueryConsts.LOADING_METHOD); final String bucketName = loadingMethod.get(BigQueryConsts.GCS_BUCKET_NAME).asText(); final List missingPermissions = new ArrayList<>(); diff --git a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryGcsOperations.java b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryGcsOperations.java index 480ad21fac4a..51a269725bef 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryGcsOperations.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryGcsOperations.java @@ -18,7 +18,7 @@ import io.airbyte.integrations.destination.gcs.GcsDestinationConfig; import io.airbyte.integrations.destination.gcs.GcsStorageOperations; import io.airbyte.integrations.destination.record_buffer.SerializableBuffer; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.util.HashSet; import java.util.List; import java.util.Set; diff --git a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryRecordConsumer.java b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryRecordConsumer.java index 989dc11a8606..babda88d3b8d 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryRecordConsumer.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryRecordConsumer.java @@ -8,9 +8,9 @@ import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; import io.airbyte.integrations.destination.bigquery.uploader.AbstractBigQueryUploader; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import java.util.ArrayList; import java.util.List; import java.util.Map; @@ -41,6 +41,15 @@ protected void startTracked() { // todo (cgardens) - move contents of #write into this method. } + /** + * Processes STATE and RECORD {@link AirbyteMessage} with all else logged as unexpected + * + *
  • For 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/main/java/io/airbyte/integrations/destination/bigquery/BigQueryStagingConsumerFactory.java b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryStagingConsumerFactory.java index 49eff33187a0..8b0399f86746 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryStagingConsumerFactory.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryStagingConsumerFactory.java @@ -17,10 +17,10 @@ import io.airbyte.integrations.destination.buffered_stream_consumer.BufferedStreamConsumer; import io.airbyte.integrations.destination.record_buffer.SerializableBuffer; import io.airbyte.integrations.destination.record_buffer.SerializedBufferingStrategy; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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 java.util.Map; import java.util.function.Consumer; import java.util.function.Function; diff --git a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryStagingOperations.java b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryStagingOperations.java index 9e6e3a667709..ef44b90aa939 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryStagingOperations.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryStagingOperations.java @@ -7,7 +7,7 @@ import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.TableId; import io.airbyte.integrations.destination.record_buffer.SerializableBuffer; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.util.List; /** diff --git a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryUtils.java b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryUtils.java index e6c9c68c52f5..c82dd5ba72db 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryUtils.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryUtils.java @@ -40,8 +40,8 @@ import io.airbyte.config.WorkerEnvConstants; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.gcs.GcsDestinationConfig; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.time.Instant; import java.time.LocalDateTime; import java.time.ZoneOffset; diff --git a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryWriteConfig.java b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryWriteConfig.java index 4483314f2370..0857d797fccd 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryWriteConfig.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/BigQueryWriteConfig.java @@ -6,7 +6,7 @@ import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.TableId; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.util.ArrayList; import java.util.List; import org.slf4j.Logger; diff --git a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/BigQueryRecordFormatter.java b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/BigQueryRecordFormatter.java index e9e2f07865f9..08488b0828ae 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/BigQueryRecordFormatter.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/BigQueryRecordFormatter.java @@ -7,7 +7,7 @@ import com.fasterxml.jackson.databind.JsonNode; import com.google.cloud.bigquery.Schema; import io.airbyte.integrations.destination.StandardNameTransformer; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.util.HashMap; import java.util.HashSet; import java.util.Map; diff --git a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/DefaultBigQueryRecordFormatter.java b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/DefaultBigQueryRecordFormatter.java index 9214fe3ac7e8..de891dbc50d6 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/DefaultBigQueryRecordFormatter.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/DefaultBigQueryRecordFormatter.java @@ -12,7 +12,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.StandardNameTransformer; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.util.Map; import java.util.UUID; import java.util.concurrent.TimeUnit; diff --git a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/GcsAvroBigQueryRecordFormatter.java b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/GcsAvroBigQueryRecordFormatter.java index 780e1693ea9f..8fa89885ce9a 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/GcsAvroBigQueryRecordFormatter.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/formatter/GcsAvroBigQueryRecordFormatter.java @@ -6,7 +6,7 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.integrations.destination.StandardNameTransformer; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; /** * Formatter for GCS Avro uploader. Contains specific filling of default Airbyte attributes. diff --git a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/AbstractBigQueryUploader.java b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/AbstractBigQueryUploader.java index de6c9a2a1de0..39d76d2eeef3 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/AbstractBigQueryUploader.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/AbstractBigQueryUploader.java @@ -20,7 +20,7 @@ import io.airbyte.integrations.destination.bigquery.BigQueryUtils; import io.airbyte.integrations.destination.bigquery.formatter.BigQueryRecordFormatter; import io.airbyte.integrations.destination.s3.writer.DestinationWriter; -import io.airbyte.protocol.models.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; import java.io.IOException; import java.util.function.Consumer; import java.util.stream.Collectors; diff --git a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/AbstractGscBigQueryUploader.java b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/AbstractGscBigQueryUploader.java index 4b59f2239b56..123fe3c27843 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/AbstractGscBigQueryUploader.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/AbstractGscBigQueryUploader.java @@ -18,7 +18,7 @@ import io.airbyte.integrations.destination.bigquery.formatter.BigQueryRecordFormatter; import io.airbyte.integrations.destination.gcs.GcsDestinationConfig; import io.airbyte.integrations.destination.s3.writer.DestinationFileWriter; -import io.airbyte.protocol.models.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; import java.util.List; import java.util.function.Consumer; import org.slf4j.Logger; diff --git a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/BigQueryDirectUploader.java b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/BigQueryDirectUploader.java index b9d05ca54d9c..9ee4e2b4644f 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/BigQueryDirectUploader.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/BigQueryDirectUploader.java @@ -8,7 +8,7 @@ import io.airbyte.integrations.destination.bigquery.BigQueryUtils; import io.airbyte.integrations.destination.bigquery.formatter.BigQueryRecordFormatter; import io.airbyte.integrations.destination.bigquery.writer.BigQueryTableWriter; -import io.airbyte.protocol.models.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; import java.util.function.Consumer; public class BigQueryDirectUploader extends AbstractBigQueryUploader { diff --git a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/BigQueryUploaderFactory.java b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/BigQueryUploaderFactory.java index 53afe07f940f..7925dcdb586b 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/BigQueryUploaderFactory.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/BigQueryUploaderFactory.java @@ -22,7 +22,7 @@ import io.airbyte.integrations.destination.bigquery.writer.BigQueryTableWriter; import io.airbyte.integrations.destination.gcs.GcsDestinationConfig; import io.airbyte.integrations.destination.gcs.avro.GcsAvroWriter; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.io.IOException; import java.sql.Timestamp; import java.util.HashSet; diff --git a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/config/UploaderConfig.java b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/config/UploaderConfig.java index 8c6a38161624..415914f44ee3 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/config/UploaderConfig.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/uploader/config/UploaderConfig.java @@ -10,7 +10,7 @@ import io.airbyte.integrations.destination.bigquery.UploadingMethod; import io.airbyte.integrations.destination.bigquery.formatter.BigQueryRecordFormatter; import io.airbyte.integrations.destination.bigquery.uploader.UploaderType; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.util.Map; import lombok.Builder; import lombok.Getter; diff --git a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/writer/BigQueryTableWriter.java b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/writer/BigQueryTableWriter.java index d3df0d237d82..4f5eb8f2af28 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/writer/BigQueryTableWriter.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/main/java/io/airbyte/integrations/destination/bigquery/writer/BigQueryTableWriter.java @@ -9,7 +9,7 @@ import com.google.common.base.Charsets; import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.destination.s3.writer.DestinationWriter; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.io.IOException; import java.nio.ByteBuffer; import java.util.UUID; 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 4dae83c587ea..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,19 +35,19 @@ import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.NamingConventionTransformer; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; 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; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +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.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.ConnectorSpecification; +import io.airbyte.protocol.models.v0.DestinationSyncMode; 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 33a14f111f85..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.CatalogHelpers; -import io.airbyte.protocol.models.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-bigquery/src/test/java/io/airbyte/integrations/destination/bigquery/BigQueryRecordConsumerTest.java b/airbyte-integrations/connectors/destination-bigquery/src/test/java/io/airbyte/integrations/destination/bigquery/BigQueryRecordConsumerTest.java index 819e3d179e68..6b47fd68b3a4 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/test/java/io/airbyte/integrations/destination/bigquery/BigQueryRecordConsumerTest.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/test/java/io/airbyte/integrations/destination/bigquery/BigQueryRecordConsumerTest.java @@ -7,8 +7,8 @@ import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; import io.airbyte.integrations.destination.bigquery.uploader.AbstractBigQueryUploader; import io.airbyte.integrations.standardtest.destination.PerStreamStateMessageTest; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import java.util.Map; import java.util.function.Consumer; import org.junit.jupiter.api.extension.ExtendWith; diff --git a/airbyte-integrations/connectors/destination-cassandra/src/main/java/io/airbyte/integrations/destination/cassandra/CassandraDestination.java b/airbyte-integrations/connectors/destination-cassandra/src/main/java/io/airbyte/integrations/destination/cassandra/CassandraDestination.java index eb4bb82332da..94faa7d707c1 100644 --- a/airbyte-integrations/connectors/destination-cassandra/src/main/java/io/airbyte/integrations/destination/cassandra/CassandraDestination.java +++ b/airbyte-integrations/connectors/destination-cassandra/src/main/java/io/airbyte/integrations/destination/cassandra/CassandraDestination.java @@ -9,9 +9,9 @@ import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.IntegrationRunner; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.UUID; import java.util.function.Consumer; import org.slf4j.Logger; diff --git a/airbyte-integrations/connectors/destination-cassandra/src/main/java/io/airbyte/integrations/destination/cassandra/CassandraMessageConsumer.java b/airbyte-integrations/connectors/destination-cassandra/src/main/java/io/airbyte/integrations/destination/cassandra/CassandraMessageConsumer.java index c2d138f2539c..7a4512df539f 100644 --- a/airbyte-integrations/connectors/destination-cassandra/src/main/java/io/airbyte/integrations/destination/cassandra/CassandraMessageConsumer.java +++ b/airbyte-integrations/connectors/destination-cassandra/src/main/java/io/airbyte/integrations/destination/cassandra/CassandraMessageConsumer.java @@ -6,9 +6,9 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.Map; import java.util.function.Consumer; import java.util.stream.Collectors; diff --git a/airbyte-integrations/connectors/destination-cassandra/src/main/java/io/airbyte/integrations/destination/cassandra/CassandraStreamConfig.java b/airbyte-integrations/connectors/destination-cassandra/src/main/java/io/airbyte/integrations/destination/cassandra/CassandraStreamConfig.java index 0822fa036eb6..9a5c22e6e4a8 100644 --- a/airbyte-integrations/connectors/destination-cassandra/src/main/java/io/airbyte/integrations/destination/cassandra/CassandraStreamConfig.java +++ b/airbyte-integrations/connectors/destination-cassandra/src/main/java/io/airbyte/integrations/destination/cassandra/CassandraStreamConfig.java @@ -4,7 +4,7 @@ package io.airbyte.integrations.destination.cassandra; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; /* * Immutable configuration class for storing destination stream config. diff --git a/airbyte-integrations/connectors/destination-cassandra/src/test-integration/java/io/airbyte/integrations/destination/cassandra/CassandraDestinationIT.java b/airbyte-integrations/connectors/destination-cassandra/src/test-integration/java/io/airbyte/integrations/destination/cassandra/CassandraDestinationIT.java index 8523749e9e50..86c94ba2dd1c 100644 --- a/airbyte-integrations/connectors/destination-cassandra/src/test-integration/java/io/airbyte/integrations/destination/cassandra/CassandraDestinationIT.java +++ b/airbyte-integrations/connectors/destination-cassandra/src/test-integration/java/io/airbyte/integrations/destination/cassandra/CassandraDestinationIT.java @@ -7,7 +7,7 @@ import static org.assertj.core.api.Assertions.assertThat; import io.airbyte.integrations.destination.cassandra.CassandraContainerInitializr.ConfiguredCassandraContainer; -import io.airbyte.protocol.models.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInstance; diff --git a/airbyte-integrations/connectors/destination-cassandra/src/test-integration/java/io/airbyte/integrations/destination/cassandra/CassandraMessageConsumerIT.java b/airbyte-integrations/connectors/destination-cassandra/src/test-integration/java/io/airbyte/integrations/destination/cassandra/CassandraMessageConsumerIT.java index 104f099264fb..f74d65fb4076 100644 --- a/airbyte-integrations/connectors/destination-cassandra/src/test-integration/java/io/airbyte/integrations/destination/cassandra/CassandraMessageConsumerIT.java +++ b/airbyte-integrations/connectors/destination-cassandra/src/test-integration/java/io/airbyte/integrations/destination/cassandra/CassandraMessageConsumerIT.java @@ -10,8 +10,8 @@ import com.fasterxml.jackson.databind.JsonNode; import com.google.common.collect.ImmutableMap; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.util.function.Function; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.MethodOrderer.OrderAnnotation; diff --git a/airbyte-integrations/connectors/destination-cassandra/src/test-integration/java/io/airbyte/integrations/destination/cassandra/TestDataFactory.java b/airbyte-integrations/connectors/destination-cassandra/src/test-integration/java/io/airbyte/integrations/destination/cassandra/TestDataFactory.java index a0b469672476..855b3549dff1 100644 --- a/airbyte-integrations/connectors/destination-cassandra/src/test-integration/java/io/airbyte/integrations/destination/cassandra/TestDataFactory.java +++ b/airbyte-integrations/connectors/destination-cassandra/src/test-integration/java/io/airbyte/integrations/destination/cassandra/TestDataFactory.java @@ -8,13 +8,13 @@ import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStream; +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.v0.SyncMode; import java.time.Instant; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-cassandra/src/test/java/io/airbyte/integrations/destination/cassandra/CassandraRecordConsumerTest.java b/airbyte-integrations/connectors/destination-cassandra/src/test/java/io/airbyte/integrations/destination/cassandra/CassandraRecordConsumerTest.java index 5b4eddfc38b9..860cbe55e313 100644 --- a/airbyte-integrations/connectors/destination-cassandra/src/test/java/io/airbyte/integrations/destination/cassandra/CassandraRecordConsumerTest.java +++ b/airbyte-integrations/connectors/destination-cassandra/src/test/java/io/airbyte/integrations/destination/cassandra/CassandraRecordConsumerTest.java @@ -6,8 +6,8 @@ import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; import io.airbyte.integrations.standardtest.destination.PerStreamStateMessageTest; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.extension.ExtendWith; diff --git a/airbyte-integrations/connectors/destination-cassandra/src/test/java/io/airbyte/integrations/destination/cassandra/TestDataFactory.java b/airbyte-integrations/connectors/destination-cassandra/src/test/java/io/airbyte/integrations/destination/cassandra/TestDataFactory.java index a0b469672476..855b3549dff1 100644 --- a/airbyte-integrations/connectors/destination-cassandra/src/test/java/io/airbyte/integrations/destination/cassandra/TestDataFactory.java +++ b/airbyte-integrations/connectors/destination-cassandra/src/test/java/io/airbyte/integrations/destination/cassandra/TestDataFactory.java @@ -8,13 +8,13 @@ import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStream; +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.v0.SyncMode; import java.time.Instant; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-clickhouse-strict-encrypt/src/main/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestinationStrictEncrypt.java b/airbyte-integrations/connectors/destination-clickhouse-strict-encrypt/src/main/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestinationStrictEncrypt.java index c452bfb89d3a..cfdea652fab1 100644 --- a/airbyte-integrations/connectors/destination-clickhouse-strict-encrypt/src/main/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestinationStrictEncrypt.java +++ b/airbyte-integrations/connectors/destination-clickhouse-strict-encrypt/src/main/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestinationStrictEncrypt.java @@ -10,7 +10,7 @@ import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.spec_modification.SpecModifyingDestination; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-clickhouse-strict-encrypt/src/test/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestinationStrictEncryptTest.java b/airbyte-integrations/connectors/destination-clickhouse-strict-encrypt/src/test/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestinationStrictEncryptTest.java index 89663d8f7c06..449d8d1d909a 100644 --- a/airbyte-integrations/connectors/destination-clickhouse-strict-encrypt/src/test/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestinationStrictEncryptTest.java +++ b/airbyte-integrations/connectors/destination-clickhouse-strict-encrypt/src/test/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestinationStrictEncryptTest.java @@ -8,7 +8,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.junit.jupiter.api.Test; class ClickhouseDestinationStrictEncryptTest { diff --git a/airbyte-integrations/connectors/destination-clickhouse/src/main/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestination.java b/airbyte-integrations/connectors/destination-clickhouse/src/main/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestination.java index 1ddbd393ff20..206e31bf7a41 100644 --- a/airbyte-integrations/connectors/destination-clickhouse/src/main/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestination.java +++ b/airbyte-integrations/connectors/destination-clickhouse/src/main/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestination.java @@ -17,8 +17,8 @@ import io.airbyte.integrations.base.ssh.SshWrappedDestination; import io.airbyte.integrations.destination.NamingConventionTransformer; import io.airbyte.integrations.destination.jdbc.AbstractJdbcDestination; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; import java.util.Collections; import java.util.List; import java.util.Map; diff --git a/airbyte-integrations/connectors/destination-clickhouse/src/main/java/io/airbyte/integrations/destination/clickhouse/ClickhouseSqlOperations.java b/airbyte-integrations/connectors/destination-clickhouse/src/main/java/io/airbyte/integrations/destination/clickhouse/ClickhouseSqlOperations.java index 3b9e7921e51c..283f602579c5 100644 --- a/airbyte-integrations/connectors/destination-clickhouse/src/main/java/io/airbyte/integrations/destination/clickhouse/ClickhouseSqlOperations.java +++ b/airbyte-integrations/connectors/destination-clickhouse/src/main/java/io/airbyte/integrations/destination/clickhouse/ClickhouseSqlOperations.java @@ -10,7 +10,7 @@ import io.airbyte.db.jdbc.JdbcDatabase; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.jdbc.JdbcSqlOperations; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.io.File; import java.io.IOException; import java.nio.file.Files; diff --git a/airbyte-integrations/connectors/destination-clickhouse/src/test/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestinationSpecTest.java b/airbyte-integrations/connectors/destination-clickhouse/src/test/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestinationSpecTest.java index 9577ff5db275..425dcb4d2404 100644 --- a/airbyte-integrations/connectors/destination-clickhouse/src/test/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestinationSpecTest.java +++ b/airbyte-integrations/connectors/destination-clickhouse/src/test/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestinationSpecTest.java @@ -14,7 +14,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; import io.airbyte.db.jdbc.JdbcUtils; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.validation.json.JsonSchemaValidator; import java.io.File; import java.io.IOException; 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 535cae2d7f99..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.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; 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 java.time.Instant; import java.util.Comparator; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-csv/src/main/java/io/airbyte/integrations/destination/csv/CsvDestination.java b/airbyte-integrations/connectors/destination-csv/src/main/java/io/airbyte/integrations/destination/csv/CsvDestination.java index f296f945e709..82f9dcbdea24 100644 --- a/airbyte-integrations/connectors/destination-csv/src/main/java/io/airbyte/integrations/destination/csv/CsvDestination.java +++ b/airbyte-integrations/connectors/destination-csv/src/main/java/io/airbyte/integrations/destination/csv/CsvDestination.java @@ -14,14 +14,14 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.StandardNameTransformer; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +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.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.io.FileWriter; import java.io.IOException; import java.nio.charset.Charset; 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 b4e157994526..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,16 +23,16 @@ import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.StandardNameTransformer; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; 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; +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.ConnectorSpecification; import java.io.FileReader; import java.io.IOException; import java.io.Reader; diff --git a/airbyte-integrations/connectors/destination-databricks/build.gradle b/airbyte-integrations/connectors/destination-databricks/build.gradle index 5ad636950d58..4ca5d1e85fc8 100644 --- a/airbyte-integrations/connectors/destination-databricks/build.gradle +++ b/airbyte-integrations/connectors/destination-databricks/build.gradle @@ -47,7 +47,7 @@ dependencies { exclude group: 'org.slf4j', module: 'slf4j-reload4j' } implementation ('org.apache.parquet:parquet-avro:1.12.0') { exclude group: 'org.slf4j', module: 'slf4j-log4j12'} - implementation ('com.github.airbytehq:json-avro-converter:1.0.1') { exclude group: 'ch.qos.logback', module: 'logback-classic'} + implementation ('com.github.airbytehq:json-avro-converter:1.1.0') { exclude group: 'ch.qos.logback', module: 'logback-classic'} implementation 'com.azure:azure-storage-blob:12.18.0' 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 68035ece6374..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 @@ -19,10 +19,10 @@ import io.airbyte.integrations.destination.azure_blob_storage.csv.AzureBlobStorageCsvWriter; import io.airbyte.integrations.destination.jdbc.SqlOperations; import io.airbyte.integrations.destination.jdbc.copy.azure.AzureBlobStorageConfig; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.io.IOException; import java.util.*; import org.slf4j.Logger; @@ -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-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksAzureBlobStorageStreamCopierFactory.java b/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksAzureBlobStorageStreamCopierFactory.java index ff1ef07dce97..6d3bb621f362 100644 --- a/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksAzureBlobStorageStreamCopierFactory.java +++ b/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksAzureBlobStorageStreamCopierFactory.java @@ -11,8 +11,8 @@ import io.airbyte.integrations.destination.jdbc.copy.StreamCopier; import io.airbyte.integrations.destination.jdbc.copy.StreamCopierFactory; import io.airbyte.integrations.destination.jdbc.copy.azure.AzureBlobStorageConfig; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; public class DatabricksAzureBlobStorageStreamCopierFactory implements DatabricksStreamCopierFactory { diff --git a/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksBaseDestination.java b/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksBaseDestination.java index dab489e9cb37..cfee659bc3df 100644 --- a/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksBaseDestination.java +++ b/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksBaseDestination.java @@ -14,8 +14,8 @@ import io.airbyte.integrations.destination.jdbc.SqlOperations; import io.airbyte.integrations.destination.jdbc.copy.CopyConsumerFactory; import io.airbyte.integrations.destination.jdbc.copy.CopyDestination; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import javax.sql.DataSource; diff --git a/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksS3StreamCopier.java b/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksS3StreamCopier.java index f272c813644a..4605d81459d1 100644 --- a/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksS3StreamCopier.java +++ b/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksS3StreamCopier.java @@ -16,8 +16,8 @@ import io.airbyte.integrations.destination.s3.parquet.S3ParquetFormatConfig; import io.airbyte.integrations.destination.s3.parquet.S3ParquetWriter; import io.airbyte.integrations.destination.s3.writer.S3WriterFactory; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.sql.Timestamp; import java.util.Optional; import java.util.UUID; diff --git a/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksS3StreamCopierFactory.java b/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksS3StreamCopierFactory.java index 8d6b3433fd46..1b85fa51f308 100644 --- a/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksS3StreamCopierFactory.java +++ b/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksS3StreamCopierFactory.java @@ -12,8 +12,8 @@ import io.airbyte.integrations.destination.jdbc.copy.StreamCopierFactory; import io.airbyte.integrations.destination.s3.S3DestinationConfig; import io.airbyte.integrations.destination.s3.writer.ProductionWriterFactory; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.sql.Timestamp; public class DatabricksS3StreamCopierFactory implements DatabricksStreamCopierFactory { diff --git a/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksSqlOperations.java b/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksSqlOperations.java index 2c8179c8d2a1..7c360d7d2a10 100644 --- a/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksSqlOperations.java +++ b/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksSqlOperations.java @@ -7,7 +7,7 @@ import io.airbyte.db.jdbc.JdbcDatabase; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.jdbc.JdbcSqlOperations; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.util.List; public class DatabricksSqlOperations extends JdbcSqlOperations { diff --git a/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksStreamCopier.java b/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksStreamCopier.java index 9d3c3b987a97..f525448e6d7b 100644 --- a/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksStreamCopier.java +++ b/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksStreamCopier.java @@ -10,8 +10,8 @@ import io.airbyte.integrations.destination.jdbc.StagingFilenameGenerator; import io.airbyte.integrations.destination.jdbc.constants.GlobalDataSizeConstants; import io.airbyte.integrations.destination.jdbc.copy.StreamCopier; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-dev-null/src/main/java/io/airbyte/integrations/destination/dev_null/DevNullDestination.java b/airbyte-integrations/connectors/destination-dev-null/src/main/java/io/airbyte/integrations/destination/dev_null/DevNullDestination.java index 65d471b0a0e5..4d696c43dc09 100644 --- a/airbyte-integrations/connectors/destination-dev-null/src/main/java/io/airbyte/integrations/destination/dev_null/DevNullDestination.java +++ b/airbyte-integrations/connectors/destination-dev-null/src/main/java/io/airbyte/integrations/destination/dev_null/DevNullDestination.java @@ -12,7 +12,7 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.spec_modification.SpecModifyingDestination; import io.airbyte.integrations.destination.e2e_test.TestingDestinations; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.util.Iterator; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-dev-null/src/test-integration/java/io/airbyte/integrations/destination/dev_null/DevNullDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-dev-null/src/test-integration/java/io/airbyte/integrations/destination/dev_null/DevNullDestinationAcceptanceTest.java index 04529157d8f9..2a2608900245 100644 --- a/airbyte-integrations/connectors/destination-dev-null/src/test-integration/java/io/airbyte/integrations/destination/dev_null/DevNullDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-dev-null/src/test-integration/java/io/airbyte/integrations/destination/dev_null/DevNullDestinationAcceptanceTest.java @@ -9,8 +9,8 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.standardtest.destination.DestinationAcceptanceTest; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.util.Collections; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-dev-null/src/test/java/io/airbyte/integrations/destination/dev_null/DevNullDestinationTest.java b/airbyte-integrations/connectors/destination-dev-null/src/test/java/io/airbyte/integrations/destination/dev_null/DevNullDestinationTest.java index c71088b41ee2..38133a693f1e 100644 --- a/airbyte-integrations/connectors/destination-dev-null/src/test/java/io/airbyte/integrations/destination/dev_null/DevNullDestinationTest.java +++ b/airbyte-integrations/connectors/destination-dev-null/src/test/java/io/airbyte/integrations/destination/dev_null/DevNullDestinationTest.java @@ -8,7 +8,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.junit.jupiter.api.Test; class DevNullDestinationTest { diff --git a/airbyte-integrations/connectors/destination-doris/src/main/java/io/airbyte/integrations/destination/doris/DorisConsumer.java b/airbyte-integrations/connectors/destination-doris/src/main/java/io/airbyte/integrations/destination/doris/DorisConsumer.java index e5447673a8b4..d2376671e826 100644 --- a/airbyte-integrations/connectors/destination-doris/src/main/java/io/airbyte/integrations/destination/doris/DorisConsumer.java +++ b/airbyte-integrations/connectors/destination-doris/src/main/java/io/airbyte/integrations/destination/doris/DorisConsumer.java @@ -7,9 +7,9 @@ import com.fasterxml.jackson.core.io.JsonStringEncoder; import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.CommitOnStateAirbyteMessageConsumer; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.io.IOException; import java.nio.file.Files; import java.util.Map; diff --git a/airbyte-integrations/connectors/destination-doris/src/main/java/io/airbyte/integrations/destination/doris/DorisDestination.java b/airbyte-integrations/connectors/destination-doris/src/main/java/io/airbyte/integrations/destination/doris/DorisDestination.java index 5144b4646014..d276bead44b0 100644 --- a/airbyte-integrations/connectors/destination-doris/src/main/java/io/airbyte/integrations/destination/doris/DorisDestination.java +++ b/airbyte-integrations/connectors/destination-doris/src/main/java/io/airbyte/integrations/destination/doris/DorisDestination.java @@ -14,8 +14,12 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.StandardNameTransformer; -import io.airbyte.protocol.models.*; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; +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.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.io.FileWriter; import java.io.IOException; import java.nio.charset.Charset; diff --git a/airbyte-integrations/connectors/destination-doris/src/test/java/io/airbyte/integrations/destination/doris/DorisDestinationTest.java b/airbyte-integrations/connectors/destination-doris/src/test/java/io/airbyte/integrations/destination/doris/DorisDestinationTest.java index 6e504f925109..62aab6eefacf 100644 --- a/airbyte-integrations/connectors/destination-doris/src/test/java/io/airbyte/integrations/destination/doris/DorisDestinationTest.java +++ b/airbyte-integrations/connectors/destination-doris/src/test/java/io/airbyte/integrations/destination/doris/DorisDestinationTest.java @@ -17,8 +17,16 @@ import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.destination.StandardNameTransformer; -import io.airbyte.protocol.models.*; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; +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; +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.ConnectorSpecification; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; diff --git a/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbConsumer.java b/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbConsumer.java index b4317776c834..42050360d5da 100644 --- a/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbConsumer.java +++ b/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbConsumer.java @@ -13,8 +13,12 @@ import com.amazonaws.services.dynamodbv2.AmazonDynamoDBClientBuilder; import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; -import io.airbyte.protocol.models.*; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +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.v0.ConfiguredAirbyteStream; import java.util.*; import java.util.function.Consumer; import org.slf4j.Logger; diff --git a/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbDestination.java b/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbDestination.java index 24ed2c81019c..2edf04c5c43d 100644 --- a/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbDestination.java +++ b/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbDestination.java @@ -9,9 +9,9 @@ import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.IntegrationRunner; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbDestinationStrictEncrypt.java b/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbDestinationStrictEncrypt.java index bcf47a4678dd..f3b91bd07062 100644 --- a/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbDestinationStrictEncrypt.java +++ b/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbDestinationStrictEncrypt.java @@ -5,7 +5,7 @@ package io.airbyte.integrations.destination.dynamodb; import com.fasterxml.jackson.databind.JsonNode; -import io.airbyte.protocol.models.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; public class DynamodbDestinationStrictEncrypt extends DynamodbDestination { diff --git a/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbOutputTableHelper.java b/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbOutputTableHelper.java index 0f53e6a0bd32..f5d0a2904441 100644 --- a/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbOutputTableHelper.java +++ b/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbOutputTableHelper.java @@ -5,7 +5,7 @@ package io.airbyte.integrations.destination.dynamodb; import io.airbyte.integrations.destination.ExtendedNameTransformer; -import io.airbyte.protocol.models.AirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteStream; import java.util.LinkedList; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbWriter.java b/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbWriter.java index 6c23842e2437..7738a15e65ae 100644 --- a/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbWriter.java +++ b/airbyte-integrations/connectors/destination-dynamodb/src/main/java/io/airbyte/integrations/destination/dynamodb/DynamodbWriter.java @@ -13,9 +13,9 @@ import com.fasterxml.jackson.databind.ObjectWriter; import io.airbyte.commons.jackson.MoreMappers; import io.airbyte.integrations.base.JavaBaseConstants; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.io.IOException; import java.util.Map; import java.util.UUID; diff --git a/airbyte-integrations/connectors/destination-dynamodb/src/test/java/io/airbyte/integrations/destination/dynamodb/DynamodbConsumerTest.java b/airbyte-integrations/connectors/destination-dynamodb/src/test/java/io/airbyte/integrations/destination/dynamodb/DynamodbConsumerTest.java index 73b544aacaea..a8dc49a723e9 100644 --- a/airbyte-integrations/connectors/destination-dynamodb/src/test/java/io/airbyte/integrations/destination/dynamodb/DynamodbConsumerTest.java +++ b/airbyte-integrations/connectors/destination-dynamodb/src/test/java/io/airbyte/integrations/destination/dynamodb/DynamodbConsumerTest.java @@ -6,8 +6,8 @@ import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; import io.airbyte.integrations.standardtest.destination.PerStreamStateMessageTest; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.extension.ExtendWith; diff --git a/airbyte-integrations/connectors/destination-dynamodb/src/test/java/io/airbyte/integrations/destination/dynamodb/DynamodbDestinationStrictEncryptTest.java b/airbyte-integrations/connectors/destination-dynamodb/src/test/java/io/airbyte/integrations/destination/dynamodb/DynamodbDestinationStrictEncryptTest.java index aeef3f3afbf6..f12d4ad25c3c 100644 --- a/airbyte-integrations/connectors/destination-dynamodb/src/test/java/io/airbyte/integrations/destination/dynamodb/DynamodbDestinationStrictEncryptTest.java +++ b/airbyte-integrations/connectors/destination-dynamodb/src/test/java/io/airbyte/integrations/destination/dynamodb/DynamodbDestinationStrictEncryptTest.java @@ -11,8 +11,8 @@ import com.google.common.collect.ImmutableMap; import io.airbyte.commons.io.IOs; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; import java.nio.file.Files; import java.nio.file.Path; import org.junit.jupiter.api.Test; diff --git a/airbyte-integrations/connectors/destination-dynamodb/src/test/java/io/airbyte/integrations/destination/dynamodb/DynamodbDestinationTest.java b/airbyte-integrations/connectors/destination-dynamodb/src/test/java/io/airbyte/integrations/destination/dynamodb/DynamodbDestinationTest.java index 25043993bd34..4c8e527e2104 100644 --- a/airbyte-integrations/connectors/destination-dynamodb/src/test/java/io/airbyte/integrations/destination/dynamodb/DynamodbDestinationTest.java +++ b/airbyte-integrations/connectors/destination-dynamodb/src/test/java/io/airbyte/integrations/destination/dynamodb/DynamodbDestinationTest.java @@ -9,7 +9,8 @@ import com.fasterxml.jackson.databind.JsonNode; import com.google.common.collect.Lists; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.*; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.SyncMode; import org.junit.jupiter.api.Test; class DynamodbDestinationTest { diff --git a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/FailAfterNDestination.java b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/FailAfterNDestination.java index 1e0fb3d8b14f..34884cabac2b 100644 --- a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/FailAfterNDestination.java +++ b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/FailAfterNDestination.java @@ -8,11 +8,11 @@ import io.airbyte.integrations.BaseConnector; import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/LoggingDestination.java b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/LoggingDestination.java index f91dbc58ff35..d247ff26941a 100644 --- a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/LoggingDestination.java +++ b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/LoggingDestination.java @@ -10,10 +10,10 @@ import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.destination.e2e_test.logging.LoggingConsumer; import io.airbyte.integrations.destination.e2e_test.logging.TestingLoggerFactory; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/SilentDestination.java b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/SilentDestination.java index 47e61ecc03d6..a8232e4c7650 100644 --- a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/SilentDestination.java +++ b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/SilentDestination.java @@ -8,11 +8,11 @@ import io.airbyte.integrations.BaseConnector; import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.function.Consumer; /** diff --git a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/TestingDestinations.java b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/TestingDestinations.java index 718ff5b0ff68..9a816411da69 100644 --- a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/TestingDestinations.java +++ b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/TestingDestinations.java @@ -10,10 +10,10 @@ import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.IntegrationRunner; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.ConfiguredAirbyteCatalog; import java.util.Map; import java.util.function.Consumer; import org.slf4j.Logger; diff --git a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/ThrottledDestination.java b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/ThrottledDestination.java index 893997ae333c..bc9d528867b5 100644 --- a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/ThrottledDestination.java +++ b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/ThrottledDestination.java @@ -10,11 +10,11 @@ import io.airbyte.integrations.BaseConnector; import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/BaseLogger.java b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/BaseLogger.java index ae99565a89a5..ea9bcab7049b 100644 --- a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/BaseLogger.java +++ b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/BaseLogger.java @@ -4,8 +4,8 @@ package io.airbyte.integrations.destination.e2e_test.logging; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import java.time.Instant; import java.time.OffsetDateTime; import java.time.ZoneId; diff --git a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/EveryNthLogger.java b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/EveryNthLogger.java index 127e53bee3cb..66c7c8aced2f 100644 --- a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/EveryNthLogger.java +++ b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/EveryNthLogger.java @@ -4,8 +4,8 @@ package io.airbyte.integrations.destination.e2e_test.logging; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/FirstNLogger.java b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/FirstNLogger.java index 2ba624427608..5b4ee187048d 100644 --- a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/FirstNLogger.java +++ b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/FirstNLogger.java @@ -4,8 +4,8 @@ package io.airbyte.integrations.destination.e2e_test.logging; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/LoggingConsumer.java b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/LoggingConsumer.java index d1252f3b3f6e..bba82af86503 100644 --- a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/LoggingConsumer.java +++ b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/LoggingConsumer.java @@ -6,13 +6,13 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.AirbyteMessageConsumer; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +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.AirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.util.HashMap; import java.util.Map; import java.util.function.Consumer; diff --git a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/RandomSamplingLogger.java b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/RandomSamplingLogger.java index 035f911623f4..3ba665ae7812 100644 --- a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/RandomSamplingLogger.java +++ b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/RandomSamplingLogger.java @@ -4,8 +4,8 @@ package io.airbyte.integrations.destination.e2e_test.logging; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import java.util.Random; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/TestingLogger.java b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/TestingLogger.java index 1c4230d3e862..5a64a7e8fa9f 100644 --- a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/TestingLogger.java +++ b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/TestingLogger.java @@ -4,7 +4,7 @@ package io.airbyte.integrations.destination.e2e_test.logging; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; public interface TestingLogger { diff --git a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/TestingLoggerFactory.java b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/TestingLoggerFactory.java index 5c68bc347417..ef41ef47030c 100644 --- a/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/TestingLoggerFactory.java +++ b/airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/TestingLoggerFactory.java @@ -6,7 +6,7 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.integrations.destination.e2e_test.logging.TestingLogger.LoggingType; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; public class TestingLoggerFactory { diff --git a/airbyte-integrations/connectors/destination-e2e-test/src/test-integration/java/io/airbyte/integrations/destination/e2e_test/TestingSilentDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-e2e-test/src/test-integration/java/io/airbyte/integrations/destination/e2e_test/TestingSilentDestinationAcceptanceTest.java index b360748c95f2..46ac980681e6 100644 --- a/airbyte-integrations/connectors/destination-e2e-test/src/test-integration/java/io/airbyte/integrations/destination/e2e_test/TestingSilentDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-e2e-test/src/test-integration/java/io/airbyte/integrations/destination/e2e_test/TestingSilentDestinationAcceptanceTest.java @@ -10,8 +10,8 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.destination.e2e_test.TestingDestinations.TestDestinationType; import io.airbyte.integrations.standardtest.destination.DestinationAcceptanceTest; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.util.Collections; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-e2e-test/src/test/java/io/airbyte/integrations/destination/e2e_test/ThrottledDestinationTest.java b/airbyte-integrations/connectors/destination-e2e-test/src/test/java/io/airbyte/integrations/destination/e2e_test/ThrottledDestinationTest.java index c9a41fcfef77..c41f81aaed35 100644 --- a/airbyte-integrations/connectors/destination-e2e-test/src/test/java/io/airbyte/integrations/destination/e2e_test/ThrottledDestinationTest.java +++ b/airbyte-integrations/connectors/destination-e2e-test/src/test/java/io/airbyte/integrations/destination/e2e_test/ThrottledDestinationTest.java @@ -9,9 +9,9 @@ import com.google.common.collect.ImmutableMap; import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.AirbyteMessageConsumer; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.time.Instant; import java.util.Map; import java.util.function.Consumer; diff --git a/airbyte-integrations/connectors/destination-elasticsearch-strict-encrypt/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchStrictEncryptDestination.java b/airbyte-integrations/connectors/destination-elasticsearch-strict-encrypt/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchStrictEncryptDestination.java index e2341d77f982..40ea9555541f 100644 --- a/airbyte-integrations/connectors/destination-elasticsearch-strict-encrypt/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchStrictEncryptDestination.java +++ b/airbyte-integrations/connectors/destination-elasticsearch-strict-encrypt/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchStrictEncryptDestination.java @@ -13,8 +13,8 @@ import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.spec_modification.SpecModifyingDestination; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.net.URL; import java.util.Objects; import java.util.stream.IntStream; diff --git a/airbyte-integrations/connectors/destination-elasticsearch-strict-encrypt/src/test/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchDestinationStrictEncryptTest.java b/airbyte-integrations/connectors/destination-elasticsearch-strict-encrypt/src/test/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchDestinationStrictEncryptTest.java index 2682c162ba74..c88f30f911bd 100644 --- a/airbyte-integrations/connectors/destination-elasticsearch-strict-encrypt/src/test/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchDestinationStrictEncryptTest.java +++ b/airbyte-integrations/connectors/destination-elasticsearch-strict-encrypt/src/test/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchDestinationStrictEncryptTest.java @@ -8,7 +8,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.junit.jupiter.api.Test; public class ElasticsearchDestinationStrictEncryptTest { diff --git a/airbyte-integrations/connectors/destination-elasticsearch/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchAirbyteMessageConsumerFactory.java b/airbyte-integrations/connectors/destination-elasticsearch/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchAirbyteMessageConsumerFactory.java index 086bb057c327..18fc68e066df 100644 --- a/airbyte-integrations/connectors/destination-elasticsearch/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchAirbyteMessageConsumerFactory.java +++ b/airbyte-integrations/connectors/destination-elasticsearch/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchAirbyteMessageConsumerFactory.java @@ -16,9 +16,9 @@ import io.airbyte.integrations.destination.buffered_stream_consumer.BufferedStreamConsumer; import io.airbyte.integrations.destination.buffered_stream_consumer.RecordWriter; import io.airbyte.integrations.destination.record_buffer.InMemoryRecordBufferingStrategy; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.ArrayList; import java.util.HashMap; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-elasticsearch/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchConnection.java b/airbyte-integrations/connectors/destination-elasticsearch/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchConnection.java index 6631cf355710..69d9f4ac7698 100644 --- a/airbyte-integrations/connectors/destination-elasticsearch/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchConnection.java +++ b/airbyte-integrations/connectors/destination-elasticsearch/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchConnection.java @@ -18,7 +18,7 @@ import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; import io.airbyte.db.util.SSLCertificateUtils; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import jakarta.json.JsonValue; import java.io.IOException; import java.nio.charset.StandardCharsets; diff --git a/airbyte-integrations/connectors/destination-elasticsearch/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchDestination.java b/airbyte-integrations/connectors/destination-elasticsearch/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchDestination.java index 5b5533e7d8b0..ff8eb0afaf91 100644 --- a/airbyte-integrations/connectors/destination-elasticsearch/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchDestination.java +++ b/airbyte-integrations/connectors/destination-elasticsearch/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchDestination.java @@ -11,7 +11,11 @@ import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.ssh.SshWrappedDestination; -import io.airbyte.protocol.models.*; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.io.IOException; import java.util.ArrayList; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-elasticsearch/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchWriteConfig.java b/airbyte-integrations/connectors/destination-elasticsearch/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchWriteConfig.java index 90b36591c0d1..dcb96c154f6b 100644 --- a/airbyte-integrations/connectors/destination-elasticsearch/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchWriteConfig.java +++ b/airbyte-integrations/connectors/destination-elasticsearch/src/main/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchWriteConfig.java @@ -5,7 +5,7 @@ package io.airbyte.integrations.destination.elasticsearch; import io.airbyte.integrations.destination.StandardNameTransformer; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.util.List; import java.util.Objects; 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 11d3dd454aa1..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.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.DestinationSyncMode; 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 java.time.Duration; import java.time.Instant; import java.util.ArrayList; diff --git a/airbyte-integrations/connectors/destination-gcs/build.gradle b/airbyte-integrations/connectors/destination-gcs/build.gradle index 80dae0ede86e..9d37cc4cc2d6 100644 --- a/airbyte-integrations/connectors/destination-gcs/build.gradle +++ b/airbyte-integrations/connectors/destination-gcs/build.gradle @@ -36,7 +36,7 @@ dependencies { exclude group: 'org.slf4j', module: 'slf4j-reload4j' } implementation ('org.apache.parquet:parquet-avro:1.12.0') { exclude group: 'org.slf4j', module: 'slf4j-log4j12'} - implementation ('com.github.airbytehq:json-avro-converter:1.0.1') { exclude group: 'ch.qos.logback', module: 'logback-classic'} + implementation ('com.github.airbytehq:json-avro-converter:1.1.0') { exclude group: 'ch.qos.logback', module: 'logback-classic'} testImplementation 'org.apache.commons:commons-lang3:3.11' testImplementation 'org.xerial.snappy:snappy-java:1.1.8.4' diff --git a/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/GcsDestination.java b/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/GcsDestination.java index 4c5ac0dabff2..6ea195359997 100644 --- a/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/GcsDestination.java +++ b/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/GcsDestination.java @@ -19,10 +19,10 @@ import io.airbyte.integrations.destination.s3.S3BaseChecks; import io.airbyte.integrations.destination.s3.S3ConsumerFactory; import io.airbyte.integrations.destination.s3.SerializedBufferFactory; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/avro/GcsAvroWriter.java b/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/avro/GcsAvroWriter.java index 592e1a74ce35..bb66de472bca 100644 --- a/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/avro/GcsAvroWriter.java +++ b/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/avro/GcsAvroWriter.java @@ -19,8 +19,8 @@ import io.airbyte.integrations.destination.s3.avro.S3AvroFormatConfig; import io.airbyte.integrations.destination.s3.util.StreamTransferManagerFactory; import io.airbyte.integrations.destination.s3.writer.DestinationFileWriter; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.io.IOException; import java.sql.Timestamp; import java.util.UUID; diff --git a/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/csv/GcsCsvWriter.java b/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/csv/GcsCsvWriter.java index 1a50b4636485..59b737a1e518 100644 --- a/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/csv/GcsCsvWriter.java +++ b/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/csv/GcsCsvWriter.java @@ -17,8 +17,8 @@ import io.airbyte.integrations.destination.s3.csv.S3CsvFormatConfig; import io.airbyte.integrations.destination.s3.util.StreamTransferManagerFactory; import io.airbyte.integrations.destination.s3.writer.DestinationFileWriter; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.io.IOException; import java.io.PrintWriter; import java.nio.charset.StandardCharsets; diff --git a/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/jsonl/GcsJsonlWriter.java b/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/jsonl/GcsJsonlWriter.java index 5a930f267309..a615d0f6a090 100644 --- a/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/jsonl/GcsJsonlWriter.java +++ b/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/jsonl/GcsJsonlWriter.java @@ -18,8 +18,8 @@ import io.airbyte.integrations.destination.s3.S3Format; import io.airbyte.integrations.destination.s3.util.StreamTransferManagerFactory; import io.airbyte.integrations.destination.s3.writer.DestinationFileWriter; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.io.IOException; import java.io.PrintWriter; import java.nio.charset.StandardCharsets; diff --git a/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/parquet/GcsParquetWriter.java b/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/parquet/GcsParquetWriter.java index 0c61ec5b58a5..cd6660ebd5b7 100644 --- a/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/parquet/GcsParquetWriter.java +++ b/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/parquet/GcsParquetWriter.java @@ -14,8 +14,8 @@ import io.airbyte.integrations.destination.s3.avro.AvroRecordFactory; import io.airbyte.integrations.destination.s3.parquet.S3ParquetFormatConfig; import io.airbyte.integrations.destination.s3.writer.DestinationFileWriter; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.io.IOException; import java.net.URI; import java.net.URISyntaxException; diff --git a/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/writer/BaseGcsWriter.java b/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/writer/BaseGcsWriter.java index abc28d701ae7..d05b2afb99a9 100644 --- a/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/writer/BaseGcsWriter.java +++ b/airbyte-integrations/connectors/destination-gcs/src/main/java/io/airbyte/integrations/destination/gcs/writer/BaseGcsWriter.java @@ -13,9 +13,9 @@ import io.airbyte.integrations.destination.s3.S3Format; import io.airbyte.integrations.destination.s3.util.S3OutputPathHelper; import io.airbyte.integrations.destination.s3.writer.DestinationFileWriter; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.io.IOException; import java.sql.Timestamp; import java.text.DateFormat; diff --git a/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsAvroDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsAvroDestinationAcceptanceTest.java index 04f0d28331fd..b26796e9a0d9 100644 --- a/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsAvroDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsAvroDestinationAcceptanceTest.java @@ -28,7 +28,7 @@ public class GcsAvroDestinationAcceptanceTest extends GcsAvroParquetDestinationAcceptanceTest { - protected GcsAvroDestinationAcceptanceTest() { + public GcsAvroDestinationAcceptanceTest() { super(S3Format.AVRO); } diff --git a/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsAvroParquetDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsAvroParquetDestinationAcceptanceTest.java index f39a963696a3..b34e45590451 100644 --- a/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsAvroParquetDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsAvroParquetDestinationAcceptanceTest.java @@ -12,11 +12,11 @@ import io.airbyte.integrations.destination.s3.S3Format; import io.airbyte.integrations.destination.s3.avro.JsonSchemaType; import io.airbyte.integrations.standardtest.destination.argproviders.NumberDataTypeTestArgumentProvider; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.v0.CatalogHelpers; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.io.IOException; import java.util.Arrays; import java.util.List; @@ -35,7 +35,7 @@ public abstract class GcsAvroParquetDestinationAcceptanceTest extends GcsDestinationAcceptanceTest { - protected GcsAvroParquetDestinationAcceptanceTest(final S3Format s3Format) { + public GcsAvroParquetDestinationAcceptanceTest(final S3Format s3Format) { super(s3Format); } diff --git a/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsAvroTestDataComparator.java b/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsAvroTestDataComparator.java index 4f32e5b9377f..427c6440c34b 100644 --- a/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsAvroTestDataComparator.java +++ b/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsAvroTestDataComparator.java @@ -18,7 +18,7 @@ protected boolean compareDateValues(String expectedValue, String actualValue) { } private Instant getInstantFromEpoch(String epochValue) { - return Instant.ofEpochMilli(Long.parseLong(epochValue.replaceAll("000$", ""))); + return Instant.ofEpochMilli(Long.parseLong(epochValue) / 1000); } @Override diff --git a/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsDestinationAcceptanceTest.java index e9d928d7cee9..d2319e6623df 100644 --- a/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsDestinationAcceptanceTest.java @@ -25,7 +25,7 @@ import io.airbyte.integrations.standardtest.destination.DestinationAcceptanceTest; import io.airbyte.integrations.standardtest.destination.comparator.AdvancedTestDataComparator; import io.airbyte.integrations.standardtest.destination.comparator.TestDataComparator; -import io.airbyte.protocol.models.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import java.nio.file.Path; import java.util.Comparator; import java.util.LinkedList; @@ -64,7 +64,7 @@ public abstract class GcsDestinationAcceptanceTest extends DestinationAcceptance protected NamingConventionTransformer nameTransformer; protected S3StorageOperations s3StorageOperations; - protected GcsDestinationAcceptanceTest(final S3Format outputFormat) { + public GcsDestinationAcceptanceTest(final S3Format outputFormat) { this.outputFormat = outputFormat; } diff --git a/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsJsonlDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsJsonlDestinationAcceptanceTest.java index 14772da50ff0..6f2d1855455b 100644 --- a/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsJsonlDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsJsonlDestinationAcceptanceTest.java @@ -20,7 +20,7 @@ public class GcsJsonlDestinationAcceptanceTest extends GcsDestinationAcceptanceTest { - protected GcsJsonlDestinationAcceptanceTest() { + public GcsJsonlDestinationAcceptanceTest() { super(S3Format.JSONL); } diff --git a/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsParquetDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsParquetDestinationAcceptanceTest.java index a3cc832a16e0..2a3f465b87c8 100644 --- a/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsParquetDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-gcs/src/test-integration/java/io/airbyte/integrations/destination/gcs/GcsParquetDestinationAcceptanceTest.java @@ -33,7 +33,7 @@ public class GcsParquetDestinationAcceptanceTest extends GcsAvroParquetDestinationAcceptanceTest { - protected GcsParquetDestinationAcceptanceTest() { + public GcsParquetDestinationAcceptanceTest() { super(S3Format.PARQUET); } diff --git a/airbyte-integrations/connectors/destination-gcs/src/test/java/io/airbyte/integrations/destination/gcs/avro/GcsAvroWriterTest.java b/airbyte-integrations/connectors/destination-gcs/src/test/java/io/airbyte/integrations/destination/gcs/avro/GcsAvroWriterTest.java index 05d5d27e697b..88013f6daba4 100644 --- a/airbyte-integrations/connectors/destination-gcs/src/test/java/io/airbyte/integrations/destination/gcs/avro/GcsAvroWriterTest.java +++ b/airbyte-integrations/connectors/destination-gcs/src/test/java/io/airbyte/integrations/destination/gcs/avro/GcsAvroWriterTest.java @@ -14,9 +14,9 @@ import io.airbyte.integrations.destination.gcs.GcsDestinationConfig; import io.airbyte.integrations.destination.gcs.credential.GcsHmacKeyCredentialConfig; import io.airbyte.integrations.destination.s3.avro.S3AvroFormatConfig; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.SyncMode; import java.io.IOException; import java.sql.Timestamp; import java.time.Instant; diff --git a/airbyte-integrations/connectors/destination-iceberg/src/main/java/io/airbyte/integrations/destination/iceberg/IcebergConsumer.java b/airbyte-integrations/connectors/destination-iceberg/src/main/java/io/airbyte/integrations/destination/iceberg/IcebergConsumer.java index 3c76b5a8ed86..dbf4c07a7694 100644 --- a/airbyte-integrations/connectors/destination-iceberg/src/main/java/io/airbyte/integrations/destination/iceberg/IcebergConsumer.java +++ b/airbyte-integrations/connectors/destination-iceberg/src/main/java/io/airbyte/integrations/destination/iceberg/IcebergConsumer.java @@ -14,12 +14,12 @@ import io.airbyte.integrations.base.CommitOnStateAirbyteMessageConsumer; import io.airbyte.integrations.destination.iceberg.config.WriteConfig; import io.airbyte.integrations.destination.iceberg.config.catalog.IcebergCatalogConfig; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +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.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.sql.Timestamp; import java.util.HashMap; import java.util.HashSet; diff --git a/airbyte-integrations/connectors/destination-iceberg/src/main/java/io/airbyte/integrations/destination/iceberg/IcebergDestination.java b/airbyte-integrations/connectors/destination-iceberg/src/main/java/io/airbyte/integrations/destination/iceberg/IcebergDestination.java index 1872637caa35..a6541491fd8b 100644 --- a/airbyte-integrations/connectors/destination-iceberg/src/main/java/io/airbyte/integrations/destination/iceberg/IcebergDestination.java +++ b/airbyte-integrations/connectors/destination-iceberg/src/main/java/io/airbyte/integrations/destination/iceberg/IcebergDestination.java @@ -12,10 +12,10 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.destination.iceberg.config.catalog.IcebergCatalogConfig; import io.airbyte.integrations.destination.iceberg.config.catalog.IcebergCatalogConfigFactory; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.ConfiguredAirbyteCatalog; import java.util.Map; import java.util.Objects; import java.util.function.Consumer; diff --git a/airbyte-integrations/connectors/destination-iceberg/src/test/java/io/airbyte/integrations/destination/iceberg/IcebergHiveCatalogConfigTest.java b/airbyte-integrations/connectors/destination-iceberg/src/test/java/io/airbyte/integrations/destination/iceberg/IcebergHiveCatalogConfigTest.java index c8fa98c431f6..e9eaad52d4c8 100644 --- a/airbyte-integrations/connectors/destination-iceberg/src/test/java/io/airbyte/integrations/destination/iceberg/IcebergHiveCatalogConfigTest.java +++ b/airbyte-integrations/connectors/destination-iceberg/src/test/java/io/airbyte/integrations/destination/iceberg/IcebergHiveCatalogConfigTest.java @@ -29,8 +29,8 @@ import io.airbyte.integrations.destination.iceberg.config.format.FormatConfig; import io.airbyte.integrations.destination.iceberg.config.storage.S3Config; import io.airbyte.integrations.destination.iceberg.config.storage.credential.S3AccessKeyCredentialConfig; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; import java.io.IOException; import java.util.Map; import lombok.extern.slf4j.Slf4j; diff --git a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/AbstractJdbcDestination.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/AbstractJdbcDestination.java index f2c6a6d49f87..eb38fcb938c1 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/AbstractJdbcDestination.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/AbstractJdbcDestination.java @@ -19,11 +19,11 @@ import io.airbyte.integrations.base.AirbyteTraceMessageUtility; import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.destination.NamingConventionTransformer; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.ConfiguredAirbyteCatalog; import java.sql.SQLException; import java.util.List; import java.util.Map; 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 c3e1a0febce5..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 @@ -18,13 +18,13 @@ import io.airbyte.integrations.destination.buffered_stream_consumer.OnStartFunction; import io.airbyte.integrations.destination.buffered_stream_consumer.RecordWriter; import io.airbyte.integrations.destination.record_buffer.InMemoryRecordBufferingStrategy; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +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.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.time.Instant; import java.util.ArrayList; import java.util.List; @@ -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 f4586de24cc8..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 @@ -8,7 +8,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.db.jdbc.JdbcDatabase; import io.airbyte.integrations.base.JavaBaseConstants; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.io.File; import java.io.PrintWriter; import java.nio.charset.StandardCharsets; @@ -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 07104b5b9f66..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 @@ -6,13 +6,23 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.db.jdbc.JdbcDatabase; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.util.List; 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/SqlOperationsUtils.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/SqlOperationsUtils.java index 98d1483a6a5b..649a8f8e5195 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/SqlOperationsUtils.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/SqlOperationsUtils.java @@ -8,7 +8,7 @@ import com.google.common.collect.Iterables; import io.airbyte.commons.json.Jsons; import io.airbyte.db.jdbc.JdbcDatabase; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.sql.PreparedStatement; import java.sql.SQLException; import java.sql.Timestamp; 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 ac5f91357166..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 @@ -4,21 +4,19 @@ package io.airbyte.integrations.destination.jdbc; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.util.ArrayList; import java.util.List; import org.joda.time.DateTime; 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/CopyConsumerFactory.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/CopyConsumerFactory.java index abd4e4f183e0..b5be19c11afa 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/CopyConsumerFactory.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/CopyConsumerFactory.java @@ -17,10 +17,10 @@ import io.airbyte.integrations.destination.buffered_stream_consumer.RecordWriter; import io.airbyte.integrations.destination.jdbc.SqlOperations; import io.airbyte.integrations.destination.record_buffer.InMemoryRecordBufferingStrategy; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.ArrayList; import java.util.HashMap; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/CopyDestination.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/CopyDestination.java index b0677bf8287b..51ba72727648 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/CopyDestination.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/CopyDestination.java @@ -17,7 +17,7 @@ import io.airbyte.integrations.destination.NamingConventionTransformer; import io.airbyte.integrations.destination.jdbc.AbstractJdbcDestination; import io.airbyte.integrations.destination.jdbc.SqlOperations; -import io.airbyte.protocol.models.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import javax.sql.DataSource; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/StreamCopier.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/StreamCopier.java index 6f2d8216c6b2..e99508da3a2d 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/StreamCopier.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/StreamCopier.java @@ -4,7 +4,7 @@ package io.airbyte.integrations.destination.jdbc.copy; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.util.UUID; /** diff --git a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/StreamCopierFactory.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/StreamCopierFactory.java index c74b652edb83..c96f0a6854a3 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/StreamCopierFactory.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/StreamCopierFactory.java @@ -7,7 +7,7 @@ import io.airbyte.db.jdbc.JdbcDatabase; import io.airbyte.integrations.destination.ExtendedNameTransformer; import io.airbyte.integrations.destination.jdbc.SqlOperations; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; public interface StreamCopierFactory { diff --git a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/SwitchingDestination.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/SwitchingDestination.java index 1871254fd3fa..aa7692aee67a 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/SwitchingDestination.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/SwitchingDestination.java @@ -9,9 +9,9 @@ import io.airbyte.integrations.BaseConnector; import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.Arrays; import java.util.HashSet; import java.util.Map; 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 ee419593d311..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 @@ -15,8 +15,8 @@ import io.airbyte.integrations.destination.jdbc.StagingFilenameGenerator; import io.airbyte.integrations.destination.jdbc.constants.GlobalDataSizeConstants; import io.airbyte.integrations.destination.jdbc.copy.StreamCopier; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.io.BufferedOutputStream; import java.io.ByteArrayInputStream; import java.io.IOException; @@ -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/azure/AzureBlobStorageStreamCopierFactory.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/azure/AzureBlobStorageStreamCopierFactory.java index 2d2f1d7754bc..3c3a79e37dae 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/azure/AzureBlobStorageStreamCopierFactory.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/azure/AzureBlobStorageStreamCopierFactory.java @@ -10,9 +10,9 @@ import io.airbyte.integrations.destination.jdbc.SqlOperations; import io.airbyte.integrations.destination.jdbc.copy.StreamCopier; import io.airbyte.integrations.destination.jdbc.copy.StreamCopierFactory; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; public abstract class AzureBlobStorageStreamCopierFactory implements StreamCopierFactory { 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 cc76dbd0c86d..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 @@ -18,8 +18,8 @@ import io.airbyte.integrations.destination.jdbc.StagingFilenameGenerator; import io.airbyte.integrations.destination.jdbc.constants.GlobalDataSizeConstants; import io.airbyte.integrations.destination.jdbc.copy.StreamCopier; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; @@ -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/gcs/GcsStreamCopierFactory.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/gcs/GcsStreamCopierFactory.java index fe16e0a7cda3..17c23b45ecec 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/gcs/GcsStreamCopierFactory.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/gcs/GcsStreamCopierFactory.java @@ -12,9 +12,9 @@ import io.airbyte.integrations.destination.jdbc.SqlOperations; import io.airbyte.integrations.destination.jdbc.copy.StreamCopier; import io.airbyte.integrations.destination.jdbc.copy.StreamCopierFactory; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.io.ByteArrayInputStream; import java.io.InputStream; import java.nio.charset.StandardCharsets; 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 de4b55347423..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 @@ -17,9 +17,9 @@ import io.airbyte.integrations.destination.s3.csv.StagingDatabaseCsvSheetGenerator; import io.airbyte.integrations.destination.s3.util.CompressionType; import io.airbyte.integrations.destination.s3.writer.DestinationFileWriter; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.io.IOException; import java.sql.SQLException; import java.sql.Timestamp; @@ -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/jdbc/copy/s3/S3StreamCopierFactory.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/s3/S3StreamCopierFactory.java index 8acc1486f54e..ac64860db368 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/s3/S3StreamCopierFactory.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/s3/S3StreamCopierFactory.java @@ -10,8 +10,8 @@ import io.airbyte.integrations.destination.jdbc.SqlOperations; import io.airbyte.integrations.destination.jdbc.copy.StreamCopier; import io.airbyte.integrations.destination.jdbc.copy.StreamCopierFactory; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; public abstract class S3StreamCopierFactory implements StreamCopierFactory { 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 f0eeb1566679..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 @@ -18,12 +18,12 @@ import io.airbyte.integrations.destination.jdbc.WriteConfig; import io.airbyte.integrations.destination.record_buffer.SerializableBuffer; import io.airbyte.integrations.destination.record_buffer.SerializedBufferingStrategy; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +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.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.util.ArrayList; import java.util.List; import java.util.Map; @@ -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-jdbc/src/test/java/io/airbyte/integrations/destination/jdbc/SqlOperationsUtilsTest.java b/airbyte-integrations/connectors/destination-jdbc/src/test/java/io/airbyte/integrations/destination/jdbc/SqlOperationsUtilsTest.java index 569ce6be4769..2073854b4052 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/test/java/io/airbyte/integrations/destination/jdbc/SqlOperationsUtilsTest.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/test/java/io/airbyte/integrations/destination/jdbc/SqlOperationsUtilsTest.java @@ -20,7 +20,7 @@ import io.airbyte.db.jdbc.JdbcDatabase; import io.airbyte.db.jdbc.JdbcUtils; import io.airbyte.integrations.base.JavaBaseConstants; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.sql.SQLException; import java.time.Instant; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-jdbc/src/test/java/io/airbyte/integrations/destination/jdbc/TestJdbcSqlOperations.java b/airbyte-integrations/connectors/destination-jdbc/src/test/java/io/airbyte/integrations/destination/jdbc/TestJdbcSqlOperations.java index ed6ce081bf3c..c6dd736a3b81 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/test/java/io/airbyte/integrations/destination/jdbc/TestJdbcSqlOperations.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/test/java/io/airbyte/integrations/destination/jdbc/TestJdbcSqlOperations.java @@ -5,7 +5,7 @@ package io.airbyte.integrations.destination.jdbc; import io.airbyte.db.jdbc.JdbcDatabase; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.util.List; public class TestJdbcSqlOperations extends JdbcSqlOperations { diff --git a/airbyte-integrations/connectors/destination-jdbc/src/test/java/io/airbyte/integrations/destination/jdbc/copy/SwitchingDestinationTest.java b/airbyte-integrations/connectors/destination-jdbc/src/test/java/io/airbyte/integrations/destination/jdbc/copy/SwitchingDestinationTest.java index 23375ce3e705..6296ae944c0c 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/test/java/io/airbyte/integrations/destination/jdbc/copy/SwitchingDestinationTest.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/test/java/io/airbyte/integrations/destination/jdbc/copy/SwitchingDestinationTest.java @@ -13,7 +13,7 @@ import com.fasterxml.jackson.databind.JsonNode; import com.google.common.collect.ImmutableMap; import io.airbyte.integrations.base.Destination; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.Map; import java.util.function.Consumer; import org.junit.jupiter.api.BeforeEach; diff --git a/airbyte-integrations/connectors/destination-jdbc/src/test/java/io/airbyte/integrations/destination/jdbc/copy/s3/S3StreamCopierTest.java b/airbyte-integrations/connectors/destination-jdbc/src/test/java/io/airbyte/integrations/destination/jdbc/copy/s3/S3StreamCopierTest.java index acd777b32fda..8d8dec869e22 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/test/java/io/airbyte/integrations/destination/jdbc/copy/s3/S3StreamCopierTest.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/test/java/io/airbyte/integrations/destination/jdbc/copy/s3/S3StreamCopierTest.java @@ -24,10 +24,10 @@ import io.airbyte.integrations.destination.s3.csv.S3CsvWriter; import io.airbyte.integrations.destination.s3.csv.StagingDatabaseCsvSheetGenerator; import io.airbyte.integrations.destination.s3.util.CompressionType; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; +import io.airbyte.protocol.models.v0.SyncMode; import java.sql.Timestamp; import java.time.Instant; import java.util.ArrayList; diff --git a/airbyte-integrations/connectors/destination-kafka/src/main/java/io/airbyte/integrations/destination/kafka/KafkaDestination.java b/airbyte-integrations/connectors/destination-kafka/src/main/java/io/airbyte/integrations/destination/kafka/KafkaDestination.java index 0291b88fe58c..b9b028b27a72 100644 --- a/airbyte-integrations/connectors/destination-kafka/src/main/java/io/airbyte/integrations/destination/kafka/KafkaDestination.java +++ b/airbyte-integrations/connectors/destination-kafka/src/main/java/io/airbyte/integrations/destination/kafka/KafkaDestination.java @@ -13,10 +13,10 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.StandardNameTransformer; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.ConfiguredAirbyteCatalog; import java.util.UUID; import java.util.function.Consumer; import org.apache.kafka.clients.producer.KafkaProducer; diff --git a/airbyte-integrations/connectors/destination-kafka/src/main/java/io/airbyte/integrations/destination/kafka/KafkaRecordConsumer.java b/airbyte-integrations/connectors/destination-kafka/src/main/java/io/airbyte/integrations/destination/kafka/KafkaRecordConsumer.java index d4ceb260a109..4a21135a7b41 100644 --- a/airbyte-integrations/connectors/destination-kafka/src/main/java/io/airbyte/integrations/destination/kafka/KafkaRecordConsumer.java +++ b/airbyte-integrations/connectors/destination-kafka/src/main/java/io/airbyte/integrations/destination/kafka/KafkaRecordConsumer.java @@ -9,10 +9,10 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; import io.airbyte.integrations.destination.NamingConventionTransformer; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.HashMap; import java.util.Map; import java.util.Optional; 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 ea00d2317964..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.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; 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 java.time.Instant; import java.util.List; import java.util.Map; diff --git a/airbyte-integrations/connectors/destination-keen/src/main/java/io/airbyte/integrations/destination/keen/KeenDestination.java b/airbyte-integrations/connectors/destination-keen/src/main/java/io/airbyte/integrations/destination/keen/KeenDestination.java index d4da608b8534..ab33c177feb1 100644 --- a/airbyte-integrations/connectors/destination-keen/src/main/java/io/airbyte/integrations/destination/keen/KeenDestination.java +++ b/airbyte-integrations/connectors/destination-keen/src/main/java/io/airbyte/integrations/destination/keen/KeenDestination.java @@ -19,10 +19,10 @@ import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.IntegrationRunner; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.ConfiguredAirbyteCatalog; import java.util.Properties; import java.util.function.Consumer; import org.apache.kafka.clients.producer.KafkaProducer; diff --git a/airbyte-integrations/connectors/destination-keen/src/main/java/io/airbyte/integrations/destination/keen/KeenRecordsConsumer.java b/airbyte-integrations/connectors/destination-keen/src/main/java/io/airbyte/integrations/destination/keen/KeenRecordsConsumer.java index 81ce26dd7290..4da520e718e3 100644 --- a/airbyte-integrations/connectors/destination-keen/src/main/java/io/airbyte/integrations/destination/keen/KeenRecordsConsumer.java +++ b/airbyte-integrations/connectors/destination-keen/src/main/java/io/airbyte/integrations/destination/keen/KeenRecordsConsumer.java @@ -11,13 +11,13 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +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.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.io.IOException; import java.util.List; import java.util.Optional; diff --git a/airbyte-integrations/connectors/destination-keen/src/main/java/io/airbyte/integrations/destination/keen/KeenTimestampService.java b/airbyte-integrations/connectors/destination-keen/src/main/java/io/airbyte/integrations/destination/keen/KeenTimestampService.java index f40724126b7b..2d4cedba9cbe 100644 --- a/airbyte-integrations/connectors/destination-keen/src/main/java/io/airbyte/integrations/destination/keen/KeenTimestampService.java +++ b/airbyte-integrations/connectors/destination-keen/src/main/java/io/airbyte/integrations/destination/keen/KeenTimestampService.java @@ -8,8 +8,8 @@ import com.fasterxml.jackson.databind.node.JsonNodeFactory; import com.fasterxml.jackson.databind.node.ObjectNode; import com.joestelmach.natty.Parser; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.time.Instant; import java.util.HashMap; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-keen/src/test-integration/java/io/airbyte/integrations/destination/keen/KeenDestinationTest.java b/airbyte-integrations/connectors/destination-keen/src/test-integration/java/io/airbyte/integrations/destination/keen/KeenDestinationTest.java index 9639e82cddb0..0e463295271b 100644 --- a/airbyte-integrations/connectors/destination-keen/src/test-integration/java/io/airbyte/integrations/destination/keen/KeenDestinationTest.java +++ b/airbyte-integrations/connectors/destination-keen/src/test-integration/java/io/airbyte/integrations/destination/keen/KeenDestinationTest.java @@ -16,8 +16,8 @@ import io.airbyte.integrations.standardtest.destination.DestinationAcceptanceTest; import io.airbyte.integrations.standardtest.destination.comparator.AdvancedTestDataComparator; import io.airbyte.integrations.standardtest.destination.comparator.TestDataComparator; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.nio.file.Files; import java.nio.file.Path; import java.util.Comparator; 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 428e1f357089..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.AirbyteMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; 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 java.util.List; import java.util.function.Consumer; import org.junit.jupiter.api.BeforeEach; diff --git a/airbyte-integrations/connectors/destination-keen/src/test/java/io/airbyte/integrations/destination/keen/KeenTimestampServiceTest.java b/airbyte-integrations/connectors/destination-keen/src/test/java/io/airbyte/integrations/destination/keen/KeenTimestampServiceTest.java index fbd5e62cdc68..86d36a8bda87 100644 --- a/airbyte-integrations/connectors/destination-keen/src/test/java/io/airbyte/integrations/destination/keen/KeenTimestampServiceTest.java +++ b/airbyte-integrations/connectors/destination-keen/src/test/java/io/airbyte/integrations/destination/keen/KeenTimestampServiceTest.java @@ -12,12 +12,12 @@ import com.google.common.collect.ImmutableMap; import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.io.IOException; import java.util.List; import java.util.Map; diff --git a/airbyte-integrations/connectors/destination-kinesis/src/main/java/io/airbyte/integrations/destination/kinesis/KinesisDestination.java b/airbyte-integrations/connectors/destination-kinesis/src/main/java/io/airbyte/integrations/destination/kinesis/KinesisDestination.java index 2170fba76afd..697b9187c694 100644 --- a/airbyte-integrations/connectors/destination-kinesis/src/main/java/io/airbyte/integrations/destination/kinesis/KinesisDestination.java +++ b/airbyte-integrations/connectors/destination-kinesis/src/main/java/io/airbyte/integrations/destination/kinesis/KinesisDestination.java @@ -9,9 +9,9 @@ import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.IntegrationRunner; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-kinesis/src/main/java/io/airbyte/integrations/destination/kinesis/KinesisMessageConsumer.java b/airbyte-integrations/connectors/destination-kinesis/src/main/java/io/airbyte/integrations/destination/kinesis/KinesisMessageConsumer.java index b6718691e741..7db715312313 100644 --- a/airbyte-integrations/connectors/destination-kinesis/src/main/java/io/airbyte/integrations/destination/kinesis/KinesisMessageConsumer.java +++ b/airbyte-integrations/connectors/destination-kinesis/src/main/java/io/airbyte/integrations/destination/kinesis/KinesisMessageConsumer.java @@ -6,9 +6,9 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.time.Instant; import java.util.Map; import java.util.function.Consumer; diff --git a/airbyte-integrations/connectors/destination-kinesis/src/main/java/io/airbyte/integrations/destination/kinesis/KinesisStreamConfig.java b/airbyte-integrations/connectors/destination-kinesis/src/main/java/io/airbyte/integrations/destination/kinesis/KinesisStreamConfig.java index f7253ab8259a..45db9c289857 100644 --- a/airbyte-integrations/connectors/destination-kinesis/src/main/java/io/airbyte/integrations/destination/kinesis/KinesisStreamConfig.java +++ b/airbyte-integrations/connectors/destination-kinesis/src/main/java/io/airbyte/integrations/destination/kinesis/KinesisStreamConfig.java @@ -4,7 +4,7 @@ package io.airbyte.integrations.destination.kinesis; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; /** * KinesisStreamConfig class for storing configuration data for every stream. diff --git a/airbyte-integrations/connectors/destination-kinesis/src/test-integration/java/io/airbyte/integrations/destination/kinesis/KinesisDestinationTest.java b/airbyte-integrations/connectors/destination-kinesis/src/test-integration/java/io/airbyte/integrations/destination/kinesis/KinesisDestinationTest.java index e40870c64e0c..3abf1acbaded 100644 --- a/airbyte-integrations/connectors/destination-kinesis/src/test-integration/java/io/airbyte/integrations/destination/kinesis/KinesisDestinationTest.java +++ b/airbyte-integrations/connectors/destination-kinesis/src/test-integration/java/io/airbyte/integrations/destination/kinesis/KinesisDestinationTest.java @@ -6,7 +6,7 @@ import static org.assertj.core.api.Assertions.assertThat; -import io.airbyte.protocol.models.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; diff --git a/airbyte-integrations/connectors/destination-kinesis/src/test/java/io/airbyte/integrations/destination/kinesis/KinesisRecordConsumerTest.java b/airbyte-integrations/connectors/destination-kinesis/src/test/java/io/airbyte/integrations/destination/kinesis/KinesisRecordConsumerTest.java index a96787cce0ad..1f0fa1fe37c8 100644 --- a/airbyte-integrations/connectors/destination-kinesis/src/test/java/io/airbyte/integrations/destination/kinesis/KinesisRecordConsumerTest.java +++ b/airbyte-integrations/connectors/destination-kinesis/src/test/java/io/airbyte/integrations/destination/kinesis/KinesisRecordConsumerTest.java @@ -6,8 +6,8 @@ import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; import io.airbyte.integrations.standardtest.destination.PerStreamStateMessageTest; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.DisplayName; diff --git a/airbyte-integrations/connectors/destination-local-json/src/main/java/io/airbyte/integrations/destination/local_json/LocalJsonDestination.java b/airbyte-integrations/connectors/destination-local-json/src/main/java/io/airbyte/integrations/destination/local_json/LocalJsonDestination.java index d213e3fbf141..3543c83f9f22 100644 --- a/airbyte-integrations/connectors/destination-local-json/src/main/java/io/airbyte/integrations/destination/local_json/LocalJsonDestination.java +++ b/airbyte-integrations/connectors/destination-local-json/src/main/java/io/airbyte/integrations/destination/local_json/LocalJsonDestination.java @@ -15,14 +15,14 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.StandardNameTransformer; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +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.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.io.FileWriter; import java.io.IOException; import java.io.Writer; 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 4ced42edee2b..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,16 +23,16 @@ import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.StandardNameTransformer; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; 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; +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.ConnectorSpecification; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; diff --git a/airbyte-integrations/connectors/destination-mariadb-columnstore/src/main/java/io/airbyte/integrations/destination/mariadb_columnstore/MariadbColumnstoreDestination.java b/airbyte-integrations/connectors/destination-mariadb-columnstore/src/main/java/io/airbyte/integrations/destination/mariadb_columnstore/MariadbColumnstoreDestination.java index 5ec57c41ed7f..78518bea96f6 100644 --- a/airbyte-integrations/connectors/destination-mariadb-columnstore/src/main/java/io/airbyte/integrations/destination/mariadb_columnstore/MariadbColumnstoreDestination.java +++ b/airbyte-integrations/connectors/destination-mariadb-columnstore/src/main/java/io/airbyte/integrations/destination/mariadb_columnstore/MariadbColumnstoreDestination.java @@ -16,8 +16,8 @@ import io.airbyte.integrations.base.ssh.SshWrappedDestination; import io.airbyte.integrations.destination.jdbc.AbstractJdbcDestination; import io.airbyte.integrations.destination.mariadb_columnstore.MariadbColumnstoreSqlOperations.VersionCompatibility; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; import java.util.Map; import javax.sql.DataSource; import org.slf4j.Logger; diff --git a/airbyte-integrations/connectors/destination-mariadb-columnstore/src/main/java/io/airbyte/integrations/destination/mariadb_columnstore/MariadbColumnstoreSqlOperations.java b/airbyte-integrations/connectors/destination-mariadb-columnstore/src/main/java/io/airbyte/integrations/destination/mariadb_columnstore/MariadbColumnstoreSqlOperations.java index d8d988655448..939c2db74197 100644 --- a/airbyte-integrations/connectors/destination-mariadb-columnstore/src/main/java/io/airbyte/integrations/destination/mariadb_columnstore/MariadbColumnstoreSqlOperations.java +++ b/airbyte-integrations/connectors/destination-mariadb-columnstore/src/main/java/io/airbyte/integrations/destination/mariadb_columnstore/MariadbColumnstoreSqlOperations.java @@ -8,7 +8,7 @@ import io.airbyte.db.jdbc.JdbcDatabase; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.jdbc.JdbcSqlOperations; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.io.File; import java.io.IOException; import java.nio.file.Files; diff --git a/airbyte-integrations/connectors/destination-mariadb-columnstore/src/test/java/io/airbyte/integrations/destination/mariadb_columnstore/MariadbSpecTest.java b/airbyte-integrations/connectors/destination-mariadb-columnstore/src/test/java/io/airbyte/integrations/destination/mariadb_columnstore/MariadbSpecTest.java index 9285c919d7c2..91e387dc2439 100644 --- a/airbyte-integrations/connectors/destination-mariadb-columnstore/src/test/java/io/airbyte/integrations/destination/mariadb_columnstore/MariadbSpecTest.java +++ b/airbyte-integrations/connectors/destination-mariadb-columnstore/src/test/java/io/airbyte/integrations/destination/mariadb_columnstore/MariadbSpecTest.java @@ -13,7 +13,7 @@ import io.airbyte.commons.io.IOs; import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.validation.json.JsonSchemaValidator; import java.io.File; import java.io.IOException; diff --git a/airbyte-integrations/connectors/destination-mongodb-strict-encrypt/src/main/java/io.airbyte.integrations.destination.mongodb/MongodbDestinationStrictEncrypt.java b/airbyte-integrations/connectors/destination-mongodb-strict-encrypt/src/main/java/io.airbyte.integrations.destination.mongodb/MongodbDestinationStrictEncrypt.java index 69df91def8a0..62da13dfd6c2 100644 --- a/airbyte-integrations/connectors/destination-mongodb-strict-encrypt/src/main/java/io.airbyte.integrations.destination.mongodb/MongodbDestinationStrictEncrypt.java +++ b/airbyte-integrations/connectors/destination-mongodb-strict-encrypt/src/main/java/io.airbyte.integrations.destination.mongodb/MongodbDestinationStrictEncrypt.java @@ -13,8 +13,8 @@ import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.spec_modification.SpecModifyingDestination; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-mongodb-strict-encrypt/src/test/java/io/airbyte/integrations/destination/mongodb/MongodbDestinationStrictEncryptTest.java b/airbyte-integrations/connectors/destination-mongodb-strict-encrypt/src/test/java/io/airbyte/integrations/destination/mongodb/MongodbDestinationStrictEncryptTest.java index 7f497d3ac540..dcbd73d32589 100644 --- a/airbyte-integrations/connectors/destination-mongodb-strict-encrypt/src/test/java/io/airbyte/integrations/destination/mongodb/MongodbDestinationStrictEncryptTest.java +++ b/airbyte-integrations/connectors/destination-mongodb-strict-encrypt/src/test/java/io/airbyte/integrations/destination/mongodb/MongodbDestinationStrictEncryptTest.java @@ -8,7 +8,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.junit.jupiter.api.Test; public class MongodbDestinationStrictEncryptTest { diff --git a/airbyte-integrations/connectors/destination-mongodb/src/main/java/io/airbyte/integrations/destination/mongodb/MongodbDestination.java b/airbyte-integrations/connectors/destination-mongodb/src/main/java/io/airbyte/integrations/destination/mongodb/MongodbDestination.java index 9743e90d0099..62ae02062099 100644 --- a/airbyte-integrations/connectors/destination-mongodb/src/main/java/io/airbyte/integrations/destination/mongodb/MongodbDestination.java +++ b/airbyte-integrations/connectors/destination-mongodb/src/main/java/io/airbyte/integrations/destination/mongodb/MongodbDestination.java @@ -27,13 +27,13 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.ssh.SshWrappedDestination; import io.airbyte.integrations.destination.mongodb.exception.MongodbDatabaseException; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +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.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.util.HashMap; import java.util.HashSet; import java.util.Map; diff --git a/airbyte-integrations/connectors/destination-mongodb/src/main/java/io/airbyte/integrations/destination/mongodb/MongodbRecordConsumer.java b/airbyte-integrations/connectors/destination-mongodb/src/main/java/io/airbyte/integrations/destination/mongodb/MongodbRecordConsumer.java index 858e0377f983..419e79013acc 100644 --- a/airbyte-integrations/connectors/destination-mongodb/src/main/java/io/airbyte/integrations/destination/mongodb/MongodbRecordConsumer.java +++ b/airbyte-integrations/connectors/destination-mongodb/src/main/java/io/airbyte/integrations/destination/mongodb/MongodbRecordConsumer.java @@ -14,10 +14,10 @@ import io.airbyte.db.mongodb.MongoDatabase; import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.nio.charset.Charset; import java.util.ArrayList; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-mongodb/src/main/java/io/airbyte/integrations/destination/mongodb/MongodbWriteConfig.java b/airbyte-integrations/connectors/destination-mongodb/src/main/java/io/airbyte/integrations/destination/mongodb/MongodbWriteConfig.java index 01ddd9ba1d5b..a2ac04e7e82d 100644 --- a/airbyte-integrations/connectors/destination-mongodb/src/main/java/io/airbyte/integrations/destination/mongodb/MongodbWriteConfig.java +++ b/airbyte-integrations/connectors/destination-mongodb/src/main/java/io/airbyte/integrations/destination/mongodb/MongodbWriteConfig.java @@ -5,7 +5,7 @@ package io.airbyte.integrations.destination.mongodb; import com.mongodb.client.MongoCollection; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.util.Collection; import java.util.HashSet; import java.util.Set; diff --git a/airbyte-integrations/connectors/destination-mongodb/src/test-integration/java/io/airbyte/integrations/destination/mongodb/MongodbDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-mongodb/src/test-integration/java/io/airbyte/integrations/destination/mongodb/MongodbDestinationAcceptanceTest.java index 20e5d5f9fee5..69f727281223 100644 --- a/airbyte-integrations/connectors/destination-mongodb/src/test-integration/java/io/airbyte/integrations/destination/mongodb/MongodbDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-mongodb/src/test-integration/java/io/airbyte/integrations/destination/mongodb/MongodbDestinationAcceptanceTest.java @@ -18,7 +18,7 @@ import io.airbyte.integrations.standardtest.destination.DestinationAcceptanceTest; import io.airbyte.integrations.standardtest.destination.comparator.AdvancedTestDataComparator; import io.airbyte.integrations.standardtest.destination.comparator.TestDataComparator; -import io.airbyte.protocol.models.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import java.io.IOException; import java.util.ArrayList; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-mongodb/src/test/java/io/airbyte/integrations/destination/mongodb/MongodbRecordConsumerTest.java b/airbyte-integrations/connectors/destination-mongodb/src/test/java/io/airbyte/integrations/destination/mongodb/MongodbRecordConsumerTest.java index ade0d60fea0a..56f509df9518 100644 --- a/airbyte-integrations/connectors/destination-mongodb/src/test/java/io/airbyte/integrations/destination/mongodb/MongodbRecordConsumerTest.java +++ b/airbyte-integrations/connectors/destination-mongodb/src/test/java/io/airbyte/integrations/destination/mongodb/MongodbRecordConsumerTest.java @@ -7,9 +7,9 @@ import io.airbyte.db.mongodb.MongoDatabase; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; import io.airbyte.integrations.standardtest.destination.PerStreamStateMessageTest; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.Map; import java.util.function.Consumer; import org.junit.jupiter.api.extension.ExtendWith; diff --git a/airbyte-integrations/connectors/destination-mqtt/src/main/java/io/airbyte/integrations/destination/mqtt/MqttDestination.java b/airbyte-integrations/connectors/destination-mqtt/src/main/java/io/airbyte/integrations/destination/mqtt/MqttDestination.java index fe0d6fa6a8b7..e6d5b2b72939 100644 --- a/airbyte-integrations/connectors/destination-mqtt/src/main/java/io/airbyte/integrations/destination/mqtt/MqttDestination.java +++ b/airbyte-integrations/connectors/destination-mqtt/src/main/java/io/airbyte/integrations/destination/mqtt/MqttDestination.java @@ -13,10 +13,10 @@ import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.JavaBaseConstants; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.ConfiguredAirbyteCatalog; import java.util.UUID; import java.util.function.Consumer; import org.eclipse.paho.client.mqttv3.IMqttAsyncClient; diff --git a/airbyte-integrations/connectors/destination-mqtt/src/main/java/io/airbyte/integrations/destination/mqtt/MqttRecordConsumer.java b/airbyte-integrations/connectors/destination-mqtt/src/main/java/io/airbyte/integrations/destination/mqtt/MqttRecordConsumer.java index 23cd92ac0d41..bf34e066c7db 100644 --- a/airbyte-integrations/connectors/destination-mqtt/src/main/java/io/airbyte/integrations/destination/mqtt/MqttRecordConsumer.java +++ b/airbyte-integrations/connectors/destination-mqtt/src/main/java/io/airbyte/integrations/destination/mqtt/MqttRecordConsumer.java @@ -10,10 +10,10 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.lang.Exceptions; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.HashMap; import java.util.Map; import java.util.Optional; 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 25bb402a3204..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,16 +14,16 @@ import com.google.common.collect.Sets; import com.hivemq.testcontainer.junit5.HiveMQTestContainerExtension; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; 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.AirbyteStream; +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.v0.ConfiguredAirbyteStream; import java.time.Instant; import java.util.ArrayList; import java.util.Collection; diff --git a/airbyte-integrations/connectors/destination-mssql-strict-encrypt/src/main/java/io/airbyte/integrations/destination/mssql_strict_encrypt/MssqlStrictEncryptDestination.java b/airbyte-integrations/connectors/destination-mssql-strict-encrypt/src/main/java/io/airbyte/integrations/destination/mssql_strict_encrypt/MssqlStrictEncryptDestination.java index 30283cca1d9e..78c59545d7dd 100644 --- a/airbyte-integrations/connectors/destination-mssql-strict-encrypt/src/main/java/io/airbyte/integrations/destination/mssql_strict_encrypt/MssqlStrictEncryptDestination.java +++ b/airbyte-integrations/connectors/destination-mssql-strict-encrypt/src/main/java/io/airbyte/integrations/destination/mssql_strict_encrypt/MssqlStrictEncryptDestination.java @@ -10,7 +10,7 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.spec_modification.SpecModifyingDestination; import io.airbyte.integrations.destination.mssql.MSSQLDestination; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-mssql-strict-encrypt/src/test-integration/java/io/airbyte/integrations/destination/mssql_strict_encrypt/MssqlStrictEncryptDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-mssql-strict-encrypt/src/test-integration/java/io/airbyte/integrations/destination/mssql_strict_encrypt/MssqlStrictEncryptDestinationAcceptanceTest.java index d3a92d1db269..b55cec08e169 100644 --- a/airbyte-integrations/connectors/destination-mssql-strict-encrypt/src/test-integration/java/io/airbyte/integrations/destination/mssql_strict_encrypt/MssqlStrictEncryptDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-mssql-strict-encrypt/src/test-integration/java/io/airbyte/integrations/destination/mssql_strict_encrypt/MssqlStrictEncryptDestinationAcceptanceTest.java @@ -20,7 +20,7 @@ import io.airbyte.integrations.base.ssh.SshHelpers; import io.airbyte.integrations.destination.ExtendedNameTransformer; import io.airbyte.integrations.standardtest.destination.DestinationAcceptanceTest; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.test.utils.DatabaseConnectionHelper; import java.sql.SQLException; import java.util.ArrayList; 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 c9f6f6271f08..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 @@ -10,7 +10,7 @@ import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.jdbc.SqlOperations; import io.airbyte.integrations.destination.jdbc.SqlOperationsUtils; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.sql.SQLException; import java.util.List; @@ -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-mysql-strict-encrypt/src/main/java/io/airbyte/integrations/destination/mysql/MySQLDestinationStrictEncrypt.java b/airbyte-integrations/connectors/destination-mysql-strict-encrypt/src/main/java/io/airbyte/integrations/destination/mysql/MySQLDestinationStrictEncrypt.java index ec49a4543d00..cb78f9b42b68 100644 --- a/airbyte-integrations/connectors/destination-mysql-strict-encrypt/src/main/java/io/airbyte/integrations/destination/mysql/MySQLDestinationStrictEncrypt.java +++ b/airbyte-integrations/connectors/destination-mysql-strict-encrypt/src/main/java/io/airbyte/integrations/destination/mysql/MySQLDestinationStrictEncrypt.java @@ -10,7 +10,7 @@ import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.spec_modification.SpecModifyingDestination; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-mysql-strict-encrypt/src/test-integration/java/io/airbyte/integrations/destination/mysql/MySQLStrictEncryptDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-mysql-strict-encrypt/src/test-integration/java/io/airbyte/integrations/destination/mysql/MySQLStrictEncryptDestinationAcceptanceTest.java index 18ebaa7a1c4e..b834793a94bd 100644 --- a/airbyte-integrations/connectors/destination-mysql-strict-encrypt/src/test-integration/java/io/airbyte/integrations/destination/mysql/MySQLStrictEncryptDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-mysql-strict-encrypt/src/test-integration/java/io/airbyte/integrations/destination/mysql/MySQLStrictEncryptDestinationAcceptanceTest.java @@ -18,13 +18,13 @@ import io.airbyte.integrations.destination.ExtendedNameTransformer; import io.airbyte.integrations.standardtest.destination.JdbcDestinationAcceptanceTest; import io.airbyte.integrations.standardtest.destination.comparator.TestDataComparator; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.CatalogHelpers; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.sql.SQLException; import java.time.Instant; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-mysql-strict-encrypt/src/test/java/io/airbyte/integrations/destination/mysql/MySqlDestinationStrictEncryptTest.java b/airbyte-integrations/connectors/destination-mysql-strict-encrypt/src/test/java/io/airbyte/integrations/destination/mysql/MySqlDestinationStrictEncryptTest.java index b6513e6a6df3..a19bc5f695b4 100644 --- a/airbyte-integrations/connectors/destination-mysql-strict-encrypt/src/test/java/io/airbyte/integrations/destination/mysql/MySqlDestinationStrictEncryptTest.java +++ b/airbyte-integrations/connectors/destination-mysql-strict-encrypt/src/test/java/io/airbyte/integrations/destination/mysql/MySqlDestinationStrictEncryptTest.java @@ -8,7 +8,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.junit.jupiter.api.Test; class MySqlDestinationStrictEncryptTest { diff --git a/airbyte-integrations/connectors/destination-mysql/src/main/java/io/airbyte/integrations/destination/mysql/MySQLDestination.java b/airbyte-integrations/connectors/destination-mysql/src/main/java/io/airbyte/integrations/destination/mysql/MySQLDestination.java index 2cd849e123d5..67144a19ee6f 100644 --- a/airbyte-integrations/connectors/destination-mysql/src/main/java/io/airbyte/integrations/destination/mysql/MySQLDestination.java +++ b/airbyte-integrations/connectors/destination-mysql/src/main/java/io/airbyte/integrations/destination/mysql/MySQLDestination.java @@ -21,8 +21,8 @@ import io.airbyte.integrations.base.ssh.SshWrappedDestination; import io.airbyte.integrations.destination.jdbc.AbstractJdbcDestination; import io.airbyte.integrations.destination.mysql.MySQLSqlOperations.VersionCompatibility; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; import java.util.Map; import javax.sql.DataSource; import org.slf4j.Logger; diff --git a/airbyte-integrations/connectors/destination-mysql/src/main/java/io/airbyte/integrations/destination/mysql/MySQLSqlOperations.java b/airbyte-integrations/connectors/destination-mysql/src/main/java/io/airbyte/integrations/destination/mysql/MySQLSqlOperations.java index 2e42913fd709..c513c355ff0e 100644 --- a/airbyte-integrations/connectors/destination-mysql/src/main/java/io/airbyte/integrations/destination/mysql/MySQLSqlOperations.java +++ b/airbyte-integrations/connectors/destination-mysql/src/main/java/io/airbyte/integrations/destination/mysql/MySQLSqlOperations.java @@ -9,7 +9,7 @@ import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.StandardNameTransformer; import io.airbyte.integrations.destination.jdbc.JdbcSqlOperations; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.io.File; import java.io.IOException; import java.nio.file.Files; diff --git a/airbyte-integrations/connectors/destination-mysql/src/test-integration/java/io/airbyte/integrations/destination/mysql/MySQLDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-mysql/src/test-integration/java/io/airbyte/integrations/destination/mysql/MySQLDestinationAcceptanceTest.java index b720ea006c3c..b9fc5e84618b 100644 --- a/airbyte-integrations/connectors/destination-mysql/src/test-integration/java/io/airbyte/integrations/destination/mysql/MySQLDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-mysql/src/test-integration/java/io/airbyte/integrations/destination/mysql/MySQLDestinationAcceptanceTest.java @@ -20,14 +20,14 @@ import io.airbyte.integrations.destination.ExtendedNameTransformer; import io.airbyte.integrations.standardtest.destination.JdbcDestinationAcceptanceTest; import io.airbyte.integrations.standardtest.destination.comparator.TestDataComparator; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.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 java.sql.SQLException; import java.time.Instant; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-mysql/src/test-integration/java/io/airbyte/integrations/destination/mysql/SslMySQLDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-mysql/src/test-integration/java/io/airbyte/integrations/destination/mysql/SslMySQLDestinationAcceptanceTest.java index 90f4dc32bb6a..2f2574d41c9e 100644 --- a/airbyte-integrations/connectors/destination-mysql/src/test-integration/java/io/airbyte/integrations/destination/mysql/SslMySQLDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-mysql/src/test-integration/java/io/airbyte/integrations/destination/mysql/SslMySQLDestinationAcceptanceTest.java @@ -15,7 +15,7 @@ import io.airbyte.db.jdbc.JdbcUtils; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.ExtendedNameTransformer; -import io.airbyte.protocol.models.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import java.sql.SQLException; import java.util.List; import java.util.stream.Collectors; diff --git a/airbyte-integrations/connectors/destination-oracle-strict-encrypt/src/main/java/io/airbyte/integrations/destination/oracle_strict_encrypt/OracleStrictEncryptDestination.java b/airbyte-integrations/connectors/destination-oracle-strict-encrypt/src/main/java/io/airbyte/integrations/destination/oracle_strict_encrypt/OracleStrictEncryptDestination.java index e63786900bab..92b68834b52c 100644 --- a/airbyte-integrations/connectors/destination-oracle-strict-encrypt/src/main/java/io/airbyte/integrations/destination/oracle_strict_encrypt/OracleStrictEncryptDestination.java +++ b/airbyte-integrations/connectors/destination-oracle-strict-encrypt/src/main/java/io/airbyte/integrations/destination/oracle_strict_encrypt/OracleStrictEncryptDestination.java @@ -13,9 +13,9 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.spec_modification.SpecModifyingDestination; import io.airbyte.integrations.destination.oracle.OracleDestination; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.util.function.Consumer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-oracle-strict-encrypt/src/test/java/io/airbyte/integrations/destination/oracle_strict_encrypt/OracleStrictEncryptDestinationTest.java b/airbyte-integrations/connectors/destination-oracle-strict-encrypt/src/test/java/io/airbyte/integrations/destination/oracle_strict_encrypt/OracleStrictEncryptDestinationTest.java index 4c834fb23a07..4f7d7e320df4 100644 --- a/airbyte-integrations/connectors/destination-oracle-strict-encrypt/src/test/java/io/airbyte/integrations/destination/oracle_strict_encrypt/OracleStrictEncryptDestinationTest.java +++ b/airbyte-integrations/connectors/destination-oracle-strict-encrypt/src/test/java/io/airbyte/integrations/destination/oracle_strict_encrypt/OracleStrictEncryptDestinationTest.java @@ -7,7 +7,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; import io.airbyte.integrations.base.ssh.SshHelpers; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; 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 34d025b4e674..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 @@ -9,7 +9,7 @@ import io.airbyte.db.jdbc.JdbcDatabase; import io.airbyte.integrations.destination.StandardNameTransformer; import io.airbyte.integrations.destination.jdbc.SqlOperations; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.sql.PreparedStatement; import java.sql.SQLException; import java.sql.Timestamp; @@ -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-strict-encrypt/src/main/java/io/airbyte/integrations/destination/postgres/PostgresDestinationStrictEncrypt.java b/airbyte-integrations/connectors/destination-postgres-strict-encrypt/src/main/java/io/airbyte/integrations/destination/postgres/PostgresDestinationStrictEncrypt.java index cdb9806fab7e..d2d51c85f184 100644 --- a/airbyte-integrations/connectors/destination-postgres-strict-encrypt/src/main/java/io/airbyte/integrations/destination/postgres/PostgresDestinationStrictEncrypt.java +++ b/airbyte-integrations/connectors/destination-postgres-strict-encrypt/src/main/java/io/airbyte/integrations/destination/postgres/PostgresDestinationStrictEncrypt.java @@ -11,9 +11,9 @@ import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.spec_modification.SpecModifyingDestination; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.util.Set; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-postgres-strict-encrypt/src/test/java/io/airbyte/integrations/destination/postgres/PostgresDestinationStrictEncryptTest.java b/airbyte-integrations/connectors/destination-postgres-strict-encrypt/src/test/java/io/airbyte/integrations/destination/postgres/PostgresDestinationStrictEncryptTest.java index c7120c4f789e..1d2cc94a2110 100644 --- a/airbyte-integrations/connectors/destination-postgres-strict-encrypt/src/test/java/io/airbyte/integrations/destination/postgres/PostgresDestinationStrictEncryptTest.java +++ b/airbyte-integrations/connectors/destination-postgres-strict-encrypt/src/test/java/io/airbyte/integrations/destination/postgres/PostgresDestinationStrictEncryptTest.java @@ -8,7 +8,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.junit.jupiter.api.Test; class PostgresDestinationStrictEncryptTest { diff --git a/airbyte-integrations/connectors/destination-postgres/src/main/java/io/airbyte/integrations/destination/postgres/PostgresSqlOperations.java b/airbyte-integrations/connectors/destination-postgres/src/main/java/io/airbyte/integrations/destination/postgres/PostgresSqlOperations.java index f2efec4ef256..46a45f2f5e47 100644 --- a/airbyte-integrations/connectors/destination-postgres/src/main/java/io/airbyte/integrations/destination/postgres/PostgresSqlOperations.java +++ b/airbyte-integrations/connectors/destination-postgres/src/main/java/io/airbyte/integrations/destination/postgres/PostgresSqlOperations.java @@ -6,7 +6,7 @@ import io.airbyte.db.jdbc.JdbcDatabase; import io.airbyte.integrations.destination.jdbc.JdbcSqlOperations; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; 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 eb8f5f40ceb3..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,15 +15,15 @@ import io.airbyte.db.jdbc.JdbcUtils; import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; 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; +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.test.utils.PostgreSQLContainerHelper; import java.time.Instant; import java.util.HashMap; diff --git a/airbyte-integrations/connectors/destination-pubsub/src/main/java/io/airbyte/integrations/destination/pubsub/PubsubConsumer.java b/airbyte-integrations/connectors/destination-pubsub/src/main/java/io/airbyte/integrations/destination/pubsub/PubsubConsumer.java index 49949cc48951..a6794afc7c55 100644 --- a/airbyte-integrations/connectors/destination-pubsub/src/main/java/io/airbyte/integrations/destination/pubsub/PubsubConsumer.java +++ b/airbyte-integrations/connectors/destination-pubsub/src/main/java/io/airbyte/integrations/destination/pubsub/PubsubConsumer.java @@ -15,12 +15,12 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; import io.airbyte.integrations.base.JavaBaseConstants; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +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.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.util.Map; import java.util.UUID; import java.util.function.Consumer; diff --git a/airbyte-integrations/connectors/destination-pubsub/src/main/java/io/airbyte/integrations/destination/pubsub/PubsubDestination.java b/airbyte-integrations/connectors/destination-pubsub/src/main/java/io/airbyte/integrations/destination/pubsub/PubsubDestination.java index c816e0e1da6a..967d6826fb93 100644 --- a/airbyte-integrations/connectors/destination-pubsub/src/main/java/io/airbyte/integrations/destination/pubsub/PubsubDestination.java +++ b/airbyte-integrations/connectors/destination-pubsub/src/main/java/io/airbyte/integrations/destination/pubsub/PubsubDestination.java @@ -15,10 +15,10 @@ import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.IntegrationRunner; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.ConfiguredAirbyteCatalog; import java.io.IOException; import java.util.List; import java.util.function.Consumer; diff --git a/airbyte-integrations/connectors/destination-pubsub/src/test-integration/java/io/airbyte/integrations/destination/pubsub/PubsubDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-pubsub/src/test-integration/java/io/airbyte/integrations/destination/pubsub/PubsubDestinationAcceptanceTest.java index 38ded4588d08..4712ca4c2d77 100644 --- a/airbyte-integrations/connectors/destination-pubsub/src/test-integration/java/io/airbyte/integrations/destination/pubsub/PubsubDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-pubsub/src/test-integration/java/io/airbyte/integrations/destination/pubsub/PubsubDestinationAcceptanceTest.java @@ -41,7 +41,7 @@ import io.airbyte.integrations.standardtest.destination.DestinationAcceptanceTest; import io.airbyte.integrations.standardtest.destination.comparator.AdvancedTestDataComparator; import io.airbyte.integrations.standardtest.destination.comparator.TestDataComparator; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import java.io.ByteArrayInputStream; import java.io.IOException; import java.nio.charset.StandardCharsets; diff --git a/airbyte-integrations/connectors/destination-pubsub/src/test/java/io/airbyte/integration/destination/pubsub/PubsubConsumerTest.java b/airbyte-integrations/connectors/destination-pubsub/src/test/java/io/airbyte/integration/destination/pubsub/PubsubConsumerTest.java index 093f4027e221..1086b0132199 100644 --- a/airbyte-integrations/connectors/destination-pubsub/src/test/java/io/airbyte/integration/destination/pubsub/PubsubConsumerTest.java +++ b/airbyte-integrations/connectors/destination-pubsub/src/test/java/io/airbyte/integration/destination/pubsub/PubsubConsumerTest.java @@ -8,8 +8,8 @@ import io.airbyte.integrations.destination.pubsub.PubsubConsumer; import io.airbyte.integrations.destination.pubsub.PubsubDestinationConfig; import io.airbyte.integrations.standardtest.destination.PerStreamStateMessageTest; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.extension.ExtendWith; diff --git a/airbyte-integrations/connectors/destination-pulsar/src/main/java/io/airbyte/integrations/destination/pulsar/PulsarDestination.java b/airbyte-integrations/connectors/destination-pulsar/src/main/java/io/airbyte/integrations/destination/pulsar/PulsarDestination.java index 001423b26236..6dcf81dc69a7 100644 --- a/airbyte-integrations/connectors/destination-pulsar/src/main/java/io/airbyte/integrations/destination/pulsar/PulsarDestination.java +++ b/airbyte-integrations/connectors/destination-pulsar/src/main/java/io/airbyte/integrations/destination/pulsar/PulsarDestination.java @@ -13,10 +13,10 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.StandardNameTransformer; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.ConfiguredAirbyteCatalog; import java.util.UUID; import java.util.function.Consumer; import org.apache.pulsar.client.api.MessageId; diff --git a/airbyte-integrations/connectors/destination-pulsar/src/main/java/io/airbyte/integrations/destination/pulsar/PulsarRecordConsumer.java b/airbyte-integrations/connectors/destination-pulsar/src/main/java/io/airbyte/integrations/destination/pulsar/PulsarRecordConsumer.java index 910da6dadd8e..9f8bd41d5984 100644 --- a/airbyte-integrations/connectors/destination-pulsar/src/main/java/io/airbyte/integrations/destination/pulsar/PulsarRecordConsumer.java +++ b/airbyte-integrations/connectors/destination-pulsar/src/main/java/io/airbyte/integrations/destination/pulsar/PulsarRecordConsumer.java @@ -7,10 +7,10 @@ import io.airbyte.commons.lang.Exceptions; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; import io.airbyte.integrations.destination.NamingConventionTransformer; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.nio.charset.StandardCharsets; import java.util.HashMap; import java.util.Map; 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 85b0b6b8ca19..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,16 +17,16 @@ import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; import io.airbyte.integrations.destination.StandardNameTransformer; import io.airbyte.integrations.standardtest.destination.PerStreamStateMessageTest; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; 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.AirbyteStream; +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.v0.ConfiguredAirbyteStream; import java.net.InetAddress; import java.net.NetworkInterface; import java.net.SocketException; diff --git a/airbyte-integrations/connectors/destination-r2/build.gradle b/airbyte-integrations/connectors/destination-r2/build.gradle index ff531000e0bf..834de43392a9 100644 --- a/airbyte-integrations/connectors/destination-r2/build.gradle +++ b/airbyte-integrations/connectors/destination-r2/build.gradle @@ -32,7 +32,7 @@ dependencies { exclude group: 'org.slf4j', module: 'slf4j-reload4j' } implementation ('org.apache.parquet:parquet-avro:1.12.3') { exclude group: 'org.slf4j', module: 'slf4j-log4j12'} - implementation ('com.github.airbytehq:json-avro-converter:1.0.1') { exclude group: 'ch.qos.logback', module: 'logback-classic'} + implementation ('com.github.airbytehq:json-avro-converter:1.1.0') { exclude group: 'ch.qos.logback', module: 'logback-classic'} testImplementation 'org.apache.commons:commons-lang3:3.11' testImplementation 'org.xerial.snappy:snappy-java:1.1.8.4' diff --git a/airbyte-integrations/connectors/destination-redis/src/main/java/io/airbyte/integrations/destination/redis/RedisDestination.java b/airbyte-integrations/connectors/destination-redis/src/main/java/io/airbyte/integrations/destination/redis/RedisDestination.java index 8e854a30ac78..01c7d6f552c1 100644 --- a/airbyte-integrations/connectors/destination-redis/src/main/java/io/airbyte/integrations/destination/redis/RedisDestination.java +++ b/airbyte-integrations/connectors/destination-redis/src/main/java/io/airbyte/integrations/destination/redis/RedisDestination.java @@ -11,9 +11,9 @@ import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.ssh.SshWrappedDestination; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.List; import java.util.function.Consumer; import org.slf4j.Logger; diff --git a/airbyte-integrations/connectors/destination-redis/src/main/java/io/airbyte/integrations/destination/redis/RedisMessageConsumer.java b/airbyte-integrations/connectors/destination-redis/src/main/java/io/airbyte/integrations/destination/redis/RedisMessageConsumer.java index d6576a41b41a..58edbb8c2ad4 100644 --- a/airbyte-integrations/connectors/destination-redis/src/main/java/io/airbyte/integrations/destination/redis/RedisMessageConsumer.java +++ b/airbyte-integrations/connectors/destination-redis/src/main/java/io/airbyte/integrations/destination/redis/RedisMessageConsumer.java @@ -7,9 +7,9 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.time.Instant; import java.util.Map; import java.util.function.Consumer; diff --git a/airbyte-integrations/connectors/destination-redis/src/main/java/io/airbyte/integrations/destination/redis/RedisStreamConfig.java b/airbyte-integrations/connectors/destination-redis/src/main/java/io/airbyte/integrations/destination/redis/RedisStreamConfig.java index f043f0acdf2c..a8dd37c5ab50 100644 --- a/airbyte-integrations/connectors/destination-redis/src/main/java/io/airbyte/integrations/destination/redis/RedisStreamConfig.java +++ b/airbyte-integrations/connectors/destination-redis/src/main/java/io/airbyte/integrations/destination/redis/RedisStreamConfig.java @@ -4,7 +4,7 @@ package io.airbyte.integrations.destination.redis; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; public class RedisStreamConfig { diff --git a/airbyte-integrations/connectors/destination-redis/src/test-integration/java/io/airbyte/integrations/destination/redis/RedisDestinationTest.java b/airbyte-integrations/connectors/destination-redis/src/test-integration/java/io/airbyte/integrations/destination/redis/RedisDestinationTest.java index c644d33db917..604eb07a8da5 100644 --- a/airbyte-integrations/connectors/destination-redis/src/test-integration/java/io/airbyte/integrations/destination/redis/RedisDestinationTest.java +++ b/airbyte-integrations/connectors/destination-redis/src/test-integration/java/io/airbyte/integrations/destination/redis/RedisDestinationTest.java @@ -6,7 +6,7 @@ import static org.assertj.core.api.Assertions.assertThat; -import io.airbyte.protocol.models.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; diff --git a/airbyte-integrations/connectors/destination-redpanda/src/main/java/io/airbyte/integrations/destination/redpanda/RedpandaDestination.java b/airbyte-integrations/connectors/destination-redpanda/src/main/java/io/airbyte/integrations/destination/redpanda/RedpandaDestination.java index c72856ce77d4..71fa4470e358 100644 --- a/airbyte-integrations/connectors/destination-redpanda/src/main/java/io/airbyte/integrations/destination/redpanda/RedpandaDestination.java +++ b/airbyte-integrations/connectors/destination-redpanda/src/main/java/io/airbyte/integrations/destination/redpanda/RedpandaDestination.java @@ -10,9 +10,9 @@ import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.IntegrationRunner; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.List; import java.util.Optional; import java.util.UUID; diff --git a/airbyte-integrations/connectors/destination-redpanda/src/main/java/io/airbyte/integrations/destination/redpanda/RedpandaMessageConsumer.java b/airbyte-integrations/connectors/destination-redpanda/src/main/java/io/airbyte/integrations/destination/redpanda/RedpandaMessageConsumer.java index 828475d03ba8..d8aa75448f1a 100644 --- a/airbyte-integrations/connectors/destination-redpanda/src/main/java/io/airbyte/integrations/destination/redpanda/RedpandaMessageConsumer.java +++ b/airbyte-integrations/connectors/destination-redpanda/src/main/java/io/airbyte/integrations/destination/redpanda/RedpandaMessageConsumer.java @@ -9,10 +9,10 @@ import static io.airbyte.integrations.base.JavaBaseConstants.COLUMN_NAME_EMITTED_AT; import io.airbyte.commons.json.Jsons; -import io.airbyte.integrations.base.AirbyteStreamNameNamespacePair; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.time.Instant; import java.util.Map; import java.util.UUID; diff --git a/airbyte-integrations/connectors/destination-redpanda/src/main/java/io/airbyte/integrations/destination/redpanda/RedpandaWriteConfig.java b/airbyte-integrations/connectors/destination-redpanda/src/main/java/io/airbyte/integrations/destination/redpanda/RedpandaWriteConfig.java index aec13dbb3368..161a03cfe0c7 100644 --- a/airbyte-integrations/connectors/destination-redpanda/src/main/java/io/airbyte/integrations/destination/redpanda/RedpandaWriteConfig.java +++ b/airbyte-integrations/connectors/destination-redpanda/src/main/java/io/airbyte/integrations/destination/redpanda/RedpandaWriteConfig.java @@ -4,7 +4,7 @@ package io.airbyte.integrations.destination.redpanda; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; public record RedpandaWriteConfig( diff --git a/airbyte-integrations/connectors/destination-redpanda/src/test-integration/java/io/airbyte/integrations/destination/redpanda/RedpandaDestinationTest.java b/airbyte-integrations/connectors/destination-redpanda/src/test-integration/java/io/airbyte/integrations/destination/redpanda/RedpandaDestinationTest.java index 31d518c4ae40..c20959f170f7 100644 --- a/airbyte-integrations/connectors/destination-redpanda/src/test-integration/java/io/airbyte/integrations/destination/redpanda/RedpandaDestinationTest.java +++ b/airbyte-integrations/connectors/destination-redpanda/src/test-integration/java/io/airbyte/integrations/destination/redpanda/RedpandaDestinationTest.java @@ -8,7 +8,7 @@ import com.google.common.collect.ImmutableMap; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; diff --git a/airbyte-integrations/connectors/destination-redpanda/src/test/java/io/airbyte/integrations/destination/redpanda/RedpandaWriteConfigTest.java b/airbyte-integrations/connectors/destination-redpanda/src/test/java/io/airbyte/integrations/destination/redpanda/RedpandaWriteConfigTest.java index 7cf8975141eb..fee7b54a59fc 100644 --- a/airbyte-integrations/connectors/destination-redpanda/src/test/java/io/airbyte/integrations/destination/redpanda/RedpandaWriteConfigTest.java +++ b/airbyte-integrations/connectors/destination-redpanda/src/test/java/io/airbyte/integrations/destination/redpanda/RedpandaWriteConfigTest.java @@ -6,7 +6,7 @@ import static org.assertj.core.api.Assertions.assertThat; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import org.junit.jupiter.api.Test; class RedpandaWriteConfigTest { diff --git a/airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/RedshiftStagingS3Destination.java b/airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/RedshiftStagingS3Destination.java index 4ccbd465a357..91a1b1983ccf 100644 --- a/airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/RedshiftStagingS3Destination.java +++ b/airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/RedshiftStagingS3Destination.java @@ -34,10 +34,10 @@ import io.airbyte.integrations.destination.s3.S3StorageOperations; import io.airbyte.integrations.destination.s3.csv.CsvSerializedBuffer; import io.airbyte.integrations.destination.staging.StagingConsumerFactory; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.ConfiguredAirbyteCatalog; import java.util.Map; import java.util.function.Consumer; import javax.sql.DataSource; diff --git a/airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/copiers/RedshiftStreamCopier.java b/airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/copiers/RedshiftStreamCopier.java index f069088f7115..25e7e1adf619 100644 --- a/airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/copiers/RedshiftStreamCopier.java +++ b/airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/copiers/RedshiftStreamCopier.java @@ -17,7 +17,7 @@ import io.airbyte.integrations.destination.redshift.manifest.Manifest; import io.airbyte.integrations.destination.s3.S3DestinationConfig; import io.airbyte.integrations.destination.s3.credential.S3AccessKeyCredentialConfig; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.sql.Timestamp; import java.time.Instant; import java.util.Optional; diff --git a/airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/copiers/RedshiftStreamCopierFactory.java b/airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/copiers/RedshiftStreamCopierFactory.java index d0c4673828fe..912d9db2070f 100644 --- a/airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/copiers/RedshiftStreamCopierFactory.java +++ b/airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/copiers/RedshiftStreamCopierFactory.java @@ -11,7 +11,7 @@ import io.airbyte.integrations.destination.jdbc.copy.StreamCopier; import io.airbyte.integrations.destination.jdbc.copy.s3.S3CopyConfig; import io.airbyte.integrations.destination.jdbc.copy.s3.S3StreamCopierFactory; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; /** * Very similar to the {@link S3StreamCopierFactory}, but we need some additional diff --git a/airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/operations/RedshiftSqlOperations.java b/airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/operations/RedshiftSqlOperations.java index 423cf9834520..8b41e41fefb5 100644 --- a/airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/operations/RedshiftSqlOperations.java +++ b/airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/operations/RedshiftSqlOperations.java @@ -14,7 +14,7 @@ import io.airbyte.integrations.destination.jdbc.JdbcSqlOperations; import io.airbyte.integrations.destination.jdbc.SqlOperationsUtils; import io.airbyte.integrations.destination.jdbc.WriteConfig; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.nio.charset.StandardCharsets; import java.sql.SQLException; import java.util.ArrayList; 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 8035bb854721..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.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.DestinationSyncMode; 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 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 2c35d769f2b7..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.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.DestinationSyncMode; 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 java.nio.file.Path; import java.sql.SQLException; import java.time.Instant; diff --git a/airbyte-integrations/connectors/destination-redshift/src/test-integration/java/io/airbyte/integrations/destination/redshift/RedshiftStagingS3DestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-redshift/src/test-integration/java/io/airbyte/integrations/destination/redshift/RedshiftStagingS3DestinationAcceptanceTest.java index 779fbede3c08..6b60e3de0bd3 100644 --- a/airbyte-integrations/connectors/destination-redshift/src/test-integration/java/io/airbyte/integrations/destination/redshift/RedshiftStagingS3DestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-redshift/src/test-integration/java/io/airbyte/integrations/destination/redshift/RedshiftStagingS3DestinationAcceptanceTest.java @@ -21,7 +21,7 @@ import io.airbyte.integrations.destination.redshift.operations.RedshiftSqlOperations; import io.airbyte.integrations.standardtest.destination.JdbcDestinationAcceptanceTest; import io.airbyte.integrations.standardtest.destination.comparator.TestDataComparator; -import io.airbyte.protocol.models.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import java.io.IOException; import java.nio.file.Path; import java.sql.SQLException; diff --git a/airbyte-integrations/connectors/destination-redshift/src/test/java/io/airbyte/integrations/destination/redshift/RedshiftSpecTest.java b/airbyte-integrations/connectors/destination-redshift/src/test/java/io/airbyte/integrations/destination/redshift/RedshiftSpecTest.java index acbe4116bef2..05441f4147bc 100644 --- a/airbyte-integrations/connectors/destination-redshift/src/test/java/io/airbyte/integrations/destination/redshift/RedshiftSpecTest.java +++ b/airbyte-integrations/connectors/destination-redshift/src/test/java/io/airbyte/integrations/destination/redshift/RedshiftSpecTest.java @@ -13,7 +13,7 @@ import io.airbyte.commons.io.IOs; import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.validation.json.JsonSchemaValidator; import java.io.File; import java.io.IOException; diff --git a/airbyte-integrations/connectors/destination-redshift/src/test/java/io/airbyte/integrations/destination/redshift/copiers/RedshiftStreamCopierTest.java b/airbyte-integrations/connectors/destination-redshift/src/test/java/io/airbyte/integrations/destination/redshift/copiers/RedshiftStreamCopierTest.java index 820897e0f598..c1d5daea67a4 100644 --- a/airbyte-integrations/connectors/destination-redshift/src/test/java/io/airbyte/integrations/destination/redshift/copiers/RedshiftStreamCopierTest.java +++ b/airbyte-integrations/connectors/destination-redshift/src/test/java/io/airbyte/integrations/destination/redshift/copiers/RedshiftStreamCopierTest.java @@ -21,10 +21,10 @@ import io.airbyte.integrations.destination.jdbc.SqlOperations; import io.airbyte.integrations.destination.jdbc.copy.s3.S3CopyConfig; import io.airbyte.integrations.destination.s3.S3DestinationConfig; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; +import io.airbyte.protocol.models.v0.SyncMode; import java.sql.SQLException; import java.sql.Timestamp; import java.time.Instant; diff --git a/airbyte-integrations/connectors/destination-rockset/src/main/java/io/airbyte/integrations/destination/rockset/RocksetDestination.java b/airbyte-integrations/connectors/destination-rockset/src/main/java/io/airbyte/integrations/destination/rockset/RocksetDestination.java index 6aa685421abe..1261ebb9289c 100644 --- a/airbyte-integrations/connectors/destination-rockset/src/main/java/io/airbyte/integrations/destination/rockset/RocksetDestination.java +++ b/airbyte-integrations/connectors/destination-rockset/src/main/java/io/airbyte/integrations/destination/rockset/RocksetDestination.java @@ -17,10 +17,10 @@ import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.IntegrationRunner; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.ConfiguredAirbyteCatalog; import java.util.Map; import java.util.UUID; import java.util.function.Consumer; diff --git a/airbyte-integrations/connectors/destination-rockset/src/main/java/io/airbyte/integrations/destination/rockset/RocksetWriteApiConsumer.java b/airbyte-integrations/connectors/destination-rockset/src/main/java/io/airbyte/integrations/destination/rockset/RocksetWriteApiConsumer.java index 0a77f1bbe22a..18d19359a14d 100644 --- a/airbyte-integrations/connectors/destination-rockset/src/main/java/io/airbyte/integrations/destination/rockset/RocksetWriteApiConsumer.java +++ b/airbyte-integrations/connectors/destination-rockset/src/main/java/io/airbyte/integrations/destination/rockset/RocksetWriteApiConsumer.java @@ -18,9 +18,9 @@ import com.rockset.client.model.DocumentStatus; import io.airbyte.commons.lang.Exceptions; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.time.Instant; import java.time.temporal.ChronoUnit; import java.util.ArrayList; diff --git a/airbyte-integrations/connectors/destination-rockset/src/test/java/io/airbyte/integrations/destination/rockset/RocksetWriteApiConsumerTest.java b/airbyte-integrations/connectors/destination-rockset/src/test/java/io/airbyte/integrations/destination/rockset/RocksetWriteApiConsumerTest.java index f90e280d704f..50eba93d2c0f 100644 --- a/airbyte-integrations/connectors/destination-rockset/src/test/java/io/airbyte/integrations/destination/rockset/RocksetWriteApiConsumerTest.java +++ b/airbyte-integrations/connectors/destination-rockset/src/test/java/io/airbyte/integrations/destination/rockset/RocksetWriteApiConsumerTest.java @@ -13,8 +13,8 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; import io.airbyte.integrations.standardtest.destination.PerStreamStateMessageTest; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.extension.ExtendWith; diff --git a/airbyte-integrations/connectors/destination-s3-glue/Dockerfile b/airbyte-integrations/connectors/destination-s3-glue/Dockerfile index 21987c18424f..8c7b634e4034 100644 --- a/airbyte-integrations/connectors/destination-s3-glue/Dockerfile +++ b/airbyte-integrations/connectors/destination-s3-glue/Dockerfile @@ -14,5 +14,5 @@ ENV APPLICATION destination-s3-glue COPY --from=build /airbyte /airbyte -LABEL io.airbyte.version=0.1.0 +LABEL io.airbyte.version=0.1.1 LABEL io.airbyte.name=airbyte/destination-s3-glue diff --git a/airbyte-integrations/connectors/destination-s3-glue/src/main/java/io/airbyte/integrations/destination/s3_glue/GlueOperations.java b/airbyte-integrations/connectors/destination-s3-glue/src/main/java/io/airbyte/integrations/destination/s3_glue/GlueOperations.java index 8cbd43dd86fc..cf8657763853 100644 --- a/airbyte-integrations/connectors/destination-s3-glue/src/main/java/io/airbyte/integrations/destination/s3_glue/GlueOperations.java +++ b/airbyte-integrations/connectors/destination-s3-glue/src/main/java/io/airbyte/integrations/destination/s3_glue/GlueOperations.java @@ -146,13 +146,17 @@ private String transformSchemaRecursive(JsonNode jsonNode) { yield arrayType; } case "object" -> { - String objectType = "struct<"; - Map properties = objectMapper.convertValue(jsonNode.get("properties"), new TypeReference<>() {}); - String columnTypes = properties.entrySet().stream() - .map(p -> p.getKey() + " : " + transformSchemaRecursive(p.getValue())) - .collect(Collectors.joining(",")); - objectType += (columnTypes + ">"); - yield objectType; + if (jsonNode.has("properties")) { + String objectType = "struct<"; + Map properties = objectMapper.convertValue(jsonNode.get("properties"), new TypeReference<>() {}); + String columnTypes = properties.entrySet().stream() + .map(p -> p.getKey() + " : " + transformSchemaRecursive(p.getValue())) + .collect(Collectors.joining(",")); + objectType += (columnTypes + ">"); + yield objectType; + } else { + yield "string"; + } } default -> type; }; 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 3d14735a2866..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 @@ -10,7 +10,6 @@ import io.airbyte.commons.functional.CheckedBiFunction; import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.AirbyteMessageConsumer; -import io.airbyte.integrations.base.AirbyteStreamNameNamespacePair; import io.airbyte.integrations.destination.NamingConventionTransformer; import io.airbyte.integrations.destination.buffered_stream_consumer.BufferedStreamConsumer; import io.airbyte.integrations.destination.buffered_stream_consumer.OnCloseFunction; @@ -20,11 +19,12 @@ import io.airbyte.integrations.destination.s3.BlobStorageOperations; import io.airbyte.integrations.destination.s3.S3DestinationConfig; import io.airbyte.integrations.destination.s3.WriteConfig; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; +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.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.util.List; import java.util.Map; import java.util.function.Consumer; diff --git a/airbyte-integrations/connectors/destination-s3-glue/src/main/java/io/airbyte/integrations/destination/s3_glue/S3GlueDestination.java b/airbyte-integrations/connectors/destination-s3-glue/src/main/java/io/airbyte/integrations/destination/s3_glue/S3GlueDestination.java index 24858a39a91c..c764552664e1 100644 --- a/airbyte-integrations/connectors/destination-s3-glue/src/main/java/io/airbyte/integrations/destination/s3_glue/S3GlueDestination.java +++ b/airbyte-integrations/connectors/destination-s3-glue/src/main/java/io/airbyte/integrations/destination/s3_glue/S3GlueDestination.java @@ -16,9 +16,9 @@ import io.airbyte.integrations.destination.s3.SerializedBufferFactory; import io.airbyte.integrations.destination.s3.StorageProvider; import io.airbyte.integrations.destination.s3.util.S3NameTransformer; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/destination-s3-glue/src/main/java/io/airbyte/integrations/destination/s3_glue/S3GlueWriteConfig.java b/airbyte-integrations/connectors/destination-s3-glue/src/main/java/io/airbyte/integrations/destination/s3_glue/S3GlueWriteConfig.java index e88c06821b32..29d7151dee6b 100644 --- a/airbyte-integrations/connectors/destination-s3-glue/src/main/java/io/airbyte/integrations/destination/s3_glue/S3GlueWriteConfig.java +++ b/airbyte-integrations/connectors/destination-s3-glue/src/main/java/io/airbyte/integrations/destination/s3_glue/S3GlueWriteConfig.java @@ -6,7 +6,7 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.integrations.destination.s3.WriteConfig; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; public class S3GlueWriteConfig extends WriteConfig { diff --git a/airbyte-integrations/connectors/destination-s3/Dockerfile b/airbyte-integrations/connectors/destination-s3/Dockerfile index eb28aa69ba80..e11e5ea30b84 100644 --- a/airbyte-integrations/connectors/destination-s3/Dockerfile +++ b/airbyte-integrations/connectors/destination-s3/Dockerfile @@ -40,5 +40,5 @@ RUN /bin/bash -c 'set -e && \ echo "unknown arch" ;\ fi' -LABEL io.airbyte.version=0.3.17 +LABEL io.airbyte.version=0.3.18 LABEL io.airbyte.name=airbyte/destination-s3 diff --git a/airbyte-integrations/connectors/destination-s3/build.gradle b/airbyte-integrations/connectors/destination-s3/build.gradle index 4f07191460e9..6b6b84235704 100644 --- a/airbyte-integrations/connectors/destination-s3/build.gradle +++ b/airbyte-integrations/connectors/destination-s3/build.gradle @@ -32,7 +32,7 @@ dependencies { exclude group: 'org.slf4j', module: 'slf4j-reload4j' } implementation ('org.apache.parquet:parquet-avro:1.12.3') { exclude group: 'org.slf4j', module: 'slf4j-log4j12'} - implementation ('com.github.airbytehq:json-avro-converter:1.0.1') { exclude group: 'ch.qos.logback', module: 'logback-classic'} + implementation ('com.github.airbytehq:json-avro-converter:1.1.0') { exclude group: 'ch.qos.logback', module: 'logback-classic'} implementation group: 'com.hadoop.gplcompression', name: 'hadoop-lzo', version: '0.4.20' testImplementation 'org.apache.commons:commons-lang3:3.11' testImplementation 'org.xerial.snappy:snappy-java:1.1.8.4' diff --git a/airbyte-integrations/connectors/destination-s3/src/main/java/io/airbyte/integrations/destination/s3/S3DestinationStrictEncrypt.java b/airbyte-integrations/connectors/destination-s3/src/main/java/io/airbyte/integrations/destination/s3/S3DestinationStrictEncrypt.java index de0e398a9c61..26e1ab4ac378 100644 --- a/airbyte-integrations/connectors/destination-s3/src/main/java/io/airbyte/integrations/destination/s3/S3DestinationStrictEncrypt.java +++ b/airbyte-integrations/connectors/destination-s3/src/main/java/io/airbyte/integrations/destination/s3/S3DestinationStrictEncrypt.java @@ -6,8 +6,8 @@ import com.fasterxml.jackson.databind.JsonNode; import com.google.common.annotations.VisibleForTesting; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; public class S3DestinationStrictEncrypt extends S3Destination { diff --git a/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3AvroDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3AvroDestinationAcceptanceTest.java index b1a46b0e240c..b006233b3f8e 100644 --- a/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3AvroDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3AvroDestinationAcceptanceTest.java @@ -4,6 +4,19 @@ package io.airbyte.integrations.destination.s3; +import io.airbyte.integrations.standardtest.destination.ProtocolVersion; +import io.airbyte.integrations.standardtest.destination.comparator.TestDataComparator; + public class S3AvroDestinationAcceptanceTest extends S3BaseAvroDestinationAcceptanceTest { + @Override + public ProtocolVersion getProtocolVersion() { + return ProtocolVersion.V1; + } + + @Override + protected TestDataComparator getTestDataComparator() { + return new S3AvroParquetTestDataComparator(); + } + } 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 new file mode 100644 index 000000000000..23fdf59b500b --- /dev/null +++ b/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3AvroParquetTestDataComparator.java @@ -0,0 +1,62 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.integrations.destination.s3; + +import com.fasterxml.jackson.databind.JsonNode; +import io.airbyte.integrations.standardtest.destination.comparator.AdvancedTestDataComparator; +import java.nio.charset.StandardCharsets; +import java.time.Instant; +import java.time.LocalDate; +import java.time.LocalDateTime; +import java.time.LocalTime; +import java.time.ZoneOffset; +import java.time.ZonedDateTime; +import java.time.format.DateTimeFormatter; +import java.util.Base64; + +public class S3AvroParquetTestDataComparator extends AdvancedTestDataComparator { + + @Override + protected boolean compareDateValues(String airbyteMessageValue, String destinationValue) { + var destinationDate = LocalDate.ofEpochDay(Long.parseLong(destinationValue)); + var expectedDate = LocalDate.parse(airbyteMessageValue, DateTimeFormatter.ISO_LOCAL_DATE); + return expectedDate.equals(destinationDate); + } + + private Instant getInstantFromEpoch(String epochValue) { + return Instant.ofEpochMilli(Long.parseLong(epochValue) / 1000); + } + + @Override + protected ZonedDateTime parseDestinationDateWithTz(String destinationValue) { + return ZonedDateTime.ofInstant(getInstantFromEpoch(destinationValue), ZoneOffset.UTC); + } + + @Override + protected boolean compareDateTimeValues(String airbyteMessageValue, String destinationValue) { + LocalDateTime destinationDate = LocalDateTime.ofInstant(getInstantFromEpoch(destinationValue), ZoneOffset.UTC); + return super.compareDateTimeValues(airbyteMessageValue, destinationDate.toString()); + } + + @Override + protected boolean compareTime(final String airbyteMessageValue, final String destinationValue) { + var destinationDate = LocalTime.ofInstant(getInstantFromEpoch(destinationValue), ZoneOffset.UTC); + var expectedDate = LocalTime.parse(airbyteMessageValue, DateTimeFormatter.ISO_TIME); + return expectedDate.equals(destinationDate); + } + + @Override + protected boolean compareString(final JsonNode expectedValue, final JsonNode actualValue) { + // to handle base64 encoded strings + 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); + } + +} diff --git a/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3CsvDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3CsvDestinationAcceptanceTest.java index 95a1788d4ed3..a3b82902e543 100644 --- a/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3CsvDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3CsvDestinationAcceptanceTest.java @@ -4,6 +4,13 @@ package io.airbyte.integrations.destination.s3; +import io.airbyte.integrations.standardtest.destination.ProtocolVersion; + public class S3CsvDestinationAcceptanceTest extends S3BaseCsvDestinationAcceptanceTest { + @Override + public ProtocolVersion getProtocolVersion() { + return ProtocolVersion.V1; + } + } diff --git a/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3CsvGzipDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3CsvGzipDestinationAcceptanceTest.java index 04c83e90a7d7..fe5e33b84b75 100644 --- a/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3CsvGzipDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3CsvGzipDestinationAcceptanceTest.java @@ -4,6 +4,13 @@ package io.airbyte.integrations.destination.s3; +import io.airbyte.integrations.standardtest.destination.ProtocolVersion; + public class S3CsvGzipDestinationAcceptanceTest extends S3BaseCsvGzipDestinationAcceptanceTest { + @Override + public ProtocolVersion getProtocolVersion() { + return ProtocolVersion.V1; + } + } diff --git a/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3JsonlDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3JsonlDestinationAcceptanceTest.java index 12165215bb35..66424315cfcc 100644 --- a/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3JsonlDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3JsonlDestinationAcceptanceTest.java @@ -4,6 +4,13 @@ package io.airbyte.integrations.destination.s3; +import io.airbyte.integrations.standardtest.destination.ProtocolVersion; + public class S3JsonlDestinationAcceptanceTest extends S3BaseJsonlDestinationAcceptanceTest { + @Override + public ProtocolVersion getProtocolVersion() { + return ProtocolVersion.V1; + } + } diff --git a/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3JsonlGzipDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3JsonlGzipDestinationAcceptanceTest.java index 044434f195c3..59f7149b2c16 100644 --- a/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3JsonlGzipDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3JsonlGzipDestinationAcceptanceTest.java @@ -4,6 +4,13 @@ package io.airbyte.integrations.destination.s3; +import io.airbyte.integrations.standardtest.destination.ProtocolVersion; + public class S3JsonlGzipDestinationAcceptanceTest extends S3BaseJsonlGzipDestinationAcceptanceTest { + @Override + public ProtocolVersion getProtocolVersion() { + return ProtocolVersion.V1; + } + } diff --git a/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3ParquetDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3ParquetDestinationAcceptanceTest.java index 3f148cb40fe6..113061ce10bb 100644 --- a/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3ParquetDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3ParquetDestinationAcceptanceTest.java @@ -4,6 +4,19 @@ package io.airbyte.integrations.destination.s3; +import io.airbyte.integrations.standardtest.destination.ProtocolVersion; +import io.airbyte.integrations.standardtest.destination.comparator.TestDataComparator; + public class S3ParquetDestinationAcceptanceTest extends S3BaseParquetDestinationAcceptanceTest { + @Override + public ProtocolVersion getProtocolVersion() { + return ProtocolVersion.V1; + } + + @Override + protected TestDataComparator getTestDataComparator() { + return new S3AvroParquetTestDataComparator(); + } + } diff --git a/airbyte-integrations/connectors/destination-s3/src/test/java/io/airbyte/integrations/destination/s3/S3DestinationStrictEncryptTest.java b/airbyte-integrations/connectors/destination-s3/src/test/java/io/airbyte/integrations/destination/s3/S3DestinationStrictEncryptTest.java index 038af3e3e5c6..b4df063c7b51 100644 --- a/airbyte-integrations/connectors/destination-s3/src/test/java/io/airbyte/integrations/destination/s3/S3DestinationStrictEncryptTest.java +++ b/airbyte-integrations/connectors/destination-s3/src/test/java/io/airbyte/integrations/destination/s3/S3DestinationStrictEncryptTest.java @@ -15,8 +15,8 @@ import com.amazonaws.services.s3.model.UploadPartRequest; import com.amazonaws.services.s3.model.UploadPartResult; import com.fasterxml.jackson.databind.JsonNode; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; diff --git a/airbyte-integrations/connectors/destination-s3/src/test/java/io/airbyte/integrations/destination/s3/S3DestinationTest.java b/airbyte-integrations/connectors/destination-s3/src/test/java/io/airbyte/integrations/destination/s3/S3DestinationTest.java index 0aae04639cd4..e60e390f8368 100644 --- a/airbyte-integrations/connectors/destination-s3/src/test/java/io/airbyte/integrations/destination/s3/S3DestinationTest.java +++ b/airbyte-integrations/connectors/destination-s3/src/test/java/io/airbyte/integrations/destination/s3/S3DestinationTest.java @@ -22,8 +22,8 @@ import com.amazonaws.services.s3.model.UploadPartRequest; import com.amazonaws.services.s3.model.UploadPartResult; import com.fasterxml.jackson.databind.JsonNode; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.mockito.ArgumentCaptor; diff --git a/airbyte-integrations/connectors/destination-scylla/src/main/java/io/airbyte/integrations/destination/scylla/ScyllaDestination.java b/airbyte-integrations/connectors/destination-scylla/src/main/java/io/airbyte/integrations/destination/scylla/ScyllaDestination.java index 3a282b7425f7..75d59f0bf44d 100644 --- a/airbyte-integrations/connectors/destination-scylla/src/main/java/io/airbyte/integrations/destination/scylla/ScyllaDestination.java +++ b/airbyte-integrations/connectors/destination-scylla/src/main/java/io/airbyte/integrations/destination/scylla/ScyllaDestination.java @@ -9,9 +9,9 @@ import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.IntegrationRunner; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.UUID; import java.util.function.Consumer; import org.slf4j.Logger; diff --git a/airbyte-integrations/connectors/destination-scylla/src/main/java/io/airbyte/integrations/destination/scylla/ScyllaMessageConsumer.java b/airbyte-integrations/connectors/destination-scylla/src/main/java/io/airbyte/integrations/destination/scylla/ScyllaMessageConsumer.java index 91482584ce66..7905571bbe78 100644 --- a/airbyte-integrations/connectors/destination-scylla/src/main/java/io/airbyte/integrations/destination/scylla/ScyllaMessageConsumer.java +++ b/airbyte-integrations/connectors/destination-scylla/src/main/java/io/airbyte/integrations/destination/scylla/ScyllaMessageConsumer.java @@ -6,9 +6,9 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.Map; import java.util.function.Consumer; import java.util.stream.Collectors; diff --git a/airbyte-integrations/connectors/destination-scylla/src/main/java/io/airbyte/integrations/destination/scylla/ScyllaStreamConfig.java b/airbyte-integrations/connectors/destination-scylla/src/main/java/io/airbyte/integrations/destination/scylla/ScyllaStreamConfig.java index aa2209a01e0f..e27621c25bcb 100644 --- a/airbyte-integrations/connectors/destination-scylla/src/main/java/io/airbyte/integrations/destination/scylla/ScyllaStreamConfig.java +++ b/airbyte-integrations/connectors/destination-scylla/src/main/java/io/airbyte/integrations/destination/scylla/ScyllaStreamConfig.java @@ -4,7 +4,7 @@ package io.airbyte.integrations.destination.scylla; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; /* * Immutable configuration class for storing destination stream config. diff --git a/airbyte-integrations/connectors/destination-scylla/src/test-integration/java/io/airbyte/integrations/destination/scylla/ScyllaDestinationTest.java b/airbyte-integrations/connectors/destination-scylla/src/test-integration/java/io/airbyte/integrations/destination/scylla/ScyllaDestinationTest.java index 5e76cbad1bf2..8e7e46b65084 100644 --- a/airbyte-integrations/connectors/destination-scylla/src/test-integration/java/io/airbyte/integrations/destination/scylla/ScyllaDestinationTest.java +++ b/airbyte-integrations/connectors/destination-scylla/src/test-integration/java/io/airbyte/integrations/destination/scylla/ScyllaDestinationTest.java @@ -8,7 +8,7 @@ import io.airbyte.integrations.destination.scylla.ScyllaContainerInitializr.ScyllaContainer; import io.airbyte.integrations.util.HostPortResolver; -import io.airbyte.protocol.models.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInstance; diff --git a/airbyte-integrations/connectors/destination-scylla/src/test/java/io/airbyte/integrations/destination/scylla/ScyllaRecordConsumerTest.java b/airbyte-integrations/connectors/destination-scylla/src/test/java/io/airbyte/integrations/destination/scylla/ScyllaRecordConsumerTest.java index 4e666bc46628..fa1e2e7bb23b 100644 --- a/airbyte-integrations/connectors/destination-scylla/src/test/java/io/airbyte/integrations/destination/scylla/ScyllaRecordConsumerTest.java +++ b/airbyte-integrations/connectors/destination-scylla/src/test/java/io/airbyte/integrations/destination/scylla/ScyllaRecordConsumerTest.java @@ -8,8 +8,8 @@ import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; import io.airbyte.integrations.standardtest.destination.PerStreamStateMessageTest; import io.airbyte.integrations.util.HostPortResolver; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.DisplayName; diff --git a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeAzureBlobStorageStreamCopier.java b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeAzureBlobStorageStreamCopier.java index 716e6eb28722..13313cacf4b7 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeAzureBlobStorageStreamCopier.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeAzureBlobStorageStreamCopier.java @@ -15,7 +15,7 @@ import io.airbyte.integrations.destination.jdbc.StagingFilenameGenerator; import io.airbyte.integrations.destination.jdbc.copy.azure.AzureBlobStorageConfig; import io.airbyte.integrations.destination.jdbc.copy.azure.AzureBlobStorageStreamCopier; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeAzureBlobStorageStreamCopierFactory.java b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeAzureBlobStorageStreamCopierFactory.java index 8b943db4a705..ad2ec6f155a4 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeAzureBlobStorageStreamCopierFactory.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeAzureBlobStorageStreamCopierFactory.java @@ -13,7 +13,7 @@ import io.airbyte.integrations.destination.jdbc.copy.StreamCopier; import io.airbyte.integrations.destination.jdbc.copy.azure.AzureBlobStorageConfig; import io.airbyte.integrations.destination.jdbc.copy.azure.AzureBlobStorageStreamCopierFactory; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; public class SnowflakeAzureBlobStorageStreamCopierFactory extends AzureBlobStorageStreamCopierFactory { diff --git a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeCopyAzureBlobStorageDestination.java b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeCopyAzureBlobStorageDestination.java index d18580b495a1..6447d5534f97 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeCopyAzureBlobStorageDestination.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeCopyAzureBlobStorageDestination.java @@ -16,8 +16,8 @@ import io.airbyte.integrations.destination.jdbc.copy.CopyConsumerFactory; import io.airbyte.integrations.destination.jdbc.copy.CopyDestination; import io.airbyte.integrations.destination.jdbc.copy.azure.AzureBlobStorageStreamCopier; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.function.Consumer; import javax.sql.DataSource; 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 af5fb0c98e73..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 @@ -23,9 +23,9 @@ import io.airbyte.integrations.destination.record_buffer.FileBuffer; import io.airbyte.integrations.destination.s3.csv.CsvSerializedBuffer; import io.airbyte.integrations.destination.staging.StagingConsumerFactory; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; @@ -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/SnowflakeGcsStreamCopier.java b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeGcsStreamCopier.java index 06a23b29e7c1..a74fe6ad96bd 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeGcsStreamCopier.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeGcsStreamCopier.java @@ -15,7 +15,7 @@ import io.airbyte.integrations.destination.jdbc.StagingFilenameGenerator; import io.airbyte.integrations.destination.jdbc.copy.gcs.GcsConfig; import io.airbyte.integrations.destination.jdbc.copy.gcs.GcsStreamCopier; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeGcsStreamCopierFactory.java b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeGcsStreamCopierFactory.java index b08af2b87ef8..a59fcf273cac 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeGcsStreamCopierFactory.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeGcsStreamCopierFactory.java @@ -13,7 +13,7 @@ import io.airbyte.integrations.destination.jdbc.copy.StreamCopier; import io.airbyte.integrations.destination.jdbc.copy.gcs.GcsConfig; import io.airbyte.integrations.destination.jdbc.copy.gcs.GcsStreamCopierFactory; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; public class SnowflakeGcsStreamCopierFactory extends GcsStreamCopierFactory { diff --git a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeInternalStagingDestination.java b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeInternalStagingDestination.java index 115c7cbf644d..082d944c71d5 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeInternalStagingDestination.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeInternalStagingDestination.java @@ -15,9 +15,9 @@ import io.airbyte.integrations.destination.record_buffer.FileBuffer; import io.airbyte.integrations.destination.s3.csv.CsvSerializedBuffer; import io.airbyte.integrations.destination.staging.StagingConsumerFactory; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.Collections; import java.util.Map; import java.util.UUID; 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 264ce665e2df..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 @@ -19,10 +19,10 @@ import io.airbyte.integrations.destination.s3.S3DestinationConfig; import io.airbyte.integrations.destination.s3.csv.CsvSerializedBuffer; import io.airbyte.integrations.destination.staging.StagingConsumerFactory; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.ConfiguredAirbyteCatalog; import java.util.Collections; import java.util.Map; import java.util.UUID; @@ -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/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeS3StreamCopier.java b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeS3StreamCopier.java index 2bf16feba612..0acfcef2fcfa 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeS3StreamCopier.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeS3StreamCopier.java @@ -16,7 +16,7 @@ import io.airbyte.integrations.destination.s3.S3DestinationConfig; import io.airbyte.integrations.destination.s3.credential.S3AccessKeyCredentialConfig; import io.airbyte.integrations.destination.s3.util.S3OutputPathHelper; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.sql.SQLException; import java.sql.Timestamp; import java.time.Instant; diff --git a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeS3StreamCopierFactory.java b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeS3StreamCopierFactory.java index d31927e5011a..8e9305f76a59 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeS3StreamCopierFactory.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeS3StreamCopierFactory.java @@ -11,7 +11,7 @@ import io.airbyte.integrations.destination.jdbc.copy.StreamCopier; import io.airbyte.integrations.destination.jdbc.copy.s3.S3CopyConfig; import io.airbyte.integrations.destination.jdbc.copy.s3.S3StreamCopierFactory; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; public class SnowflakeS3StreamCopierFactory extends S3StreamCopierFactory { diff --git a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeSqlOperations.java b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeSqlOperations.java index 1043cfb2d68e..5675dcd40367 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeSqlOperations.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeSqlOperations.java @@ -10,7 +10,7 @@ import io.airbyte.integrations.destination.jdbc.JdbcSqlOperations; import io.airbyte.integrations.destination.jdbc.SqlOperations; import io.airbyte.integrations.destination.jdbc.SqlOperationsUtils; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.sql.SQLException; import java.util.List; import java.util.StringJoiner; diff --git a/airbyte-integrations/connectors/destination-snowflake/src/test-integration/java/io/airbyte/integrations/destination/snowflake/SnowflakeDestinationIntegrationTest.java b/airbyte-integrations/connectors/destination-snowflake/src/test-integration/java/io/airbyte/integrations/destination/snowflake/SnowflakeDestinationIntegrationTest.java index 7995f460153f..1237094d9d13 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/test-integration/java/io/airbyte/integrations/destination/snowflake/SnowflakeDestinationIntegrationTest.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/test-integration/java/io/airbyte/integrations/destination/snowflake/SnowflakeDestinationIntegrationTest.java @@ -14,7 +14,7 @@ import io.airbyte.commons.string.Strings; import io.airbyte.db.factory.DataSourceFactory; import io.airbyte.db.jdbc.JdbcDatabase; -import io.airbyte.protocol.models.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Paths; diff --git a/airbyte-integrations/connectors/destination-snowflake/src/test-integration/java/io/airbyte/integrations/destination/snowflake/SnowflakeInsertDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-snowflake/src/test-integration/java/io/airbyte/integrations/destination/snowflake/SnowflakeInsertDestinationAcceptanceTest.java index 0829750a97fe..8d9d3cfabecc 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/test-integration/java/io/airbyte/integrations/destination/snowflake/SnowflakeInsertDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/test-integration/java/io/airbyte/integrations/destination/snowflake/SnowflakeInsertDestinationAcceptanceTest.java @@ -24,11 +24,11 @@ import io.airbyte.integrations.standardtest.destination.DestinationAcceptanceTest; import io.airbyte.integrations.standardtest.destination.argproviders.DataArgumentsProvider; import io.airbyte.integrations.standardtest.destination.comparator.TestDataComparator; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.CatalogHelpers; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.nio.file.Path; import java.sql.ResultSet; import java.sql.SQLException; diff --git a/airbyte-integrations/connectors/destination-snowflake/src/test-integration/java/io/airbyte/integrations/destination/snowflake/SnowflakeInternalStagingDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-snowflake/src/test-integration/java/io/airbyte/integrations/destination/snowflake/SnowflakeInternalStagingDestinationAcceptanceTest.java index e73187ed00a8..8f9e854e397b 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/test-integration/java/io/airbyte/integrations/destination/snowflake/SnowflakeInternalStagingDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/test-integration/java/io/airbyte/integrations/destination/snowflake/SnowflakeInternalStagingDestinationAcceptanceTest.java @@ -10,11 +10,11 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; import io.airbyte.integrations.standardtest.destination.argproviders.DataArgumentsProvider; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteCatalog; +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 java.nio.file.Path; import java.util.List; import java.util.stream.Collectors; @@ -43,7 +43,7 @@ public void testSyncWithNormalizationWithKeyPairEncrypt(final String messagesFil } private void testSyncWithNormalizationWithKeyPairAuth(String messagesFilename, String catalogFilename, String configName) throws Exception { - if (!normalizationFromSpec()) { + if (!normalizationFromDefinition()) { return; } diff --git a/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeAzureBlobStreamCopierTest.java b/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeAzureBlobStreamCopierTest.java index bf5a7b5bc35e..e0d3d9bb4209 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeAzureBlobStreamCopierTest.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeAzureBlobStreamCopierTest.java @@ -16,7 +16,7 @@ import io.airbyte.integrations.destination.jdbc.SqlOperations; import io.airbyte.integrations.destination.jdbc.StagingFilenameGenerator; import io.airbyte.integrations.destination.jdbc.copy.azure.AzureBlobStorageConfig; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.util.ArrayList; import java.util.List; import org.junit.jupiter.api.BeforeEach; 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 45f69d7b90e9..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.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.DestinationSyncMode; 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 java.sql.SQLException; import java.time.Instant; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeGCSStreamCopierTest.java b/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeGCSStreamCopierTest.java index 30b65bf69c5c..13525d36d31e 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeGCSStreamCopierTest.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeGCSStreamCopierTest.java @@ -15,7 +15,7 @@ import io.airbyte.integrations.destination.ExtendedNameTransformer; import io.airbyte.integrations.destination.jdbc.SqlOperations; import io.airbyte.integrations.destination.jdbc.copy.gcs.GcsConfig; -import io.airbyte.protocol.models.DestinationSyncMode; +import io.airbyte.protocol.models.v0.DestinationSyncMode; import java.util.ArrayList; import java.util.List; import org.junit.jupiter.api.BeforeEach; diff --git a/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeS3StreamCopierTest.java b/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeS3StreamCopierTest.java index 4d34b1bebef2..4235a8a374a7 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeS3StreamCopierTest.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeS3StreamCopierTest.java @@ -16,10 +16,10 @@ import io.airbyte.integrations.destination.jdbc.SqlOperations; import io.airbyte.integrations.destination.jdbc.copy.s3.S3CopyConfig; import io.airbyte.integrations.destination.s3.S3DestinationConfig; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; +import io.airbyte.protocol.models.v0.SyncMode; import java.sql.Timestamp; import java.time.Instant; import java.util.ArrayList; diff --git a/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeSqlOperationsTest.java b/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeSqlOperationsTest.java index a5b08cd5d4aa..dfaf972e0de5 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeSqlOperationsTest.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeSqlOperationsTest.java @@ -14,7 +14,7 @@ import io.airbyte.commons.functional.CheckedConsumer; import io.airbyte.db.jdbc.JdbcDatabase; import io.airbyte.integrations.base.JavaBaseConstants; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-tidb/src/main/java/io/airbyte/integrations/destination/tidb/TiDBDestination.java b/airbyte-integrations/connectors/destination-tidb/src/main/java/io/airbyte/integrations/destination/tidb/TiDBDestination.java index 788e158e890a..f486198b616c 100644 --- a/airbyte-integrations/connectors/destination-tidb/src/main/java/io/airbyte/integrations/destination/tidb/TiDBDestination.java +++ b/airbyte-integrations/connectors/destination-tidb/src/main/java/io/airbyte/integrations/destination/tidb/TiDBDestination.java @@ -15,7 +15,7 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.ssh.SshWrappedDestination; import io.airbyte.integrations.destination.jdbc.AbstractJdbcDestination; -import io.airbyte.protocol.models.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import java.util.Map; import javax.sql.DataSource; import org.slf4j.Logger; diff --git a/airbyte-integrations/connectors/destination-tidb/src/main/java/io/airbyte/integrations/destination/tidb/TiDBSqlOperations.java b/airbyte-integrations/connectors/destination-tidb/src/main/java/io/airbyte/integrations/destination/tidb/TiDBSqlOperations.java index 2a034fa6191c..cdea8abcb01e 100644 --- a/airbyte-integrations/connectors/destination-tidb/src/main/java/io/airbyte/integrations/destination/tidb/TiDBSqlOperations.java +++ b/airbyte-integrations/connectors/destination-tidb/src/main/java/io/airbyte/integrations/destination/tidb/TiDBSqlOperations.java @@ -9,7 +9,7 @@ import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.StandardNameTransformer; import io.airbyte.integrations.destination.jdbc.JdbcSqlOperations; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.io.File; import java.io.IOException; import java.nio.file.Files; 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 6292108c5273..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.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; 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 java.time.Instant; import java.util.HashMap; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-yugabytedb/src/main/java/io/airbyte/integrations/destination/yugabytedb/YugabytedbSqlOperations.java b/airbyte-integrations/connectors/destination-yugabytedb/src/main/java/io/airbyte/integrations/destination/yugabytedb/YugabytedbSqlOperations.java index cff16136ac2c..3c8dc7aa3f9a 100644 --- a/airbyte-integrations/connectors/destination-yugabytedb/src/main/java/io/airbyte/integrations/destination/yugabytedb/YugabytedbSqlOperations.java +++ b/airbyte-integrations/connectors/destination-yugabytedb/src/main/java/io/airbyte/integrations/destination/yugabytedb/YugabytedbSqlOperations.java @@ -8,7 +8,7 @@ import com.yugabyte.core.BaseConnection; import io.airbyte.db.jdbc.JdbcDatabase; import io.airbyte.integrations.destination.jdbc.JdbcSqlOperations; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; diff --git a/airbyte-integrations/connectors/source-alloydb-strict-encrypt/Dockerfile b/airbyte-integrations/connectors/source-alloydb-strict-encrypt/Dockerfile index 66c0e5c4187e..ea01b05c8865 100644 --- a/airbyte-integrations/connectors/source-alloydb-strict-encrypt/Dockerfile +++ b/airbyte-integrations/connectors/source-alloydb-strict-encrypt/Dockerfile @@ -16,5 +16,5 @@ ENV APPLICATION source-alloydb-strict-encrypt COPY --from=build /airbyte /airbyte -LABEL io.airbyte.version=1.0.32 +LABEL io.airbyte.version=1.0.34 LABEL io.airbyte.name=airbyte/source-alloydb-strict-encrypt diff --git a/airbyte-integrations/connectors/source-alloydb/Dockerfile b/airbyte-integrations/connectors/source-alloydb/Dockerfile index aab298f11a05..725fc5eef5e9 100644 --- a/airbyte-integrations/connectors/source-alloydb/Dockerfile +++ b/airbyte-integrations/connectors/source-alloydb/Dockerfile @@ -16,5 +16,5 @@ ENV APPLICATION source-alloydb COPY --from=build /airbyte /airbyte -LABEL io.airbyte.version=1.0.32 +LABEL io.airbyte.version=1.0.34 LABEL io.airbyte.name=airbyte/source-alloydb diff --git a/airbyte-integrations/connectors/source-amplitude/Dockerfile b/airbyte-integrations/connectors/source-amplitude/Dockerfile index 5a0bccbd4061..d1a4466b5305 100644 --- a/airbyte-integrations/connectors/source-amplitude/Dockerfile +++ b/airbyte-integrations/connectors/source-amplitude/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.18 +LABEL io.airbyte.version=0.1.19 LABEL io.airbyte.name=airbyte/source-amplitude diff --git a/airbyte-integrations/connectors/source-amplitude/source_amplitude/source.py b/airbyte-integrations/connectors/source-amplitude/source_amplitude/source.py index bf43ac7dc947..e77f6a321072 100644 --- a/airbyte-integrations/connectors/source-amplitude/source_amplitude/source.py +++ b/airbyte-integrations/connectors/source-amplitude/source_amplitude/source.py @@ -49,6 +49,8 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: :param config: A Mapping of the user input configuration as defined in the connector spec. """ config["start_date"] = self._validate_start_date(config.get("start_date")) + if not config.get("data_region"): + config["data_region"] = "Standard Server" auth = TokenAuthenticator(token=self._convert_auth_to_token(config["api_key"], config["secret_key"]), auth_method="Basic") return [ diff --git a/airbyte-integrations/connectors/source-amplitude/source_amplitude/spec.json b/airbyte-integrations/connectors/source-amplitude/source_amplitude/spec.json index 3ea2f5a60f18..7e0b31c16b23 100644 --- a/airbyte-integrations/connectors/source-amplitude/source_amplitude/spec.json +++ b/airbyte-integrations/connectors/source-amplitude/source_amplitude/spec.json @@ -4,7 +4,7 @@ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Amplitude Spec", "type": "object", - "required": ["data_region", "api_key", "secret_key", "start_date"], + "required": ["api_key", "secret_key", "start_date"], "additionalProperties": true, "properties": { "data_region": { 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/Dockerfile b/airbyte-integrations/connectors/source-bigcommerce/Dockerfile index e5144880d9d0..de52519da1d8 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/Dockerfile +++ b/airbyte-integrations/connectors/source-bigcommerce/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.9 LABEL io.airbyte.name=airbyte/source-bigcommerce diff --git a/airbyte-integrations/connectors/source-bigcommerce/README.md b/airbyte-integrations/connectors/source-bigcommerce/README.md index 5d1b46d6c878..9e95020543b5 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/README.md +++ b/airbyte-integrations/connectors/source-bigcommerce/README.md @@ -8,7 +8,7 @@ For information about how to use this connector within Airbyte, see [the documen ### Prerequisites **To iterate on this connector, make sure to complete this prerequisites section.** -#### Minimum Python version required `= 3.7.0` +#### Minimum Python version required `= 3.9.0` #### Build & Activate Virtual Environment and install dependencies From this connector directory, create a virtual environment: diff --git a/airbyte-integrations/connectors/source-bigcommerce/acceptance-test-config.yml b/airbyte-integrations/connectors/source-bigcommerce/acceptance-test-config.yml index df5768d18531..74276e0a67f5 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-bigcommerce/acceptance-test-config.yml @@ -14,7 +14,7 @@ tests: basic_read: - config_path: "secrets/config.json" configured_catalog_path: "integration_tests/configured_catalog.json" - empty_streams: ["orders", "transactions", "products", "customers"] + empty_streams: ["orders", "transactions", "products", "customers", "channels", "order_products"] incremental: - config_path: "secrets/config.json" configured_catalog_path: "integration_tests/configured_catalog.json" diff --git a/airbyte-integrations/connectors/source-bigcommerce/integration_tests/abnormal_state.json b/airbyte-integrations/connectors/source-bigcommerce/integration_tests/abnormal_state.json index 7dffb12b07f6..6f3ac745f32a 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/integration_tests/abnormal_state.json +++ b/airbyte-integrations/connectors/source-bigcommerce/integration_tests/abnormal_state.json @@ -32,6 +32,17 @@ } } }, + { + "type": "STREAM", + "stream": { + "stream_state": { + "id": 9000002039398998 + }, + "stream_descriptor": { + "name": "order_products" + } + } + }, { "type": "STREAM", "stream": { diff --git a/airbyte-integrations/connectors/source-bigcommerce/integration_tests/catalog.json b/airbyte-integrations/connectors/source-bigcommerce/integration_tests/catalog.json index 7ed3a148a430..d766fcaee0fb 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/integration_tests/catalog.json +++ b/airbyte-integrations/connectors/source-bigcommerce/integration_tests/catalog.json @@ -608,6 +608,186 @@ } } }, + { + "name": "order_products", + "json_schema": { + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "integer"] + }, + "order_id": { + "type": ["null", "integer"] + }, + "product_id": { + "type": ["null", "integer"] + }, + "variant_id": { + "type": ["null", "integer"] + }, + "order_address_id": { + "type": ["null", "integer"] + }, + "name": { + "type": ["null", "string"] + }, + "name_customer": { + "type": ["null", "string"] + }, + "name_merchant": { + "type": ["null", "string"] + }, + "sku": { + "type": ["null", "string"] + }, + "upc": { + "type": ["null", "string"] + }, + "type": { + "type": ["null", "string"] + }, + "base_price": { + "type": ["null", "string"] + }, + "price_ex_tax": { + "type": ["null", "string"] + }, + "price_inc_tax": { + "type": ["null", "string"] + }, + "price_tax": { + "type": ["null", "string"] + }, + "base_total": { + "type": ["null", "string"] + }, + "total_ex_tax": { + "type": ["null", "string"] + }, + "total_inc_tax": { + "type": ["null", "string"] + }, + "total_tax": { + "type": ["null", "string"] + }, + "weight": { + "type": ["null", "string"] + }, + "width": { + "type": ["null", "string"] + }, + "height": { + "type": ["null", "string"] + }, + "depth": { + "type": ["null", "string"] + }, + "quantity": { + "type": ["null", "number"] + }, + "base_cost_price": { + "type": ["null", "string"] + }, + "cost_price_inc_tax": { + "type": ["null", "string"] + }, + "cost_price_ex_tax": { + "type": ["null", "string"] + }, + "cost_price_tax": { + "type": ["null", "string"] + }, + "is_refunded": { + "type": ["null", "boolean"] + }, + "quantity_refunded": { + "type": ["null", "number"] + }, + "refund_amount": { + "type": ["null", "string"] + }, + "return_id": { + "type": ["null", "number"] + }, + "wrapping_id": { + "type": ["null", "string"] + }, + "wrapping_name": { + "type": ["null", "string"] + }, + "base_wrapping_cost": { + "type": ["null", "string"] + }, + "wrapping_cost_ex_tax": { + "type": ["null", "string"] + }, + "wrapping_cost_inc_tax": { + "type": ["null", "string"] + }, + "wrapping_cost_tax": { + "type": ["null", "string"] + }, + "wrapping_message": { + "type": ["null", "string"] + }, + "quantity_shipped": { + "type": ["null", "number"] + }, + "event_name": { + "type": ["null", "string"] + }, + "event_date": { + "type": ["null", "string"] + }, + "fixed_shipping_cost": { + "type": ["null", "string"] + }, + "ebay_item_id": { + "type": ["null", "string"] + }, + "ebay_transaction_id": { + "type": ["null", "string"] + }, + "option_set_id": { + "type": ["null", "integer"] + }, + "parent_order_product_id": { + "type": ["null", "integer"] + }, + "is_bundled_product": { + "type": ["null", "boolean"] + }, + "bin_picking_number": { + "type": ["null", "string"] + }, + "external_id": { + "type": ["null", "string"] + }, + "fulfillment_source": { + "type": ["null", "string"] + }, + "brand": { + "type": ["null", "string"] + }, + "gift_certificate_id": { + "type": ["null", "integer"] + }, + "applied_discounts": { + "type": ["null", "array"] + }, + "applied_discounts": { + "type": ["null", "array"] + }, + "product_options": { + "type": ["null", "array"] + }, + "configurable_fields": { + "type": ["null", "array"] + } + } + } + }, { "name": "pages", "json_schema": { 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 af224c140947..2e278a21cef5 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/integration_tests/configured_catalog.json +++ b/airbyte-integrations/connectors/source-bigcommerce/integration_tests/configured_catalog.json @@ -1754,6 +1754,191 @@ }, "sync_mode": "incremental", "cursor_field": ["store_id"], + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "order_products", + "json_schema": { + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "integer"] + }, + "order_id": { + "type": ["null", "integer"] + }, + "product_id": { + "type": ["null", "integer"] + }, + "variant_id": { + "type": ["null", "integer"] + }, + "order_address_id": { + "type": ["null", "integer"] + }, + "name": { + "type": ["null", "string"] + }, + "name_customer": { + "type": ["null", "string"] + }, + "name_merchant": { + "type": ["null", "string"] + }, + "sku": { + "type": ["null", "string"] + }, + "upc": { + "type": ["null", "string"] + }, + "type": { + "type": ["null", "string"] + }, + "base_price": { + "type": ["null", "string"] + }, + "price_ex_tax": { + "type": ["null", "string"] + }, + "price_inc_tax": { + "type": ["null", "string"] + }, + "price_tax": { + "type": ["null", "string"] + }, + "base_total": { + "type": ["null", "string"] + }, + "total_ex_tax": { + "type": ["null", "string"] + }, + "total_inc_tax": { + "type": ["null", "string"] + }, + "total_tax": { + "type": ["null", "string"] + }, + "weight": { + "type": ["null", "string"] + }, + "width": { + "type": ["null", "string"] + }, + "height": { + "type": ["null", "string"] + }, + "depth": { + "type": ["null", "string"] + }, + "quantity": { + "type": ["null", "number"] + }, + "base_cost_price": { + "type": ["null", "string"] + }, + "cost_price_inc_tax": { + "type": ["null", "string"] + }, + "cost_price_ex_tax": { + "type": ["null", "string"] + }, + "cost_price_tax": { + "type": ["null", "string"] + }, + "is_refunded": { + "type": ["null", "boolean"] + }, + "quantity_refunded": { + "type": ["null", "number"] + }, + "refund_amount": { + "type": ["null", "string"] + }, + "return_id": { + "type": ["null", "number"] + }, + "wrapping_id": { + "type": ["null", "string"] + }, + "wrapping_name": { + "type": ["null", "string"] + }, + "base_wrapping_cost": { + "type": ["null", "string"] + }, + "wrapping_cost_ex_tax": { + "type": ["null", "string"] + }, + "wrapping_cost_inc_tax": { + "type": ["null", "string"] + }, + "wrapping_cost_tax": { + "type": ["null", "string"] + }, + "wrapping_message": { + "type": ["null", "string"] + }, + "quantity_shipped": { + "type": ["null", "number"] + }, + "event_name": { + "type": ["null", "string"] + }, + "event_date": { + "type": ["null", "string"] + }, + "fixed_shipping_cost": { + "type": ["null", "string"] + }, + "ebay_item_id": { + "type": ["null", "string"] + }, + "ebay_transaction_id": { + "type": ["null", "string"] + }, + "option_set_id": { + "type": ["null", "integer"] + }, + "parent_order_product_id": { + "type": ["null", "integer"] + }, + "is_bundled_product": { + "type": ["null", "boolean"] + }, + "bin_picking_number": { + "type": ["null", "string"] + }, + "external_id": { + "type": ["null", "string"] + }, + "fulfillment_source": { + "type": ["null", "string"] + }, + "brand": { + "type": ["null", "string"] + }, + "gift_certificate_id": { + "type": ["null", "integer"] + }, + "applied_discounts": { + "type": ["null", "array"] + }, + "product_options": { + "type": ["null", "array"] + }, + "configurable_fields": { + "type": ["null", "array"] + } + } + }, + "supported_sync_modes": ["incremental", "full_refresh"], + "source_defined_cursor": true, + "default_cursor_field": ["id"] + }, + "sync_mode": "incremental", + "cursor_field": ["id"], "destination_sync_mode": "append" } ] diff --git a/airbyte-integrations/connectors/source-bigcommerce/integration_tests/sample_state.json b/airbyte-integrations/connectors/source-bigcommerce/integration_tests/sample_state.json index b9495cc6af9f..a198adbdbcbd 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/integration_tests/sample_state.json +++ b/airbyte-integrations/connectors/source-bigcommerce/integration_tests/sample_state.json @@ -32,6 +32,17 @@ } } }, + { + "type": "STREAM", + "stream": { + "stream_state": { + "id": 0 + }, + "stream_descriptor": { + "name": "order_products" + } + } + }, { "type": "STREAM", "stream": { diff --git a/airbyte-integrations/connectors/source-bigcommerce/setup.py b/airbyte-integrations/connectors/source-bigcommerce/setup.py index ba80263df970..bcc691daac14 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/setup.py +++ b/airbyte-integrations/connectors/source-bigcommerce/setup.py @@ -6,7 +6,7 @@ from setuptools import find_packages, setup MAIN_REQUIREMENTS = [ - "airbyte-cdk~=0.1", + "airbyte-cdk~=0.2", ] TEST_REQUIREMENTS = [ 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 new file mode 100644 index 000000000000..f2927892c12c --- /dev/null +++ b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/order_products.json @@ -0,0 +1,177 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "integer"] + }, + "order_id": { + "type": ["null", "integer"] + }, + "product_id": { + "type": ["null", "integer"] + }, + "variant_id": { + "type": ["null", "integer"] + }, + "order_address_id": { + "type": ["null", "integer"] + }, + "name": { + "type": ["null", "string"] + }, + "name_customer": { + "type": ["null", "string"] + }, + "name_merchant": { + "type": ["null", "string"] + }, + "sku": { + "type": ["null", "string"] + }, + "upc": { + "type": ["null", "string"] + }, + "type": { + "type": ["null", "string"] + }, + "base_price": { + "type": ["null", "string"] + }, + "price_ex_tax": { + "type": ["null", "string"] + }, + "price_inc_tax": { + "type": ["null", "string"] + }, + "price_tax": { + "type": ["null", "string"] + }, + "base_total": { + "type": ["null", "string"] + }, + "total_ex_tax": { + "type": ["null", "string"] + }, + "total_inc_tax": { + "type": ["null", "string"] + }, + "total_tax": { + "type": ["null", "string"] + }, + "weight": { + "type": ["null", "string"] + }, + "width": { + "type": ["null", "string"] + }, + "height": { + "type": ["null", "string"] + }, + "depth": { + "type": ["null", "string"] + }, + "quantity": { + "type": ["null", "number"] + }, + "base_cost_price": { + "type": ["null", "string"] + }, + "cost_price_inc_tax": { + "type": ["null", "string"] + }, + "cost_price_ex_tax": { + "type": ["null", "string"] + }, + "cost_price_tax": { + "type": ["null", "string"] + }, + "is_refunded": { + "type": ["null", "boolean"] + }, + "quantity_refunded": { + "type": ["null", "number"] + }, + "refund_amount": { + "type": ["null", "string"] + }, + "return_id": { + "type": ["null", "number"] + }, + "wrapping_id": { + "type": ["null", "string"] + }, + "wrapping_name": { + "type": ["null", "string"] + }, + "base_wrapping_cost": { + "type": ["null", "string"] + }, + "wrapping_cost_ex_tax": { + "type": ["null", "string"] + }, + "wrapping_cost_inc_tax": { + "type": ["null", "string"] + }, + "wrapping_cost_tax": { + "type": ["null", "string"] + }, + "wrapping_message": { + "type": ["null", "string"] + }, + "quantity_shipped": { + "type": ["null", "number"] + }, + "event_name": { + "type": ["null", "string"] + }, + "event_date": { + "type": ["null", "string"] + }, + "fixed_shipping_cost": { + "type": ["null", "string"] + }, + "ebay_item_id": { + "type": ["null", "string"] + }, + "ebay_transaction_id": { + "type": ["null", "string"] + }, + "option_set_id": { + "type": ["null", "integer"] + }, + "parent_order_product_id": { + "type": ["null", "integer"] + }, + "is_bundled_product": { + "type": ["null", "boolean"] + }, + "bin_picking_number": { + "type": ["null", "string"] + }, + "external_id": { + "type": ["null", "string"] + }, + "fulfillment_source": { + "type": ["null", "string"] + }, + "brand": { + "type": ["null", "string"] + }, + "gift_certificate_id": { + "type": ["null", "integer"] + }, + "applied_discounts": { + "type": ["null", "array"] + }, + "applied_discounts": { + "type": ["null", "array"] + }, + "product_options": { + "type": ["null", "array"] + }, + "configurable_fields": { + "type": ["null", "array"] + } + } +} diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/source.py b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/source.py index 9b7837ea354e..0081cb34f402 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/source.py +++ b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/source.py @@ -209,6 +209,35 @@ def request_params( return params +class OrderProducts(OrderSubstream): + api_version = "v2" + data_field = "products" + cursor_field = "id" + + def path(self, stream_slice: Mapping[str, Any] = None, **kwargs) -> str: + order_id = stream_slice["order_id"] + return f"orders/{order_id}/{self.data_field}" + + def get_updated_state(self, current_stream_state: MutableMapping[str, Any], latest_record: Mapping[str, Any]) -> Mapping[str, Any]: + return {self.cursor_field: max(latest_record.get(self.cursor_field, 0), current_stream_state.get(self.cursor_field, 0))} + + def request_params( + self, stream_state: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None, **kwargs + ) -> MutableMapping[str, Any]: + params = {"limit": self.limit} + return params + + def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: + return response.json() if len(response.content) > 0 else [] + + def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: + if len(response.content) > 0 and len(response.json()) == self.limit: + self.page = self.page + 1 + return dict(page=self.page) + else: + return None + + class Channels(IncrementalBigcommerceStream): data_field = "channels" # Override `order_field` bacause Channels API do not acept `asc` value @@ -273,4 +302,5 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: Products(**args), Channels(**args), Store(**args), + OrderProducts(**args), ] 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/AbstractBigQuerySourceTest.java b/airbyte-integrations/connectors/source-bigquery/src/test-integration/java/io/airbyte/integrations/source/bigquery/AbstractBigQuerySourceTest.java index e4901436bc8e..74fa0e338008 100644 --- a/airbyte-integrations/connectors/source-bigquery/src/test-integration/java/io/airbyte/integrations/source/bigquery/AbstractBigQuerySourceTest.java +++ b/airbyte-integrations/connectors/source-bigquery/src/test-integration/java/io/airbyte/integrations/source/bigquery/AbstractBigQuerySourceTest.java @@ -15,7 +15,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.string.Strings; import io.airbyte.db.bigquery.BigQueryDatabase; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; diff --git a/airbyte-integrations/connectors/source-bigquery/src/test-integration/java/io/airbyte/integrations/source/bigquery/BigQuerySourceAcceptanceTest.java b/airbyte-integrations/connectors/source-bigquery/src/test-integration/java/io/airbyte/integrations/source/bigquery/BigQuerySourceAcceptanceTest.java index b5e2df7778cd..d0557e120030 100644 --- a/airbyte-integrations/connectors/source-bigquery/src/test-integration/java/io/airbyte/integrations/source/bigquery/BigQuerySourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-bigquery/src/test-integration/java/io/airbyte/integrations/source/bigquery/BigQuerySourceAcceptanceTest.java @@ -16,7 +16,11 @@ import io.airbyte.db.bigquery.BigQueryDatabase; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; -import io.airbyte.protocol.models.*; +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 java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; 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 71098636a5c4..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.AirbyteMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; 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 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 2492c597e62e..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.AirbyteMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; 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 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-gitlab/unit_tests/unit_test.py b/airbyte-integrations/connectors/source-braze/__init__.py similarity index 57% rename from airbyte-integrations/connectors/source-gitlab/unit_tests/unit_test.py rename to airbyte-integrations/connectors/source-braze/__init__.py index dddaea0060fa..1100c1c58cf5 100644 --- a/airbyte-integrations/connectors/source-gitlab/unit_tests/unit_test.py +++ b/airbyte-integrations/connectors/source-braze/__init__.py @@ -1,7 +1,3 @@ # # Copyright (c) 2022 Airbyte, Inc., all rights reserved. # - - -def test_example_method(): - assert True 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-woocommerce/unit_tests/unit_test.py b/airbyte-integrations/connectors/source-braze/integration_tests/__init__.py similarity index 57% rename from airbyte-integrations/connectors/source-woocommerce/unit_tests/unit_test.py rename to airbyte-integrations/connectors/source-braze/integration_tests/__init__.py index dddaea0060fa..1100c1c58cf5 100644 --- a/airbyte-integrations/connectors/source-woocommerce/unit_tests/unit_test.py +++ b/airbyte-integrations/connectors/source-braze/integration_tests/__init__.py @@ -1,7 +1,3 @@ # # Copyright (c) 2022 Airbyte, Inc., all rights reserved. # - - -def test_example_method(): - assert True 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-strict-encrypt/src/main/java/io/airbyte/integrations/source/clickhouse/ClickHouseStrictEncryptSource.java b/airbyte-integrations/connectors/source-clickhouse-strict-encrypt/src/main/java/io/airbyte/integrations/source/clickhouse/ClickHouseStrictEncryptSource.java index 5da970e9823d..6e3b2c09aebf 100644 --- a/airbyte-integrations/connectors/source-clickhouse-strict-encrypt/src/main/java/io/airbyte/integrations/source/clickhouse/ClickHouseStrictEncryptSource.java +++ b/airbyte-integrations/connectors/source-clickhouse-strict-encrypt/src/main/java/io/airbyte/integrations/source/clickhouse/ClickHouseStrictEncryptSource.java @@ -10,7 +10,7 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.Source; import io.airbyte.integrations.base.spec_modification.SpecModifyingSource; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/source-clickhouse-strict-encrypt/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/ClickHouseStrictEncryptJdbcSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-clickhouse-strict-encrypt/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/ClickHouseStrictEncryptJdbcSourceAcceptanceTest.java index 4e05ba08e576..e08b2c647600 100644 --- a/airbyte-integrations/connectors/source-clickhouse-strict-encrypt/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/ClickHouseStrictEncryptJdbcSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-clickhouse-strict-encrypt/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/ClickHouseStrictEncryptJdbcSourceAcceptanceTest.java @@ -25,7 +25,7 @@ import io.airbyte.integrations.source.jdbc.AbstractJdbcSource; import io.airbyte.integrations.source.jdbc.test.JdbcSourceAcceptanceTest; import io.airbyte.integrations.util.HostPortResolver; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.sql.JDBCType; import java.time.Duration; import java.util.List; 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 297da47d6255..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,14 +20,14 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.time.Duration; import java.util.HashMap; import javax.sql.DataSource; 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 c4879c8d6cda..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,14 +19,14 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.time.Duration; import java.util.HashMap; import javax.sql.DataSource; 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/main/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSourceStrictEncrypt.java b/airbyte-integrations/connectors/source-cockroachdb-strict-encrypt/src/main/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSourceStrictEncrypt.java index 1ca2950e3a2e..e3d0f23994dd 100644 --- a/airbyte-integrations/connectors/source-cockroachdb-strict-encrypt/src/main/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSourceStrictEncrypt.java +++ b/airbyte-integrations/connectors/source-cockroachdb-strict-encrypt/src/main/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSourceStrictEncrypt.java @@ -10,7 +10,7 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.Source; import io.airbyte.integrations.base.spec_modification.SpecModifyingSource; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.slf4j.Logger; import org.slf4j.LoggerFactory; 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 281854ac6cdf..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,14 +16,14 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.util.HashMap; import org.jooq.DSLContext; import org.jooq.SQLDialect; diff --git a/airbyte-integrations/connectors/source-cockroachdb/src/main/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSource.java b/airbyte-integrations/connectors/source-cockroachdb/src/main/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSource.java index 6777215e5611..b22f6a47a3e0 100644 --- a/airbyte-integrations/connectors/source-cockroachdb/src/main/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSource.java +++ b/airbyte-integrations/connectors/source-cockroachdb/src/main/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSource.java @@ -22,9 +22,9 @@ import io.airbyte.integrations.base.ssh.SshWrappedSource; import io.airbyte.integrations.source.jdbc.AbstractJdbcSource; import io.airbyte.integrations.source.jdbc.dto.JdbcPrivilegeDto; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.sql.Connection; import java.sql.JDBCType; import java.sql.PreparedStatement; 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 ff16e173539e..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,14 +15,14 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.util.HashMap; import java.util.Objects; import org.jooq.DSLContext; 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 18504b4e7c06..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,21 +22,21 @@ 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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +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.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; +import io.airbyte.protocol.models.v0.SyncMode; import java.sql.JDBCType; import java.util.*; import java.util.stream.Collectors; 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 4e262bbe3c56..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,16 +18,16 @@ import io.airbyte.db.factory.DSLContextFactory; import io.airbyte.db.factory.DatabaseDriver; import io.airbyte.db.jdbc.JdbcUtils; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.AirbyteStream; +import io.airbyte.protocol.models.v0.CatalogHelpers; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.SyncMode; import java.math.BigDecimal; import java.util.*; import java.util.stream.Collectors; diff --git a/airbyte-integrations/connectors/source-cockroachdb/src/test/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSpecTest.java b/airbyte-integrations/connectors/source-cockroachdb/src/test/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSpecTest.java index 880101660d13..e9a2c0fc2ab2 100644 --- a/airbyte-integrations/connectors/source-cockroachdb/src/test/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSpecTest.java +++ b/airbyte-integrations/connectors/source-cockroachdb/src/test/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSpecTest.java @@ -14,7 +14,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; import io.airbyte.db.jdbc.JdbcUtils; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.validation.json.JsonSchemaValidator; import java.io.File; import java.io.IOException; diff --git a/airbyte-integrations/connectors/source-coingecko-coins/acceptance-test-config.yml b/airbyte-integrations/connectors/source-coingecko-coins/acceptance-test-config.yml index 02f8962dd258..facea3353f00 100644 --- a/airbyte-integrations/connectors/source-coingecko-coins/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-coingecko-coins/acceptance-test-config.yml @@ -1,20 +1,28 @@ # 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-coingecko-coins:dev -tests: +acceptance_tests: spec: - - spec_path: "source_coingecko_coins/spec.yaml" + tests: + - spec_path: "source_coingecko_coins/spec.yaml" 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" + timeout_seconds: 120 + - 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" - empty_streams: [] + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" 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" + # we ignore actively changing array with numbers to pass the `test two sequential reads` + ignored_fields: + market_chart: ["prices", "market_caps", "total_volumes"] diff --git a/airbyte-integrations/connectors/source-coingecko-coins/setup.py b/airbyte-integrations/connectors/source-coingecko-coins/setup.py index 56d30b19c39f..1cadaac382a1 100644 --- a/airbyte-integrations/connectors/source-coingecko-coins/setup.py +++ b/airbyte-integrations/connectors/source-coingecko-coins/setup.py @@ -6,7 +6,7 @@ from setuptools import find_packages, setup MAIN_REQUIREMENTS = [ - "airbyte-cdk~=0.1", + "airbyte-cdk~=0.2", ] TEST_REQUIREMENTS = [ 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/main/java/io/airbyte/integrations/source/db2_strict_encrypt/Db2StrictEncryptSource.java b/airbyte-integrations/connectors/source-db2-strict-encrypt/src/main/java/io/airbyte/integrations/source/db2_strict_encrypt/Db2StrictEncryptSource.java index c9db0e569e5b..7c236aa24d31 100644 --- a/airbyte-integrations/connectors/source-db2-strict-encrypt/src/main/java/io/airbyte/integrations/source/db2_strict_encrypt/Db2StrictEncryptSource.java +++ b/airbyte-integrations/connectors/source-db2-strict-encrypt/src/main/java/io/airbyte/integrations/source/db2_strict_encrypt/Db2StrictEncryptSource.java @@ -10,7 +10,7 @@ import io.airbyte.integrations.base.Source; import io.airbyte.integrations.base.spec_modification.SpecModifyingSource; import io.airbyte.integrations.source.db2.Db2Source; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.slf4j.Logger; import org.slf4j.LoggerFactory; 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 355064d976d6..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,14 +15,14 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.io.File; import java.io.IOException; import java.io.PrintWriter; diff --git a/airbyte-integrations/connectors/source-db2-strict-encrypt/src/test/java/io/airbyte/integrations/source/db2_strict_encrypt/Db2JdbcSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-db2-strict-encrypt/src/test/java/io/airbyte/integrations/source/db2_strict_encrypt/Db2JdbcSourceAcceptanceTest.java index 8ff36d97b9db..ebe3a7948d86 100644 --- a/airbyte-integrations/connectors/source-db2-strict-encrypt/src/test/java/io/airbyte/integrations/source/db2_strict_encrypt/Db2JdbcSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-db2-strict-encrypt/src/test/java/io/airbyte/integrations/source/db2_strict_encrypt/Db2JdbcSourceAcceptanceTest.java @@ -15,7 +15,7 @@ import io.airbyte.integrations.source.db2.Db2Source; import io.airbyte.integrations.source.jdbc.AbstractJdbcSource; import io.airbyte.integrations.source.jdbc.test.JdbcSourceAcceptanceTest; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.io.File; import java.io.IOException; import java.io.PrintWriter; 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 85845bdbc0e9..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,16 +19,16 @@ 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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.ConnectorSpecification; +import io.airbyte.protocol.models.v0.DestinationSyncMode; +import io.airbyte.protocol.models.v0.SyncMode; import java.io.IOException; import java.util.Collections; import java.util.HashMap; 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 22c5b827ee18..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,14 +16,14 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.io.File; import java.io.IOException; import java.io.PrintWriter; diff --git a/airbyte-integrations/connectors/source-db2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/Db2SourceDatatypeTest.java b/airbyte-integrations/connectors/source-db2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/Db2SourceDatatypeTest.java index 5ea0a2dc6b9f..eb47985e15c1 100644 --- a/airbyte-integrations/connectors/source-db2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/Db2SourceDatatypeTest.java +++ b/airbyte-integrations/connectors/source-db2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/Db2SourceDatatypeTest.java @@ -16,6 +16,7 @@ import io.airbyte.integrations.standardtest.source.TestDataHolder; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; import io.airbyte.protocol.models.JsonSchemaType; +import java.math.BigDecimal; import org.jooq.DSLContext; import org.jooq.SQLDialect; import org.testcontainers.containers.Db2Container; @@ -126,7 +127,7 @@ protected void initTests() { .airbyteType(JsonSchemaType.NUMBER) .fullSourceDataType("DECIMAL(31, 0)") .addInsertValues("null", "1", "DECIMAL((-1 + 10E+29), 31, 0)", "DECIMAL((1 - 10E+29), 31, 0)") - .addExpectedValues(null, "1", "1.0E30", "-1.0E30") + .addExpectedValues(null, "1", "%.0f".formatted(Double.valueOf("1.0E30")), "%.0f".formatted(Double.valueOf("-1.0E30"))) .build()); addDataTypeTestData( TestDataHolder.builder() diff --git a/airbyte-integrations/connectors/source-db2/src/test/java/io.airbyte.integrations.source.db2/Db2SpecTest.java b/airbyte-integrations/connectors/source-db2/src/test/java/io.airbyte.integrations.source.db2/Db2SpecTest.java index 84cf9e347489..02ceee94d116 100644 --- a/airbyte-integrations/connectors/source-db2/src/test/java/io.airbyte.integrations.source.db2/Db2SpecTest.java +++ b/airbyte-integrations/connectors/source-db2/src/test/java/io.airbyte.integrations.source.db2/Db2SpecTest.java @@ -12,7 +12,7 @@ import io.airbyte.commons.io.IOs; import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.validation.json.JsonSchemaValidator; 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 8c1485f3905d..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,14 +20,14 @@ 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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.JsonSchemaPrimitiveUtil.JsonSchemaPrimitive; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.util.Collections; import java.util.List; import java.util.Map; diff --git a/airbyte-integrations/connectors/source-dynamodb/src/main/java/io/airbyte/integrations/source/dynamodb/DynamodbUtils.java b/airbyte-integrations/connectors/source-dynamodb/src/main/java/io/airbyte/integrations/source/dynamodb/DynamodbUtils.java index 05741b6f648e..39f5f50c0186 100644 --- a/airbyte-integrations/connectors/source-dynamodb/src/main/java/io/airbyte/integrations/source/dynamodb/DynamodbUtils.java +++ b/airbyte-integrations/connectors/source-dynamodb/src/main/java/io/airbyte/integrations/source/dynamodb/DynamodbUtils.java @@ -9,10 +9,10 @@ import io.airbyte.config.StateWrapper; import io.airbyte.config.helpers.StateMessageHelper; import io.airbyte.integrations.source.relationaldb.models.DbState; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStreamState; +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.AirbyteStreamState; import java.time.Instant; import java.util.List; import java.util.Optional; 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 e02195f91a7b..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,13 +8,13 @@ import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.util.List; import java.util.Map; import java.util.stream.IntStream; diff --git a/airbyte-integrations/connectors/source-dynamodb/src/test-integration/java/io/airbyte/integrations/source/dynamodb/DynamodbSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-dynamodb/src/test-integration/java/io/airbyte/integrations/source/dynamodb/DynamodbSourceAcceptanceTest.java index 3671f38fe2ef..67a033553e08 100644 --- a/airbyte-integrations/connectors/source-dynamodb/src/test-integration/java/io/airbyte/integrations/source/dynamodb/DynamodbSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-dynamodb/src/test-integration/java/io/airbyte/integrations/source/dynamodb/DynamodbSourceAcceptanceTest.java @@ -9,8 +9,8 @@ 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.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.util.HashMap; import java.util.Map; import software.amazon.awssdk.services.dynamodb.DynamoDbClient; diff --git a/airbyte-integrations/connectors/source-dynamodb/src/test-integration/java/io/airbyte/integrations/source/dynamodb/DynamodbSourceTest.java b/airbyte-integrations/connectors/source-dynamodb/src/test-integration/java/io/airbyte/integrations/source/dynamodb/DynamodbSourceTest.java index c0ff366bc6fc..ee9ba0b7eca8 100644 --- a/airbyte-integrations/connectors/source-dynamodb/src/test-integration/java/io/airbyte/integrations/source/dynamodb/DynamodbSourceTest.java +++ b/airbyte-integrations/connectors/source-dynamodb/src/test-integration/java/io/airbyte/integrations/source/dynamodb/DynamodbSourceTest.java @@ -8,9 +8,9 @@ import com.fasterxml.jackson.databind.node.ObjectNode; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.SyncMode; import java.util.Iterator; import java.util.List; import java.util.Map; diff --git a/airbyte-integrations/connectors/source-e2e-test-cloud/src/main/java/io/airbyte/integrations/source/e2e_test/CloudTestingSources.java b/airbyte-integrations/connectors/source-e2e-test-cloud/src/main/java/io/airbyte/integrations/source/e2e_test/CloudTestingSources.java index c1beb62c5266..375669e58b32 100644 --- a/airbyte-integrations/connectors/source-e2e-test-cloud/src/main/java/io/airbyte/integrations/source/e2e_test/CloudTestingSources.java +++ b/airbyte-integrations/connectors/source-e2e-test-cloud/src/main/java/io/airbyte/integrations/source/e2e_test/CloudTestingSources.java @@ -9,7 +9,7 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.Source; import io.airbyte.integrations.base.spec_modification.SpecModifyingSource; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; /** * Since 2.0.0, the cloud version is the same as the OSS version. This connector should be removed. diff --git a/airbyte-integrations/connectors/source-e2e-test-cloud/src/test-integration/java/io/airbyte/integrations/source/e2e_test/CloudTestingSourcesAcceptanceTest.java b/airbyte-integrations/connectors/source-e2e-test-cloud/src/test-integration/java/io/airbyte/integrations/source/e2e_test/CloudTestingSourcesAcceptanceTest.java index 72d72a6a8443..584c3f417e21 100644 --- a/airbyte-integrations/connectors/source-e2e-test-cloud/src/test-integration/java/io/airbyte/integrations/source/e2e_test/CloudTestingSourcesAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-e2e-test-cloud/src/test-integration/java/io/airbyte/integrations/source/e2e_test/CloudTestingSourcesAcceptanceTest.java @@ -15,11 +15,11 @@ import io.airbyte.integrations.source.e2e_test.TestingSources.TestingSourceType; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; +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.ConnectorSpecification; import io.airbyte.validation.json.JsonSchemaValidator; import io.airbyte.validation.json.JsonValidationException; import java.io.IOException; diff --git a/airbyte-integrations/connectors/source-e2e-test-cloud/src/test/java/io/airbyte/integrations/source/e2e_test/CloudTestingSourcesTest.java b/airbyte-integrations/connectors/source-e2e-test-cloud/src/test/java/io/airbyte/integrations/source/e2e_test/CloudTestingSourcesTest.java index 21eb653aa2d9..6079614f6602 100644 --- a/airbyte-integrations/connectors/source-e2e-test-cloud/src/test/java/io/airbyte/integrations/source/e2e_test/CloudTestingSourcesTest.java +++ b/airbyte-integrations/connectors/source-e2e-test-cloud/src/test/java/io/airbyte/integrations/source/e2e_test/CloudTestingSourcesTest.java @@ -8,7 +8,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.junit.jupiter.api.Test; class CloudTestingSourcesTest { diff --git a/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/ContinuousFeedConfig.java b/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/ContinuousFeedConfig.java index c23fbeac61b6..c9bae4ed5b90 100644 --- a/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/ContinuousFeedConfig.java +++ b/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/ContinuousFeedConfig.java @@ -10,9 +10,9 @@ import io.airbyte.commons.resources.MoreResources; import io.airbyte.commons.string.Strings; import io.airbyte.commons.util.MoreIterators; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.SyncMode; import io.airbyte.validation.json.JsonSchemaValidator; import io.airbyte.validation.json.JsonValidationException; import java.io.IOException; diff --git a/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/ContinuousFeedSource.java b/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/ContinuousFeedSource.java index a8fe698a27da..5b3605410fdb 100644 --- a/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/ContinuousFeedSource.java +++ b/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/ContinuousFeedSource.java @@ -12,14 +12,14 @@ import io.airbyte.commons.util.AutoCloseableIterators; import io.airbyte.integrations.BaseConnector; import io.airbyte.integrations.base.Source; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +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.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.time.Instant; import java.util.Iterator; import java.util.LinkedList; 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 b4740d0538b0..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.AirbyteCatalog; -import io.airbyte.protocol.models.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-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/LegacyExceptionAfterNSource.java b/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/LegacyExceptionAfterNSource.java index 00b890cba9b0..d5db143ee8ae 100644 --- a/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/LegacyExceptionAfterNSource.java +++ b/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/LegacyExceptionAfterNSource.java @@ -12,15 +12,15 @@ import io.airbyte.commons.util.AutoCloseableIterators; import io.airbyte.integrations.BaseConnector; import io.airbyte.integrations.base.Source; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.SyncMode; +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.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.SyncMode; import java.time.Instant; import java.util.List; import java.util.concurrent.atomic.AtomicBoolean; diff --git a/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/LegacyInfiniteFeedSource.java b/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/LegacyInfiniteFeedSource.java index 7c9e79d6d11b..d44790fc99da 100644 --- a/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/LegacyInfiniteFeedSource.java +++ b/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/LegacyInfiniteFeedSource.java @@ -14,13 +14,13 @@ import io.airbyte.commons.util.AutoCloseableIterators; import io.airbyte.integrations.BaseConnector; import io.airbyte.integrations.base.Source; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.time.Instant; import java.util.Optional; import java.util.concurrent.atomic.AtomicLong; diff --git a/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/TestingSources.java b/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/TestingSources.java index 047ce4424c85..748103e49b32 100644 --- a/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/TestingSources.java +++ b/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/TestingSources.java @@ -10,10 +10,10 @@ import io.airbyte.integrations.BaseConnector; import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.Source; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.ConfiguredAirbyteCatalog; import java.util.Map; public class TestingSources extends BaseConnector implements Source { diff --git a/airbyte-integrations/connectors/source-e2e-test/src/test-integration/java/io/airbyte/integrations/source/e2e_test/ContinuousFeedSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-e2e-test/src/test-integration/java/io/airbyte/integrations/source/e2e_test/ContinuousFeedSourceAcceptanceTest.java index 006be0c2130e..eaf4962b6882 100644 --- a/airbyte-integrations/connectors/source-e2e-test/src/test-integration/java/io/airbyte/integrations/source/e2e_test/ContinuousFeedSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-e2e-test/src/test-integration/java/io/airbyte/integrations/source/e2e_test/ContinuousFeedSourceAcceptanceTest.java @@ -15,11 +15,11 @@ import io.airbyte.integrations.source.e2e_test.TestingSources.TestingSourceType; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; +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.ConnectorSpecification; import io.airbyte.validation.json.JsonSchemaValidator; import io.airbyte.validation.json.JsonValidationException; import java.io.IOException; diff --git a/airbyte-integrations/connectors/source-e2e-test/src/test/java/io/airbyte/integrations/source/e2e_test/ContinuousFeedConfigTest.java b/airbyte-integrations/connectors/source-e2e-test/src/test/java/io/airbyte/integrations/source/e2e_test/ContinuousFeedConfigTest.java index e3f653739dd5..63ab6a2690ad 100644 --- a/airbyte-integrations/connectors/source-e2e-test/src/test/java/io/airbyte/integrations/source/e2e_test/ContinuousFeedConfigTest.java +++ b/airbyte-integrations/connectors/source-e2e-test/src/test/java/io/airbyte/integrations/source/e2e_test/ContinuousFeedConfigTest.java @@ -13,7 +13,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; import io.airbyte.commons.util.MoreIterators; -import io.airbyte.protocol.models.AirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.validation.json.JsonValidationException; import java.util.Optional; import java.util.stream.Stream; 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-elasticsearch/src/main/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchSource.java b/airbyte-integrations/connectors/source-elasticsearch/src/main/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchSource.java index 6ee53db648e7..153cac505f98 100644 --- a/airbyte-integrations/connectors/source-elasticsearch/src/main/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchSource.java +++ b/airbyte-integrations/connectors/source-elasticsearch/src/main/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchSource.java @@ -13,11 +13,13 @@ import io.airbyte.integrations.BaseConnector; import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.Source; -import io.airbyte.protocol.models.*; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +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.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.SyncMode; import java.io.IOException; import java.util.*; import org.slf4j.Logger; diff --git a/airbyte-integrations/connectors/source-elasticsearch/src/main/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchUtils.java b/airbyte-integrations/connectors/source-elasticsearch/src/main/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchUtils.java index 124ee54ae28a..e9bd900b08f0 100644 --- a/airbyte-integrations/connectors/source-elasticsearch/src/main/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchUtils.java +++ b/airbyte-integrations/connectors/source-elasticsearch/src/main/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchUtils.java @@ -7,9 +7,9 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.commons.util.AutoCloseableIterator; import io.airbyte.commons.util.AutoCloseableIterators; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStream; import java.time.Instant; import java.util.List; diff --git a/airbyte-integrations/connectors/source-elasticsearch/src/test-integration/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-elasticsearch/src/test-integration/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchSourceAcceptanceTest.java index ab59281fef1a..8194f67a0b59 100644 --- a/airbyte-integrations/connectors/source-elasticsearch/src/test-integration/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-elasticsearch/src/test-integration/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchSourceAcceptanceTest.java @@ -11,7 +11,8 @@ 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.*; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.io.IOException; import java.time.Duration; import java.util.Date; diff --git a/airbyte-integrations/connectors/source-elasticsearch/src/test/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchSourcesTest.java b/airbyte-integrations/connectors/source-elasticsearch/src/test/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchSourcesTest.java index 8e76ff27fb68..d360ff80461f 100644 --- a/airbyte-integrations/connectors/source-elasticsearch/src/test/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchSourcesTest.java +++ b/airbyte-integrations/connectors/source-elasticsearch/src/test/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchSourcesTest.java @@ -11,7 +11,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; import io.airbyte.integrations.source.elasticsearch.typemapper.ElasticsearchTypeMapper; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.io.IOException; import java.util.*; import org.junit.jupiter.api.DisplayName; diff --git a/airbyte-integrations/connectors/source-facebook-marketing/Dockerfile b/airbyte-integrations/connectors/source-facebook-marketing/Dockerfile index e1754eac30ce..f965e52b6683 100644 --- a/airbyte-integrations/connectors/source-facebook-marketing/Dockerfile +++ b/airbyte-integrations/connectors/source-facebook-marketing/Dockerfile @@ -13,5 +13,5 @@ ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.2.78 +LABEL io.airbyte.version=0.2.79 LABEL io.airbyte.name=airbyte/source-facebook-marketing diff --git a/airbyte-integrations/connectors/source-facebook-marketing/source_facebook_marketing/source.py b/airbyte-integrations/connectors/source-facebook-marketing/source_facebook_marketing/source.py index 7ff354eae505..d4f1ed4f4a72 100644 --- a/airbyte-integrations/connectors/source-facebook-marketing/source_facebook_marketing/source.py +++ b/airbyte-integrations/connectors/source-facebook-marketing/source_facebook_marketing/source.py @@ -35,6 +35,7 @@ from .utils import validate_end_date, validate_start_date logger = logging.getLogger("airbyte") +UNSUPPORTED_FIELDS = {"unique_conversions", "unique_ctr", "unique_clicks"} class SourceFacebookMarketing(AbstractSource): @@ -183,10 +184,18 @@ def get_custom_insights_streams(self, api: API, config: ConnectorConfig) -> List """return custom insights streams""" streams = [] for insight in config.custom_insights or []: + insight_fields = set(insight.fields) + if insight_fields.intersection(UNSUPPORTED_FIELDS): + # https://github.com/airbytehq/oncall/issues/1137 + mes = ( + f"Please remove Following fields from the Custom {insight.name} fields list due to possible " + f"errors on Facebook side: {insight_fields.intersection(UNSUPPORTED_FIELDS)}" + ) + raise ValueError(mes) stream = AdsInsights( api=api, name=f"Custom{insight.name}", - fields=list(set(insight.fields)), + fields=list(insight_fields), breakdowns=list(set(insight.breakdowns)), action_breakdowns=list(set(insight.action_breakdowns)), action_breakdowns_allow_empty=config.action_breakdowns_allow_empty, diff --git a/airbyte-integrations/connectors/source-facebook-pages/.dockerignore b/airbyte-integrations/connectors/source-facebook-pages/.dockerignore index b0f7c6bd4782..250ecb638220 100644 --- a/airbyte-integrations/connectors/source-facebook-pages/.dockerignore +++ b/airbyte-integrations/connectors/source-facebook-pages/.dockerignore @@ -1,6 +1,5 @@ * !Dockerfile -!Dockerfile.test !main.py !source_facebook_pages !setup.py diff --git a/airbyte-integrations/connectors/source-facebook-pages/Dockerfile b/airbyte-integrations/connectors/source-facebook-pages/Dockerfile index 3d95e1d8b18d..ccc7d6e366d8 100644 --- a/airbyte-integrations/connectors/source-facebook-pages/Dockerfile +++ b/airbyte-integrations/connectors/source-facebook-pages/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_facebook_pages ./source_facebook_pages + +# 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_facebook_pages ./source_facebook_pages ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.6 +LABEL io.airbyte.version=0.2.0 LABEL io.airbyte.name=airbyte/source-facebook-pages diff --git a/airbyte-integrations/connectors/source-facebook-pages/README.md b/airbyte-integrations/connectors/source-facebook-pages/README.md index cfee17cce859..58abf6afc436 100644 --- a/airbyte-integrations/connectors/source-facebook-pages/README.md +++ b/airbyte-integrations/connectors/source-facebook-pages/README.md @@ -1,57 +1,27 @@ # Facebook Pages Source -This is the repository for the Facebook Pages source connector, written in Python. +This is the repository for the Facebook Pages configuration based source connector. For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.io/integrations/sources/facebook-pages). ## 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 -From the Airbyte repository root, run: +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-facebook-pages:build ``` #### Create credentials **If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.io/integrations/sources/facebook-pages) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_facebook_pages/spec.json` file. -Note that the `secrets` directory is gitignored by default, so there is no danger of accidentally checking in sensitive information. +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_facebook_pages/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 facebook-pages 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 @@ -76,31 +46,11 @@ docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-facebook-pages:dev dis docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-facebook-pages: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-facebook-pages/__init__.py b/airbyte-integrations/connectors/source-facebook-pages/__init__.py new file mode 100644 index 000000000000..1100c1c58cf5 --- /dev/null +++ b/airbyte-integrations/connectors/source-facebook-pages/__init__.py @@ -0,0 +1,3 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# diff --git a/airbyte-integrations/connectors/source-facebook-pages/acceptance-test-config.yml b/airbyte-integrations/connectors/source-facebook-pages/acceptance-test-config.yml index 1d837a3089b6..4f40c919f468 100644 --- a/airbyte-integrations/connectors/source-facebook-pages/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-facebook-pages/acceptance-test-config.yml @@ -1,27 +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-facebook-pages:dev -tests: +acceptance_tests: spec: - - spec_path: "source_facebook_pages/spec.json" + tests: + - spec_path: "source_facebook_pages/spec.yaml" 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" + tests: + - config_path: "secrets/config.json" + backward_compatibility_tests_config: + disable_for_version: "0.1.6" basic_read: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - empty_streams: [] + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + empty_streams: + - name: page + bypass_reason: "This stream has access_token inside" + - name: post + bypass_reason: "Data is not permanent" + - name: page_insights + bypass_reason: "Data is not permanent" + expect_records: + path: "integration_tests/expected_records.txt" + extra_fields: no + exact_order: no + extra_records: yes full_refresh: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - ignored_fields: - # Since we generating new Page access token for each connector run this - # field would containt different values. - page: - - "posts/paging/next" - - "published_posts/paging/next" - - "feed/paging/next" + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + ignored_fields: + # Since we generating new Page access token for each connector run this + # field would containt different values. + page: + - "posts/paging/next" + - "published_posts/paging/next" + - "feed/paging/next" \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-facebook-pages/acceptance-test-docker.sh b/airbyte-integrations/connectors/source-facebook-pages/acceptance-test-docker.sh old mode 100644 new mode 100755 index 1425ff74f151..c51577d10690 --- a/airbyte-integrations/connectors/source-facebook-pages/acceptance-test-docker.sh +++ b/airbyte-integrations/connectors/source-facebook-pages/acceptance-test-docker.sh @@ -1,7 +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-facebook-pages/build.gradle b/airbyte-integrations/connectors/source-facebook-pages/build.gradle index fc1ed1b87abd..de4bded7265c 100644 --- a/airbyte-integrations/connectors/source-facebook-pages/build.gradle +++ b/airbyte-integrations/connectors/source-facebook-pages/build.gradle @@ -7,7 +7,3 @@ plugins { airbytePython { moduleDirectory 'source_facebook_pages' } - -dependencies { - implementation files(project(':airbyte-integrations:bases:source-acceptance-test').airbyteDocker.outputs) -} diff --git a/airbyte-integrations/connectors/source-facebook-pages/integration_tests/expected_records.txt b/airbyte-integrations/connectors/source-facebook-pages/integration_tests/expected_records.txt new file mode 100644 index 000000000000..7bc62f81a372 --- /dev/null +++ b/airbyte-integrations/connectors/source-facebook-pages/integration_tests/expected_records.txt @@ -0,0 +1,11043 @@ +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_574643528000100/insights/post_impressions/lifetime"},"emitted_at":1671053257127} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_574643528000100/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257128} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_574643528000100/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257128} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_574643528000100/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257129} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_574643528000100/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257130} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_574643528000100/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257131} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_574643528000100/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257131} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_574643528000100/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257132} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_574643528000100/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257133} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_574643528000100/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257134} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_574643528000100/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257135} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_574643528000100/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257135} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_574643528000100/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257136} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_574643528000100/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257137} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":25}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_574643528000100/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257137} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":25}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_574643528000100/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257138} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_574643528000100/insights/post_engaged_users/lifetime"},"emitted_at":1671053257138} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_574643528000100/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257139} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_574643528000100/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257140} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_574643528000100/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257140} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_574643528000100/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257141} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_574643528000100/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257142} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_574643528000100/insights/post_clicks/lifetime"},"emitted_at":1671053257143} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_574643528000100/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257143} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_574643528000100/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257144} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_574643528000100/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257145} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_574643528000100/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257145} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_570107585120361/insights/post_impressions/lifetime"},"emitted_at":1671053257146} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_570107585120361/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257146} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_570107585120361/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257147} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_570107585120361/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257147} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_570107585120361/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257148} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_570107585120361/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257149} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_570107585120361/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257149} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_570107585120361/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257150} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_570107585120361/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257151} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_570107585120361/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257151} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_570107585120361/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257152} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_570107585120361/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257152} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_570107585120361/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257153} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_570107585120361/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257153} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":14}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_570107585120361/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257154} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":14}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_570107585120361/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257154} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_570107585120361/insights/post_engaged_users/lifetime"},"emitted_at":1671053257155} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_570107585120361/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257155} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_570107585120361/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257156} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_570107585120361/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257156} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_570107585120361/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257157} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_570107585120361/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257157} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_570107585120361/insights/post_clicks/lifetime"},"emitted_at":1671053257158} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_570107585120361/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257159} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_570107585120361/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257159} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_570107585120361/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257160} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_570107585120361/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257160} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_567106972087089/insights/post_impressions/lifetime"},"emitted_at":1671053257160} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_567106972087089/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257161} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_567106972087089/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257161} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_567106972087089/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257162} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_567106972087089/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257162} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_567106972087089/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257163} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_567106972087089/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257163} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_567106972087089/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257164} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_567106972087089/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257164} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_567106972087089/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257165} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_567106972087089/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257165} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_567106972087089/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257165} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_567106972087089/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257166} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_567106972087089/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257166} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":31}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_567106972087089/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257167} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":30}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_567106972087089/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257167} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_567106972087089/insights/post_engaged_users/lifetime"},"emitted_at":1671053257168} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_567106972087089/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257168} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_567106972087089/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257168} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_567106972087089/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257169} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_567106972087089/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257169} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_567106972087089/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257170} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_567106972087089/insights/post_clicks/lifetime"},"emitted_at":1671053257170} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_567106972087089/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257170} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":2,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_567106972087089/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257171} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":2,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_567106972087089/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257171} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_567106972087089/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257172} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_566471078817345/insights/post_impressions/lifetime"},"emitted_at":1671053257172} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_566471078817345/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257172} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_566471078817345/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257173} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_566471078817345/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257173} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_566471078817345/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257174} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_566471078817345/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257174} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_566471078817345/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257174} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_566471078817345/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257175} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_566471078817345/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257175} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_566471078817345/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257175} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_566471078817345/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257176} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_566471078817345/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257176} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_566471078817345/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257176} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_566471078817345/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257177} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":34}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_566471078817345/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257177} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":33}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_566471078817345/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257178} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_566471078817345/insights/post_engaged_users/lifetime"},"emitted_at":1671053257178} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_566471078817345/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257179} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_566471078817345/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257179} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_566471078817345/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257179} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_566471078817345/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257180} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_566471078817345/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257180} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_566471078817345/insights/post_clicks/lifetime"},"emitted_at":1671053257180} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_566471078817345/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257181} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_566471078817345/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257181} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_566471078817345/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257181} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_566471078817345/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257182} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":37}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_561315795999540/insights/post_impressions/lifetime"},"emitted_at":1671053257182} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":35}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_561315795999540/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257182} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_561315795999540/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257183} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_561315795999540/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257183} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_561315795999540/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257183} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_561315795999540/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257184} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_561315795999540/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257184} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_561315795999540/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257184} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":37}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_561315795999540/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257185} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":35}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_561315795999540/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257185} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":37}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_561315795999540/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257185} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":35}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_561315795999540/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257186} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_561315795999540/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257186} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_561315795999540/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257186} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":37}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_561315795999540/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257187} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":35}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_561315795999540/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257187} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_561315795999540/insights/post_engaged_users/lifetime"},"emitted_at":1671053257187} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_561315795999540/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257188} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_561315795999540/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257188} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_561315795999540/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257188} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_561315795999540/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257189} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_561315795999540/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257189} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_561315795999540/insights/post_clicks/lifetime"},"emitted_at":1671053257189} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_561315795999540/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257190} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_561315795999540/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257190} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_561315795999540/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257191} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_561315795999540/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257191} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":83}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_535432135254573/insights/post_impressions/lifetime"},"emitted_at":1671053257191} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":80}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_535432135254573/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257192} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_535432135254573/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257192} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_535432135254573/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257193} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_535432135254573/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257193} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_535432135254573/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257193} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_535432135254573/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257194} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_535432135254573/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257194} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":83}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_535432135254573/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257194} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":80}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_535432135254573/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257195} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":83}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_535432135254573/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257195} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":80}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_535432135254573/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257195} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_535432135254573/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257196} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_535432135254573/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257196} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":83}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_535432135254573/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257196} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":80}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_535432135254573/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257197} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":5}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_535432135254573/insights/post_engaged_users/lifetime"},"emitted_at":1671053257197} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_535432135254573/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257197} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_535432135254573/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257198} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_535432135254573/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257198} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_535432135254573/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257198} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_535432135254573/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257199} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":5}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_535432135254573/insights/post_clicks/lifetime"},"emitted_at":1671053257199} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_535432135254573/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257199} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":4,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_535432135254573/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257200} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":4,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_535432135254573/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257200} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_535432135254573/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257200} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":45}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_531712368959883/insights/post_impressions/lifetime"},"emitted_at":1671053257201} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":41}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_531712368959883/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257201} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_531712368959883/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257201} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_531712368959883/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257202} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_531712368959883/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257202} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_531712368959883/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257202} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_531712368959883/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257203} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_531712368959883/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257203} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":45}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_531712368959883/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257203} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":41}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_531712368959883/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257204} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":45}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_531712368959883/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257204} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":41}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_531712368959883/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257204} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_531712368959883/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257205} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_531712368959883/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257205} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":45}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_531712368959883/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257205} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":41}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_531712368959883/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257206} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_531712368959883/insights/post_engaged_users/lifetime"},"emitted_at":1671053257206} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_531712368959883/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257206} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_531712368959883/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257207} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_531712368959883/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257207} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_531712368959883/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257207} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_531712368959883/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257208} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_531712368959883/insights/post_clicks/lifetime"},"emitted_at":1671053257208} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_531712368959883/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257209} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_531712368959883/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257209} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_531712368959883/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257209} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_531712368959883/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257209} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":41}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_529944805803306/insights/post_impressions/lifetime"},"emitted_at":1671053257210} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":37}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_529944805803306/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257210} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_529944805803306/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257211} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_529944805803306/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257211} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_529944805803306/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257211} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_529944805803306/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257212} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_529944805803306/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257212} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_529944805803306/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257212} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":41}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_529944805803306/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257212} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":37}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_529944805803306/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257213} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":41}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_529944805803306/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257213} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":37}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_529944805803306/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257213} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_529944805803306/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257214} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_529944805803306/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257214} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":41}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_529944805803306/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257214} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":37}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_529944805803306/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257215} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":5}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_529944805803306/insights/post_engaged_users/lifetime"},"emitted_at":1671053257215} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_529944805803306/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257215} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_529944805803306/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257216} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_529944805803306/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257216} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_529944805803306/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257216} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_529944805803306/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257217} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":4}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_529944805803306/insights/post_clicks/lifetime"},"emitted_at":1671053257217} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_529944805803306/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257217} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":2,"photo view":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_529944805803306/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257218} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":2,"photo view":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_529944805803306/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257218} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_529944805803306/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257218} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_525181802946273/insights/post_impressions/lifetime"},"emitted_at":1671053257219} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":50}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_525181802946273/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257219} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_525181802946273/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257219} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_525181802946273/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257220} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_525181802946273/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257220} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_525181802946273/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257220} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_525181802946273/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257221} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_525181802946273/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257221} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_525181802946273/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257221} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":50}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_525181802946273/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257222} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_525181802946273/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257222} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":50}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_525181802946273/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257222} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_525181802946273/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257223} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_525181802946273/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257223} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":53}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_525181802946273/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257224} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":50}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_525181802946273/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257224} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_525181802946273/insights/post_engaged_users/lifetime"},"emitted_at":1671053257224} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_525181802946273/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257225} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_525181802946273/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257225} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_525181802946273/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257225} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_525181802946273/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257226} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_525181802946273/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257226} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_525181802946273/insights/post_clicks/lifetime"},"emitted_at":1671053257226} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_525181802946273/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257227} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_525181802946273/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257227} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_525181802946273/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257227} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_525181802946273/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257228} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":47}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_523230376474749/insights/post_impressions/lifetime"},"emitted_at":1671053257228} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_523230376474749/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257228} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_523230376474749/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257229} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_523230376474749/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257229} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_523230376474749/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257229} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_523230376474749/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257230} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_523230376474749/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257230} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_523230376474749/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257230} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":47}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_523230376474749/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257230} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_523230376474749/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257231} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":47}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_523230376474749/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257231} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_523230376474749/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257232} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_523230376474749/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257232} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_523230376474749/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257233} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":47}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_523230376474749/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257233} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":44}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_523230376474749/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257233} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_523230376474749/insights/post_engaged_users/lifetime"},"emitted_at":1671053257234} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_523230376474749/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257234} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_523230376474749/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257235} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_523230376474749/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257235} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_523230376474749/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257235} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_523230376474749/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257235} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_523230376474749/insights/post_clicks/lifetime"},"emitted_at":1671053257236} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_523230376474749/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257236} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_523230376474749/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257236} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_523230376474749/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257237} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_523230376474749/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257237} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":67}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_510901967707590/insights/post_impressions/lifetime"},"emitted_at":1671053257237} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":65}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_510901967707590/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257238} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_510901967707590/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257238} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_510901967707590/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257239} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_510901967707590/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257239} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_510901967707590/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257239} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_510901967707590/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257240} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_510901967707590/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257240} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":67}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_510901967707590/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257240} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":65}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_510901967707590/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257241} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":67}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_510901967707590/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257241} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":65}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_510901967707590/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257242} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_510901967707590/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257242} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_510901967707590/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257242} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":67}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_510901967707590/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257243} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":65}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_510901967707590/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257243} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_510901967707590/insights/post_engaged_users/lifetime"},"emitted_at":1671053257244} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_510901967707590/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257244} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_510901967707590/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257244} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_510901967707590/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257245} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_510901967707590/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257245} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_510901967707590/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257246} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_510901967707590/insights/post_clicks/lifetime"},"emitted_at":1671053257246} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_510901967707590/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257246} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_510901967707590/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257247} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_510901967707590/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257247} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_510901967707590/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257247} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":70}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_504211088376678/insights/post_impressions/lifetime"},"emitted_at":1671053257248} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":67}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_504211088376678/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257248} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_504211088376678/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257248} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_504211088376678/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257249} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_504211088376678/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257249} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_504211088376678/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257250} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_504211088376678/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257250} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_504211088376678/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257250} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":70}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_504211088376678/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257251} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":67}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_504211088376678/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257251} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":70}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_504211088376678/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257251} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":67}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_504211088376678/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257252} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_504211088376678/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257252} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_504211088376678/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257252} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":70}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_504211088376678/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257253} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":67}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_504211088376678/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257253} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_504211088376678/insights/post_engaged_users/lifetime"},"emitted_at":1671053257253} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_504211088376678/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257254} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_504211088376678/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257254} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_504211088376678/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257254} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_504211088376678/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257255} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_504211088376678/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257255} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_504211088376678/insights/post_clicks/lifetime"},"emitted_at":1671053257256} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_504211088376678/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257256} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_504211088376678/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257256} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_504211088376678/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257257} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_504211088376678/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257257} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":83}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_492885846175869/insights/post_impressions/lifetime"},"emitted_at":1671053257257} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":81}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_492885846175869/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257258} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_492885846175869/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257258} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_492885846175869/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257259} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_492885846175869/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257259} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_492885846175869/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257259} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_492885846175869/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257260} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_492885846175869/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257260} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":83}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_492885846175869/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257261} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":81}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_492885846175869/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257261} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":83}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_492885846175869/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257262} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":81}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_492885846175869/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257262} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_492885846175869/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257263} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_492885846175869/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257263} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":83}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_492885846175869/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257263} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":81}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_492885846175869/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257264} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":7}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_492885846175869/insights/post_engaged_users/lifetime"},"emitted_at":1671053257264} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_492885846175869/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257265} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_492885846175869/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257265} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_492885846175869/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257265} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_492885846175869/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257266} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_492885846175869/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257266} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":4}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_492885846175869/insights/post_clicks/lifetime"},"emitted_at":1671053257266} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_492885846175869/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257267} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":3,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_492885846175869/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257267} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":3,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_492885846175869/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257268} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_492885846175869/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257268} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":86}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_487412203389900/insights/post_impressions/lifetime"},"emitted_at":1671053257268} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":82}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_487412203389900/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257269} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_487412203389900/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257269} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_487412203389900/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257269} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_487412203389900/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257270} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_487412203389900/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257270} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_487412203389900/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257271} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_487412203389900/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257271} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":86}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_487412203389900/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257271} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":82}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_487412203389900/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257272} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":86}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_487412203389900/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257272} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":82}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_487412203389900/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257273} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_487412203389900/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257274} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_487412203389900/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257274} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":86}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_487412203389900/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257275} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":82}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_487412203389900/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257275} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_487412203389900/insights/post_engaged_users/lifetime"},"emitted_at":1671053257275} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_487412203389900/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257276} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_487412203389900/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257276} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_487412203389900/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257277} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_487412203389900/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257277} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_487412203389900/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257277} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_487412203389900/insights/post_clicks/lifetime"},"emitted_at":1671053257278} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_487412203389900/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257278} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_487412203389900/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257278} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_487412203389900/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257279} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_487412203389900/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257279} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":80}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_482101393920981/insights/post_impressions/lifetime"},"emitted_at":1671053257280} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":74}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_482101393920981/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257280} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_482101393920981/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257280} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_482101393920981/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257281} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_482101393920981/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257281} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_482101393920981/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257281} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_482101393920981/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257282} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_482101393920981/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257282} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":80}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_482101393920981/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257283} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":74}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_482101393920981/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257283} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":80}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_482101393920981/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257284} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":74}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_482101393920981/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257284} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_482101393920981/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257285} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_482101393920981/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257285} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":80}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_482101393920981/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257286} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":74}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_482101393920981/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257286} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_482101393920981/insights/post_engaged_users/lifetime"},"emitted_at":1671053257287} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_482101393920981/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257287} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_482101393920981/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257287} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_482101393920981/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257288} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_482101393920981/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257288} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_482101393920981/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257288} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":4}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_482101393920981/insights/post_clicks/lifetime"},"emitted_at":1671053257289} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_482101393920981/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257289} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":3}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_482101393920981/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257289} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":3}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_482101393920981/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257290} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_482101393920981/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257290} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":93}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_477559284375192/insights/post_impressions/lifetime"},"emitted_at":1671053257291} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":85}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_477559284375192/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257291} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_477559284375192/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257291} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_477559284375192/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257292} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_477559284375192/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257292} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_477559284375192/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257292} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_477559284375192/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257293} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_477559284375192/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257293} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":93}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_477559284375192/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257293} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":85}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_477559284375192/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257294} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":93}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_477559284375192/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257294} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":85}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_477559284375192/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257295} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_477559284375192/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257295} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_477559284375192/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257295} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":93}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_477559284375192/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257296} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":85}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_477559284375192/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257296} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_477559284375192/insights/post_engaged_users/lifetime"},"emitted_at":1671053257296} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_477559284375192/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257297} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_477559284375192/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257297} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_477559284375192/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257298} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_477559284375192/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257298} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_477559284375192/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257299} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":4}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_477559284375192/insights/post_clicks/lifetime"},"emitted_at":1671053257299} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_477559284375192/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257300} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":2,"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_477559284375192/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257300} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":2,"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_477559284375192/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257301} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_477559284375192/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257301} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":93}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_472358278228626/insights/post_impressions/lifetime"},"emitted_at":1671053257301} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":90}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_472358278228626/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257302} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_472358278228626/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257302} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_472358278228626/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257303} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_472358278228626/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257303} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_472358278228626/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257303} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_472358278228626/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257304} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_472358278228626/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257304} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":93}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_472358278228626/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257304} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":90}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_472358278228626/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257305} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":93}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_472358278228626/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257305} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":90}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_472358278228626/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257305} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_472358278228626/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257306} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_472358278228626/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257306} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":93}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_472358278228626/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257306} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":90}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_472358278228626/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257307} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_472358278228626/insights/post_engaged_users/lifetime"},"emitted_at":1671053257307} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_472358278228626/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257307} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_472358278228626/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257308} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_472358278228626/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257308} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_472358278228626/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257308} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_472358278228626/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257309} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_472358278228626/insights/post_clicks/lifetime"},"emitted_at":1671053257309} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_472358278228626/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257310} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_472358278228626/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257310} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_472358278228626/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257311} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_472358278228626/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257311} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":89}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_467825545348566/insights/post_impressions/lifetime"},"emitted_at":1671053257311} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":87}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_467825545348566/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257312} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_467825545348566/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257312} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_467825545348566/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257312} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_467825545348566/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257313} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_467825545348566/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257313} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_467825545348566/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257314} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_467825545348566/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257314} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":89}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_467825545348566/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257314} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":87}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_467825545348566/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257315} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":89}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_467825545348566/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257315} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":87}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_467825545348566/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257316} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_467825545348566/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257316} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_467825545348566/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257316} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":89}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_467825545348566/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257317} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":87}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_467825545348566/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257317} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":5}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_467825545348566/insights/post_engaged_users/lifetime"},"emitted_at":1671053257317} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_467825545348566/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257318} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_467825545348566/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257318} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_467825545348566/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257318} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_467825545348566/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257319} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_467825545348566/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257319} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_467825545348566/insights/post_clicks/lifetime"},"emitted_at":1671053257320} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_467825545348566/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257320} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_467825545348566/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257320} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_467825545348566/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257321} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_467825545348566/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257321} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":59}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_467085065422614/insights/post_impressions/lifetime"},"emitted_at":1671053257321} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":59}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_467085065422614/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257322} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_467085065422614/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257322} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_467085065422614/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257322} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_467085065422614/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257323} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_467085065422614/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257323} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_467085065422614/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257324} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_467085065422614/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257324} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":59}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_467085065422614/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257325} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":59}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_467085065422614/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257325} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":59}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_467085065422614/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257325} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":59}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_467085065422614/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257326} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_467085065422614/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257326} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_467085065422614/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257326} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":59}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_467085065422614/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257327} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":59}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_467085065422614/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257327} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_467085065422614/insights/post_engaged_users/lifetime"},"emitted_at":1671053257327} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_467085065422614/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257328} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_467085065422614/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257328} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_467085065422614/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257328} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_467085065422614/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257329} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_467085065422614/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257329} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_467085065422614/insights/post_clicks/lifetime"},"emitted_at":1671053257329} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_467085065422614/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257330} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_467085065422614/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257330} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_467085065422614/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257330} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_467085065422614/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257331} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":55}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_466339862163801/insights/post_impressions/lifetime"},"emitted_at":1671053257331} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":55}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_466339862163801/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257331} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_466339862163801/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257332} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_466339862163801/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257332} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_466339862163801/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257332} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_466339862163801/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257333} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_466339862163801/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257333} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_466339862163801/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257334} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":55}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_466339862163801/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257334} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":55}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_466339862163801/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257334} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":55}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_466339862163801/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257335} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":55}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_466339862163801/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257335} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_466339862163801/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257335} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_466339862163801/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257336} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":55}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_466339862163801/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257336} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":55}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_466339862163801/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257336} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_466339862163801/insights/post_engaged_users/lifetime"},"emitted_at":1671053257337} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_466339862163801/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257337} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_466339862163801/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257337} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_466339862163801/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257338} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_466339862163801/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257338} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_466339862163801/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257339} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_466339862163801/insights/post_clicks/lifetime"},"emitted_at":1671053257339} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_466339862163801/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257339} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_466339862163801/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257340} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_466339862163801/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257340} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_466339862163801/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257341} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":50}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_465744005556720/insights/post_impressions/lifetime"},"emitted_at":1671053257341} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":49}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_465744005556720/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257342} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_465744005556720/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257342} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_465744005556720/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257342} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_465744005556720/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257343} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_465744005556720/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257343} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_465744005556720/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257343} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_465744005556720/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257344} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":50}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_465744005556720/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257344} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":49}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_465744005556720/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257344} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":50}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_465744005556720/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257345} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":49}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_465744005556720/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257345} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_465744005556720/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257346} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_465744005556720/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257346} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":50}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_465744005556720/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257346} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":49}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_465744005556720/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257347} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_465744005556720/insights/post_engaged_users/lifetime"},"emitted_at":1671053257347} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_465744005556720/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257348} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_465744005556720/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257348} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_465744005556720/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257348} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_465744005556720/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257349} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_465744005556720/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257349} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_465744005556720/insights/post_clicks/lifetime"},"emitted_at":1671053257349} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_465744005556720/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257350} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_465744005556720/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257350} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_465744005556720/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257350} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_465744005556720/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257351} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_465642665566854/insights/post_impressions/lifetime"},"emitted_at":1671053257351} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_465642665566854/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257352} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_465642665566854/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257352} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_465642665566854/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257352} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_465642665566854/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257353} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_465642665566854/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257353} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_465642665566854/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257353} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_465642665566854/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257354} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_465642665566854/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257354} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_465642665566854/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257354} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_465642665566854/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257355} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_465642665566854/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257355} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_465642665566854/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257355} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_465642665566854/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257356} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":43}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_465642665566854/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257356} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":43}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_465642665566854/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257356} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_465642665566854/insights/post_engaged_users/lifetime"},"emitted_at":1671053257357} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_465642665566854/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257357} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_465642665566854/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257357} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_465642665566854/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257358} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_465642665566854/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257358} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_465642665566854/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257359} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_465642665566854/insights/post_clicks/lifetime"},"emitted_at":1671053257359} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_465642665566854/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257359} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_465642665566854/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257360} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_465642665566854/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257360} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_465642665566854/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257360} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":57}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_462765009187953/insights/post_impressions/lifetime"},"emitted_at":1671053257361} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":55}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_462765009187953/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257361} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_462765009187953/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257361} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_462765009187953/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257362} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_462765009187953/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257362} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_462765009187953/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257362} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_462765009187953/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257363} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_462765009187953/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257363} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":57}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_462765009187953/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257364} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":55}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_462765009187953/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257364} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":57}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_462765009187953/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257365} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":55}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_462765009187953/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257365} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_462765009187953/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257365} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_462765009187953/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257366} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":57}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_462765009187953/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257366} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":55}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_462765009187953/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257366} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_462765009187953/insights/post_engaged_users/lifetime"},"emitted_at":1671053257367} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_462765009187953/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257367} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_462765009187953/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257367} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_462765009187953/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257368} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_462765009187953/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257368} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_462765009187953/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257368} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_462765009187953/insights/post_clicks/lifetime"},"emitted_at":1671053257369} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_462765009187953/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257369} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_462765009187953/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257369} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_462765009187953/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257370} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_462765009187953/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257370} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":47}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_462039715927149/insights/post_impressions/lifetime"},"emitted_at":1671053257370} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":46}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_462039715927149/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257371} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_462039715927149/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257371} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_462039715927149/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257372} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_462039715927149/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257372} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_462039715927149/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257372} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_462039715927149/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257373} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_462039715927149/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257373} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":47}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_462039715927149/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257373} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":46}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_462039715927149/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257374} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":47}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_462039715927149/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257374} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":46}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_462039715927149/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257375} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_462039715927149/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257375} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_462039715927149/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257375} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":47}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_462039715927149/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257376} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":46}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_462039715927149/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257376} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_462039715927149/insights/post_engaged_users/lifetime"},"emitted_at":1671053257377} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_462039715927149/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257377} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_462039715927149/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257377} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_462039715927149/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257378} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_462039715927149/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257378} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_462039715927149/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257378} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_462039715927149/insights/post_clicks/lifetime"},"emitted_at":1671053257379} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_462039715927149/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257379} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_462039715927149/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257379} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_462039715927149/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257380} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_462039715927149/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257380} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_461307002667087/insights/post_impressions/lifetime"},"emitted_at":1671053257380} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_461307002667087/insights/post_impressions_unique/lifetime"},"emitted_at":1671053257381} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_461307002667087/insights/post_impressions_paid/lifetime"},"emitted_at":1671053257382} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_461307002667087/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053257382} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_461307002667087/insights/post_impressions_fan/lifetime"},"emitted_at":1671053257382} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_461307002667087/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053257383} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_461307002667087/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053257383} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_461307002667087/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053257384} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_461307002667087/insights/post_impressions_organic/lifetime"},"emitted_at":1671053257384} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_461307002667087/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053257384} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_461307002667087/insights/post_impressions_viral/lifetime"},"emitted_at":1671053257385} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_461307002667087/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053257385} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_461307002667087/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053257386} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_461307002667087/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053257386} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":39}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_461307002667087/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053257387} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":38}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_461307002667087/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053257387} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_461307002667087/insights/post_engaged_users/lifetime"},"emitted_at":1671053257387} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_461307002667087/insights/post_negative_feedback/lifetime"},"emitted_at":1671053257388} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_461307002667087/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053257388} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_461307002667087/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053257388} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_461307002667087/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053257389} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_461307002667087/insights/post_engaged_fan/lifetime"},"emitted_at":1671053257389} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_461307002667087/insights/post_clicks/lifetime"},"emitted_at":1671053257390} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_461307002667087/insights/post_clicks_unique/lifetime"},"emitted_at":1671053257390} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_461307002667087/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053257390} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_461307002667087/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053257391} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_461307002667087/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053257391} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":41}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_460605729403881/insights/post_impressions/lifetime"},"emitted_at":1671053258933} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_460605729403881/insights/post_impressions_unique/lifetime"},"emitted_at":1671053258934} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_460605729403881/insights/post_impressions_paid/lifetime"},"emitted_at":1671053258934} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_460605729403881/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053258935} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_460605729403881/insights/post_impressions_fan/lifetime"},"emitted_at":1671053258936} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_460605729403881/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053258937} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_460605729403881/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053258937} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_460605729403881/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053258938} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":41}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_460605729403881/insights/post_impressions_organic/lifetime"},"emitted_at":1671053258938} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_460605729403881/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053258939} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":41}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_460605729403881/insights/post_impressions_viral/lifetime"},"emitted_at":1671053258940} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_460605729403881/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053258940} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_460605729403881/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053258941} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_460605729403881/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053258942} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":41}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_460605729403881/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053258942} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":39}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_460605729403881/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053258943} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_460605729403881/insights/post_engaged_users/lifetime"},"emitted_at":1671053258943} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_460605729403881/insights/post_negative_feedback/lifetime"},"emitted_at":1671053258944} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_460605729403881/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053258944} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_460605729403881/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053258945} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_460605729403881/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053258945} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_460605729403881/insights/post_engaged_fan/lifetime"},"emitted_at":1671053258946} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_460605729403881/insights/post_clicks/lifetime"},"emitted_at":1671053258946} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_460605729403881/insights/post_clicks_unique/lifetime"},"emitted_at":1671053258947} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_460605729403881/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053258947} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_460605729403881/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053258948} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_460605729403881/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053258948} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_459820349482419/insights/post_impressions/lifetime"},"emitted_at":1671053258949} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_459820349482419/insights/post_impressions_unique/lifetime"},"emitted_at":1671053258949} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_459820349482419/insights/post_impressions_paid/lifetime"},"emitted_at":1671053258950} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_459820349482419/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053258950} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_459820349482419/insights/post_impressions_fan/lifetime"},"emitted_at":1671053258950} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_459820349482419/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053258951} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_459820349482419/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053258951} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_459820349482419/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053258952} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_459820349482419/insights/post_impressions_organic/lifetime"},"emitted_at":1671053258952} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_459820349482419/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053258953} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_459820349482419/insights/post_impressions_viral/lifetime"},"emitted_at":1671053258953} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_459820349482419/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053258954} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_459820349482419/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053258954} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_459820349482419/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053258954} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":44}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_459820349482419/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053258955} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":42}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_459820349482419/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053258955} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_459820349482419/insights/post_engaged_users/lifetime"},"emitted_at":1671053258956} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_459820349482419/insights/post_negative_feedback/lifetime"},"emitted_at":1671053258956} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_459820349482419/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053258957} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_459820349482419/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053258957} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_459820349482419/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053258958} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_459820349482419/insights/post_engaged_fan/lifetime"},"emitted_at":1671053258958} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_459820349482419/insights/post_clicks/lifetime"},"emitted_at":1671053258959} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_459820349482419/insights/post_clicks_unique/lifetime"},"emitted_at":1671053258959} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_459820349482419/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053258960} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_459820349482419/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053258960} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_459820349482419/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053258960} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":46}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_457681336362987/insights/post_impressions/lifetime"},"emitted_at":1671053258961} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_457681336362987/insights/post_impressions_unique/lifetime"},"emitted_at":1671053258961} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_457681336362987/insights/post_impressions_paid/lifetime"},"emitted_at":1671053258962} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_457681336362987/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053258962} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_457681336362987/insights/post_impressions_fan/lifetime"},"emitted_at":1671053258962} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_457681336362987/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053258963} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_457681336362987/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053258963} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_457681336362987/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053258964} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":46}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_457681336362987/insights/post_impressions_organic/lifetime"},"emitted_at":1671053258964} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_457681336362987/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053258964} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":46}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_457681336362987/insights/post_impressions_viral/lifetime"},"emitted_at":1671053258965} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_457681336362987/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053258965} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_457681336362987/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053258966} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_457681336362987/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053258966} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":46}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_457681336362987/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053258966} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":44}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_457681336362987/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053258967} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_457681336362987/insights/post_engaged_users/lifetime"},"emitted_at":1671053258967} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_457681336362987/insights/post_negative_feedback/lifetime"},"emitted_at":1671053258968} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_457681336362987/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053258968} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_457681336362987/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053258968} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_457681336362987/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053258969} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_457681336362987/insights/post_engaged_fan/lifetime"},"emitted_at":1671053258969} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_457681336362987/insights/post_clicks/lifetime"},"emitted_at":1671053258969} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_457681336362987/insights/post_clicks_unique/lifetime"},"emitted_at":1671053258970} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_457681336362987/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053258970} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_457681336362987/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053258971} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_457681336362987/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053258971} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":46}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_456891083108679/insights/post_impressions/lifetime"},"emitted_at":1671053258971} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_456891083108679/insights/post_impressions_unique/lifetime"},"emitted_at":1671053258972} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_456891083108679/insights/post_impressions_paid/lifetime"},"emitted_at":1671053258972} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_456891083108679/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053258972} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_456891083108679/insights/post_impressions_fan/lifetime"},"emitted_at":1671053258973} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_456891083108679/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053258973} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_456891083108679/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053258974} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_456891083108679/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053258974} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":46}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_456891083108679/insights/post_impressions_organic/lifetime"},"emitted_at":1671053258974} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_456891083108679/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053258975} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":46}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_456891083108679/insights/post_impressions_viral/lifetime"},"emitted_at":1671053258975} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_456891083108679/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053258975} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_456891083108679/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053258976} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_456891083108679/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053258976} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":46}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_456891083108679/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053258976} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":44}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_456891083108679/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053258977} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_456891083108679/insights/post_engaged_users/lifetime"},"emitted_at":1671053258977} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_456891083108679/insights/post_negative_feedback/lifetime"},"emitted_at":1671053258977} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_456891083108679/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053258978} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_456891083108679/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053258978} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_456891083108679/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053258978} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_456891083108679/insights/post_engaged_fan/lifetime"},"emitted_at":1671053258979} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_456891083108679/insights/post_clicks/lifetime"},"emitted_at":1671053258979} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_456891083108679/insights/post_clicks_unique/lifetime"},"emitted_at":1671053258979} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_456891083108679/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053258980} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_456891083108679/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053258980} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_456891083108679/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053258980} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_456125576518563/insights/post_impressions/lifetime"},"emitted_at":1671053258981} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_456125576518563/insights/post_impressions_unique/lifetime"},"emitted_at":1671053258981} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_456125576518563/insights/post_impressions_paid/lifetime"},"emitted_at":1671053258981} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_456125576518563/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053258982} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_456125576518563/insights/post_impressions_fan/lifetime"},"emitted_at":1671053258982} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_456125576518563/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053258983} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_456125576518563/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053258983} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_456125576518563/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053258983} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_456125576518563/insights/post_impressions_organic/lifetime"},"emitted_at":1671053258984} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_456125576518563/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053258984} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_456125576518563/insights/post_impressions_viral/lifetime"},"emitted_at":1671053258985} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_456125576518563/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053258985} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_456125576518563/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053258985} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_456125576518563/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053258986} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":32}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_456125576518563/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053258986} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":31}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_456125576518563/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053258986} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_456125576518563/insights/post_engaged_users/lifetime"},"emitted_at":1671053258987} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_456125576518563/insights/post_negative_feedback/lifetime"},"emitted_at":1671053258987} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_456125576518563/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053258987} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_456125576518563/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053258988} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_456125576518563/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053258988} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_456125576518563/insights/post_engaged_fan/lifetime"},"emitted_at":1671053258988} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_456125576518563/insights/post_clicks/lifetime"},"emitted_at":1671053258989} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_456125576518563/insights/post_clicks_unique/lifetime"},"emitted_at":1671053258989} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_456125576518563/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053258989} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_456125576518563/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053258990} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_456125576518563/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053258990} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":35}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_455334863264301/insights/post_impressions/lifetime"},"emitted_at":1671053258990} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_455334863264301/insights/post_impressions_unique/lifetime"},"emitted_at":1671053258991} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_455334863264301/insights/post_impressions_paid/lifetime"},"emitted_at":1671053258991} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_455334863264301/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053258991} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_455334863264301/insights/post_impressions_fan/lifetime"},"emitted_at":1671053258992} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_455334863264301/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053258992} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_455334863264301/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053258992} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_455334863264301/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053258993} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":35}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_455334863264301/insights/post_impressions_organic/lifetime"},"emitted_at":1671053258993} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_455334863264301/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053258994} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":35}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_455334863264301/insights/post_impressions_viral/lifetime"},"emitted_at":1671053258994} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_455334863264301/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053258995} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_455334863264301/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053258995} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_455334863264301/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053258995} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":35}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_455334863264301/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053258996} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":32}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_455334863264301/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053258996} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_455334863264301/insights/post_engaged_users/lifetime"},"emitted_at":1671053258997} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_455334863264301/insights/post_negative_feedback/lifetime"},"emitted_at":1671053258997} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_455334863264301/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053258997} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_455334863264301/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053258998} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_455334863264301/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053258998} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_455334863264301/insights/post_engaged_fan/lifetime"},"emitted_at":1671053258998} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_455334863264301/insights/post_clicks/lifetime"},"emitted_at":1671053258999} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_455334863264301/insights/post_clicks_unique/lifetime"},"emitted_at":1671053258999} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_455334863264301/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053258999} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_455334863264301/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259000} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_455334863264301/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259000} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_452316610232793/insights/post_impressions/lifetime"},"emitted_at":1671053259000} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":36}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_452316610232793/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259001} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_452316610232793/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259001} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_452316610232793/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259001} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_452316610232793/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259002} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_452316610232793/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259002} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_452316610232793/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259002} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_452316610232793/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259003} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_452316610232793/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259003} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":36}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_452316610232793/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259004} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_452316610232793/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259004} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":36}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_452316610232793/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259004} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_452316610232793/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259005} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_452316610232793/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259005} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":38}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_452316610232793/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259006} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":36}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_452316610232793/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259006} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_452316610232793/insights/post_engaged_users/lifetime"},"emitted_at":1671053259006} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_452316610232793/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259007} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_452316610232793/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259007} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_452316610232793/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259007} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_452316610232793/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259008} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_452316610232793/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259008} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_452316610232793/insights/post_clicks/lifetime"},"emitted_at":1671053259008} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_452316610232793/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259009} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_452316610232793/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259009} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_452316610232793/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259010} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_452316610232793/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259010} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_451510603646727/insights/post_impressions/lifetime"},"emitted_at":1671053259010} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_451510603646727/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259011} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_451510603646727/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259011} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_451510603646727/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259011} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_451510603646727/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259012} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_451510603646727/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259012} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_451510603646727/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259012} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_451510603646727/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259013} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_451510603646727/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259013} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_451510603646727/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259013} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_451510603646727/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259014} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_451510603646727/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259014} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_451510603646727/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259014} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_451510603646727/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259015} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":34}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_451510603646727/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259015} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":32}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_451510603646727/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259016} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_451510603646727/insights/post_engaged_users/lifetime"},"emitted_at":1671053259016} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_451510603646727/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259016} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_451510603646727/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259017} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_451510603646727/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259017} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_451510603646727/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259017} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_451510603646727/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259018} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_451510603646727/insights/post_clicks/lifetime"},"emitted_at":1671053259018} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_451510603646727/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259018} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_451510603646727/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259019} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_451510603646727/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259019} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_451510603646727/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259019} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_450747613723026/insights/post_impressions/lifetime"},"emitted_at":1671053259020} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_450747613723026/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259020} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_450747613723026/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259020} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_450747613723026/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259021} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_450747613723026/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259021} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_450747613723026/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259022} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_450747613723026/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259022} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_450747613723026/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259022} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_450747613723026/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259023} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_450747613723026/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259023} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_450747613723026/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259023} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_450747613723026/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259024} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_450747613723026/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259024} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_450747613723026/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259024} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":30}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_450747613723026/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259025} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":29}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_450747613723026/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259025} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_450747613723026/insights/post_engaged_users/lifetime"},"emitted_at":1671053259025} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_450747613723026/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259026} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_450747613723026/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259026} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_450747613723026/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259026} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_450747613723026/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259027} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_450747613723026/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259027} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_450747613723026/insights/post_clicks/lifetime"},"emitted_at":1671053259027} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_450747613723026/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259028} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_450747613723026/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259028} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_450747613723026/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259028} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_450747613723026/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259029} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_449900853807702/insights/post_impressions/lifetime"},"emitted_at":1671053259029} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_449900853807702/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259029} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_449900853807702/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259030} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_449900853807702/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259030} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_449900853807702/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259030} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_449900853807702/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259031} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_449900853807702/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259031} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_449900853807702/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259031} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_449900853807702/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259032} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_449900853807702/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259032} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_449900853807702/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259032} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_449900853807702/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259033} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_449900853807702/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259033} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_449900853807702/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259033} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":31}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_449900853807702/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259034} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":30}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_449900853807702/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259034} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_449900853807702/insights/post_engaged_users/lifetime"},"emitted_at":1671053259034} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_449900853807702/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259035} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_449900853807702/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259035} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_449900853807702/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259035} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_449900853807702/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259036} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_449900853807702/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259036} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_449900853807702/insights/post_clicks/lifetime"},"emitted_at":1671053259036} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_449900853807702/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259037} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_449900853807702/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259037} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_449900853807702/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259038} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_449900853807702/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259038} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":41}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_446745954123192/insights/post_impressions/lifetime"},"emitted_at":1671053259038} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":40}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_446745954123192/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259039} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_446745954123192/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259039} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_446745954123192/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259039} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_446745954123192/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259040} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_446745954123192/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259040} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_446745954123192/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259040} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_446745954123192/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259041} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":41}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_446745954123192/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259041} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":40}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_446745954123192/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259041} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":41}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_446745954123192/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259042} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":40}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_446745954123192/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259042} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_446745954123192/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259042} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_446745954123192/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259043} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":41}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_446745954123192/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259043} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":40}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_446745954123192/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259043} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_446745954123192/insights/post_engaged_users/lifetime"},"emitted_at":1671053259044} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_446745954123192/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259044} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_446745954123192/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259044} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_446745954123192/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259045} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_446745954123192/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259045} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_446745954123192/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259045} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_446745954123192/insights/post_clicks/lifetime"},"emitted_at":1671053259046} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_446745954123192/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259046} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_446745954123192/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259046} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_446745954123192/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259047} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_446745954123192/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259047} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_445980184199769/insights/post_impressions/lifetime"},"emitted_at":1671053259047} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":40}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_445980184199769/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259048} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_445980184199769/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259048} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_445980184199769/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259048} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_445980184199769/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259049} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_445980184199769/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259049} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_445980184199769/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259050} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_445980184199769/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259050} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_445980184199769/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259050} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":40}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_445980184199769/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259051} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_445980184199769/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259051} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":40}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_445980184199769/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259051} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_445980184199769/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259052} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_445980184199769/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259052} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":42}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_445980184199769/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259052} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":40}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_445980184199769/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259053} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_445980184199769/insights/post_engaged_users/lifetime"},"emitted_at":1671053259053} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_445980184199769/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259053} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_445980184199769/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259054} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_445980184199769/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259054} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_445980184199769/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259054} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_445980184199769/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259055} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_445980184199769/insights/post_clicks/lifetime"},"emitted_at":1671053259055} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_445980184199769/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259055} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_445980184199769/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259056} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_445980184199769/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259056} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_445980184199769/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259056} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_445211367609984/insights/post_impressions/lifetime"},"emitted_at":1671053259057} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":37}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_445211367609984/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259057} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_445211367609984/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259057} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_445211367609984/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259058} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_445211367609984/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259058} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_445211367609984/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259058} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_445211367609984/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259059} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_445211367609984/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259059} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_445211367609984/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259059} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":37}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_445211367609984/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259060} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_445211367609984/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259060} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":37}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_445211367609984/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259061} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_445211367609984/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259061} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_445211367609984/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259061} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":39}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_445211367609984/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259062} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":37}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_445211367609984/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259062} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_445211367609984/insights/post_engaged_users/lifetime"},"emitted_at":1671053259062} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_445211367609984/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259063} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_445211367609984/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259063} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_445211367609984/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259063} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_445211367609984/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259064} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_445211367609984/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259064} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_445211367609984/insights/post_clicks/lifetime"},"emitted_at":1671053259065} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_445211367609984/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259065} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_445211367609984/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259065} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_445211367609984/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259066} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_445211367609984/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259066} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_444536097677511/insights/post_impressions/lifetime"},"emitted_at":1671053259066} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":36}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_444536097677511/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259067} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_444536097677511/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259067} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_444536097677511/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259067} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_444536097677511/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259068} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_444536097677511/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259068} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_444536097677511/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259068} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_444536097677511/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259069} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_444536097677511/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259069} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":36}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_444536097677511/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259069} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_444536097677511/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259070} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":36}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_444536097677511/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259070} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_444536097677511/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259070} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_444536097677511/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259071} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":39}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_444536097677511/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259071} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":36}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_444536097677511/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259071} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_444536097677511/insights/post_engaged_users/lifetime"},"emitted_at":1671053259072} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_444536097677511/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259072} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_444536097677511/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259072} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_444536097677511/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259073} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_444536097677511/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259073} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_444536097677511/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259073} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_444536097677511/insights/post_clicks/lifetime"},"emitted_at":1671053259074} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_444536097677511/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259074} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_444536097677511/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259075} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_444536097677511/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259075} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_444536097677511/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259075} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_441685177962603/insights/post_impressions/lifetime"},"emitted_at":1671053259076} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_441685177962603/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259076} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_441685177962603/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259076} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_441685177962603/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259077} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_441685177962603/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259077} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_441685177962603/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259078} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_441685177962603/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259078} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_441685177962603/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259078} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_441685177962603/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259079} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_441685177962603/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259079} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_441685177962603/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259079} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_441685177962603/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259080} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_441685177962603/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259080} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_441685177962603/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259080} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":42}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_441685177962603/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259081} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":39}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_441685177962603/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259081} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_441685177962603/insights/post_engaged_users/lifetime"},"emitted_at":1671053259081} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_441685177962603/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259082} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_441685177962603/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259082} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_441685177962603/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259083} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_441685177962603/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259083} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_441685177962603/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259083} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_441685177962603/insights/post_clicks/lifetime"},"emitted_at":1671053259084} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_441685177962603/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259084} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_441685177962603/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259084} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_441685177962603/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259085} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_441685177962603/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259085} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_440995108031610/insights/post_impressions/lifetime"},"emitted_at":1671053259085} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":40}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_440995108031610/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259086} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_440995108031610/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259086} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_440995108031610/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259086} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_440995108031610/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259087} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_440995108031610/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259087} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_440995108031610/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259087} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_440995108031610/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259088} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_440995108031610/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259088} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":40}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_440995108031610/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259088} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_440995108031610/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259089} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":40}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_440995108031610/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259089} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_440995108031610/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259090} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_440995108031610/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259090} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":43}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_440995108031610/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259090} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":40}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_440995108031610/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259091} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_440995108031610/insights/post_engaged_users/lifetime"},"emitted_at":1671053259091} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_440995108031610/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259091} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_440995108031610/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259092} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_440995108031610/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259092} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_440995108031610/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259092} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_440995108031610/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259093} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_440995108031610/insights/post_clicks/lifetime"},"emitted_at":1671053259093} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_440995108031610/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259093} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_440995108031610/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259094} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_440995108031610/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259094} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_440995108031610/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259094} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_440307834767004/insights/post_impressions/lifetime"},"emitted_at":1671053259095} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_440307834767004/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259095} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_440307834767004/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259095} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_440307834767004/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259096} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_440307834767004/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259096} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_440307834767004/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259096} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_440307834767004/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259097} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_440307834767004/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259097} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_440307834767004/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259097} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_440307834767004/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259098} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_440307834767004/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259098} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_440307834767004/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259099} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_440307834767004/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259099} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_440307834767004/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259099} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":30}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_440307834767004/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259100} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":28}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_440307834767004/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259100} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_440307834767004/insights/post_engaged_users/lifetime"},"emitted_at":1671053259100} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_440307834767004/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259101} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_440307834767004/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259101} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_440307834767004/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259101} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_440307834767004/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259102} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_440307834767004/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259102} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_440307834767004/insights/post_clicks/lifetime"},"emitted_at":1671053259102} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_440307834767004/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259103} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_440307834767004/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259103} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_440307834767004/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259103} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_440307834767004/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259104} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_439412868189834/insights/post_impressions/lifetime"},"emitted_at":1671053259104} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_439412868189834/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259104} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_439412868189834/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259105} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_439412868189834/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259105} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_439412868189834/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259105} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_439412868189834/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259106} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_439412868189834/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259106} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_439412868189834/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259106} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_439412868189834/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259107} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_439412868189834/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259107} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_439412868189834/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259107} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_439412868189834/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259108} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_439412868189834/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259108} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_439412868189834/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259108} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":34}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_439412868189834/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259109} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":32}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_439412868189834/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259109} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_439412868189834/insights/post_engaged_users/lifetime"},"emitted_at":1671053259109} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_439412868189834/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259110} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_439412868189834/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259110} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_439412868189834/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259110} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_439412868189834/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259111} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_439412868189834/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259111} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_439412868189834/insights/post_clicks/lifetime"},"emitted_at":1671053259111} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_439412868189834/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259112} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_439412868189834/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259112} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_439412868189834/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259112} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_439412868189834/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259113} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_436584011806053/insights/post_impressions/lifetime"},"emitted_at":1671053259113} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_436584011806053/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259113} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_436584011806053/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259114} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_436584011806053/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259114} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_436584011806053/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259114} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_436584011806053/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259115} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_436584011806053/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259115} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_436584011806053/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259115} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_436584011806053/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259116} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_436584011806053/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259116} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_436584011806053/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259116} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_436584011806053/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259117} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_436584011806053/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259117} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_436584011806053/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259118} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":39}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_436584011806053/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259118} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":38}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_436584011806053/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259118} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_436584011806053/insights/post_engaged_users/lifetime"},"emitted_at":1671053259119} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_436584011806053/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259119} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_436584011806053/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259119} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_436584011806053/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259120} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_436584011806053/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259120} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_436584011806053/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259120} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_436584011806053/insights/post_clicks/lifetime"},"emitted_at":1671053259121} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_436584011806053/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259121} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_436584011806053/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259122} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_436584011806053/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259122} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_436584011806053/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259122} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_435884638542657/insights/post_impressions/lifetime"},"emitted_at":1671053259123} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_435884638542657/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259123} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_435884638542657/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259124} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_435884638542657/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259124} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_435884638542657/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259125} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_435884638542657/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259125} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_435884638542657/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259126} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_435884638542657/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259126} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_435884638542657/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259126} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_435884638542657/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259127} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_435884638542657/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259127} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_435884638542657/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259127} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_435884638542657/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259128} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_435884638542657/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259128} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":34}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_435884638542657/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259128} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":34}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_435884638542657/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259129} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_435884638542657/insights/post_engaged_users/lifetime"},"emitted_at":1671053259129} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_435884638542657/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259129} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_435884638542657/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259130} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_435884638542657/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259130} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_435884638542657/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259130} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_435884638542657/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259131} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_435884638542657/insights/post_clicks/lifetime"},"emitted_at":1671053259131} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_435884638542657/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259132} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_435884638542657/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259132} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_435884638542657/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259132} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_435884638542657/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259133} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_435192395278548/insights/post_impressions/lifetime"},"emitted_at":1671053259133} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_435192395278548/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259133} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_435192395278548/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259134} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_435192395278548/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259134} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_435192395278548/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259134} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_435192395278548/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259135} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_435192395278548/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259135} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_435192395278548/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259135} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_435192395278548/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259136} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_435192395278548/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259136} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_435192395278548/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259137} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_435192395278548/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259137} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_435192395278548/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259137} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_435192395278548/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259138} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":31}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_435192395278548/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259138} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":31}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_435192395278548/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259138} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_435192395278548/insights/post_engaged_users/lifetime"},"emitted_at":1671053259139} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_435192395278548/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259139} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_435192395278548/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259139} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_435192395278548/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259140} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_435192395278548/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259140} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_435192395278548/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259141} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_435192395278548/insights/post_clicks/lifetime"},"emitted_at":1671053259141} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_435192395278548/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259141} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_435192395278548/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259142} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_435192395278548/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259142} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_435192395278548/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259142} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_434448275352960/insights/post_impressions/lifetime"},"emitted_at":1671053259143} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_434448275352960/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259143} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_434448275352960/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259143} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_434448275352960/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259144} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_434448275352960/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259144} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_434448275352960/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259144} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_434448275352960/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259145} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_434448275352960/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259145} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_434448275352960/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259145} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_434448275352960/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259146} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_434448275352960/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259146} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_434448275352960/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259146} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_434448275352960/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259147} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_434448275352960/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259147} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":24}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_434448275352960/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259147} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":24}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_434448275352960/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259148} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_434448275352960/insights/post_engaged_users/lifetime"},"emitted_at":1671053259148} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_434448275352960/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259148} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_434448275352960/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259149} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_434448275352960/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259149} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_434448275352960/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259150} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_434448275352960/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259150} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_434448275352960/insights/post_clicks/lifetime"},"emitted_at":1671053259150} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_434448275352960/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259151} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_434448275352960/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259151} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_434448275352960/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259151} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_434448275352960/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259152} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_431686125629175/insights/post_impressions/lifetime"},"emitted_at":1671053259152} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_431686125629175/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259152} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_431686125629175/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259153} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_431686125629175/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259153} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_431686125629175/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259153} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_431686125629175/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259154} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_431686125629175/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259154} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_431686125629175/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259154} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_431686125629175/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259155} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_431686125629175/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259155} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_431686125629175/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259155} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_431686125629175/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259156} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_431686125629175/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259156} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_431686125629175/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259156} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":43}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_431686125629175/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259157} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":42}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_431686125629175/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259157} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_431686125629175/insights/post_engaged_users/lifetime"},"emitted_at":1671053259157} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_431686125629175/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259158} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_431686125629175/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259158} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_431686125629175/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259158} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_431686125629175/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259159} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_431686125629175/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259159} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_431686125629175/insights/post_clicks/lifetime"},"emitted_at":1671053259160} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_431686125629175/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259160} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_431686125629175/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259160} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_431686125629175/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259161} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_431686125629175/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259161} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_430967685701019/insights/post_impressions/lifetime"},"emitted_at":1671053259161} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_430967685701019/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259162} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_430967685701019/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259162} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_430967685701019/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259162} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_430967685701019/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259163} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_430967685701019/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259163} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_430967685701019/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259163} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_430967685701019/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259164} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_430967685701019/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259164} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_430967685701019/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259164} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_430967685701019/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259165} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_430967685701019/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259165} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_430967685701019/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259166} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_430967685701019/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259166} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":28}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_430967685701019/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259166} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":28}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_430967685701019/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259167} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_430967685701019/insights/post_engaged_users/lifetime"},"emitted_at":1671053259167} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_430967685701019/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259168} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_430967685701019/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259168} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_430967685701019/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259168} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_430967685701019/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259169} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_430967685701019/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259169} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_430967685701019/insights/post_clicks/lifetime"},"emitted_at":1671053259169} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_430967685701019/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259170} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_430967685701019/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259170} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_430967685701019/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259170} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_430967685701019/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259171} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_430271439103977/insights/post_impressions/lifetime"},"emitted_at":1671053259171} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_430271439103977/insights/post_impressions_unique/lifetime"},"emitted_at":1671053259171} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_430271439103977/insights/post_impressions_paid/lifetime"},"emitted_at":1671053259172} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_430271439103977/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053259172} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_430271439103977/insights/post_impressions_fan/lifetime"},"emitted_at":1671053259172} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_430271439103977/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053259173} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_430271439103977/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053259173} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_430271439103977/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053259174} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_430271439103977/insights/post_impressions_organic/lifetime"},"emitted_at":1671053259174} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_430271439103977/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053259174} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_430271439103977/insights/post_impressions_viral/lifetime"},"emitted_at":1671053259175} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_430271439103977/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053259175} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_430271439103977/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053259175} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_430271439103977/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053259176} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":26}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_430271439103977/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053259176} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":26}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_430271439103977/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053259176} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_430271439103977/insights/post_engaged_users/lifetime"},"emitted_at":1671053259177} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_430271439103977/insights/post_negative_feedback/lifetime"},"emitted_at":1671053259177} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_430271439103977/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053259177} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_430271439103977/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053259178} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_430271439103977/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053259178} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_430271439103977/insights/post_engaged_fan/lifetime"},"emitted_at":1671053259178} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_430271439103977/insights/post_clicks/lifetime"},"emitted_at":1671053259179} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_430271439103977/insights/post_clicks_unique/lifetime"},"emitted_at":1671053259179} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_430271439103977/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053259179} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_430271439103977/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053259180} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_430271439103977/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053259180} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":37}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_429659112498543/insights/post_impressions/lifetime"},"emitted_at":1671053260683} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":37}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_429659112498543/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260684} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_429659112498543/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260684} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_429659112498543/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260685} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_429659112498543/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260685} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_429659112498543/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260686} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_429659112498543/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260686} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_429659112498543/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260687} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":37}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_429659112498543/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260687} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":37}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_429659112498543/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260688} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":37}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_429659112498543/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260688} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":37}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_429659112498543/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260689} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_429659112498543/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260689} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_429659112498543/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260690} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":37}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_429659112498543/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260691} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":37}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_429659112498543/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260691} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_429659112498543/insights/post_engaged_users/lifetime"},"emitted_at":1671053260692} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_429659112498543/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260692} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_429659112498543/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260693} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_429659112498543/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260693} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_429659112498543/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260693} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_429659112498543/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260694} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_429659112498543/insights/post_clicks/lifetime"},"emitted_at":1671053260694} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_429659112498543/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260695} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_429659112498543/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260695} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_429659112498543/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260695} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_429659112498543/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260696} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_429607465837041/insights/post_impressions/lifetime"},"emitted_at":1671053260696} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_429607465837041/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260697} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_429607465837041/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260697} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_429607465837041/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260697} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_429607465837041/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260698} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_429607465837041/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260698} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_429607465837041/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260699} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_429607465837041/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260699} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_429607465837041/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260700} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_429607465837041/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260700} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_429607465837041/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260701} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_429607465837041/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260701} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_429607465837041/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260702} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_429607465837041/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260702} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":38}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_429607465837041/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260703} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":38}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_429607465837041/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260704} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_429607465837041/insights/post_engaged_users/lifetime"},"emitted_at":1671053260704} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_429607465837041/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260705} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_429607465837041/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260705} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_429607465837041/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260706} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_429607465837041/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260706} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_429607465837041/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260706} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_429607465837041/insights/post_clicks/lifetime"},"emitted_at":1671053260707} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_429607465837041/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260707} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_429607465837041/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260708} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_429607465837041/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260708} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1,"love":1,"wow":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_429607465837041/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260708} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_426843322780122/insights/post_impressions/lifetime"},"emitted_at":1671053260709} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_426843322780122/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260709} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_426843322780122/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260709} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_426843322780122/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260710} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_426843322780122/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260710} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_426843322780122/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260710} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_426843322780122/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260711} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_426843322780122/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260711} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_426843322780122/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260712} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_426843322780122/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260712} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_426843322780122/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260712} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_426843322780122/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260713} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_426843322780122/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260713} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_426843322780122/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260713} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":42}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_426843322780122/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260714} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":42}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_426843322780122/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260714} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_426843322780122/insights/post_engaged_users/lifetime"},"emitted_at":1671053260714} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_426843322780122/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260715} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_426843322780122/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260715} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_426843322780122/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260715} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_426843322780122/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260716} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_426843322780122/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260716} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_426843322780122/insights/post_clicks/lifetime"},"emitted_at":1671053260717} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_426843322780122/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260717} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_426843322780122/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260717} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_426843322780122/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260718} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_426843322780122/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260718} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_426169792847475/insights/post_impressions/lifetime"},"emitted_at":1671053260718} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_426169792847475/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260719} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_426169792847475/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260719} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_426169792847475/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260719} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_426169792847475/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260720} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_426169792847475/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260720} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_426169792847475/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260720} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_426169792847475/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260721} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_426169792847475/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260721} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_426169792847475/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260721} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_426169792847475/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260722} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_426169792847475/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260722} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_426169792847475/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260723} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_426169792847475/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260723} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":33}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_426169792847475/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260723} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":33}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_426169792847475/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260724} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_426169792847475/insights/post_engaged_users/lifetime"},"emitted_at":1671053260724} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_426169792847475/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260724} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_426169792847475/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260725} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_426169792847475/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260725} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_426169792847475/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260725} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_426169792847475/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260726} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_426169792847475/insights/post_clicks/lifetime"},"emitted_at":1671053260727} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_426169792847475/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260727} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_426169792847475/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260727} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_426169792847475/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260728} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_426169792847475/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260728} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":45}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_425471739583947/insights/post_impressions/lifetime"},"emitted_at":1671053260729} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_425471739583947/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260729} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_425471739583947/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260729} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_425471739583947/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260730} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_425471739583947/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260730} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_425471739583947/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260730} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_425471739583947/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260731} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_425471739583947/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260731} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":45}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_425471739583947/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260731} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_425471739583947/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260732} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":45}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_425471739583947/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260732} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_425471739583947/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260732} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_425471739583947/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260733} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_425471739583947/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260733} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":45}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_425471739583947/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260733} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":43}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_425471739583947/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260734} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_425471739583947/insights/post_engaged_users/lifetime"},"emitted_at":1671053260734} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_425471739583947/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260734} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_425471739583947/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260735} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_425471739583947/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260735} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_425471739583947/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260735} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_425471739583947/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260736} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_425471739583947/insights/post_clicks/lifetime"},"emitted_at":1671053260736} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_425471739583947/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260736} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_425471739583947/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260737} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_425471739583947/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260737} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_425471739583947/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260737} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_424790189652102/insights/post_impressions/lifetime"},"emitted_at":1671053260738} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_424790189652102/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260738} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_424790189652102/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260739} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_424790189652102/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260739} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_424790189652102/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260739} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_424790189652102/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260740} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_424790189652102/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260740} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_424790189652102/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260740} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_424790189652102/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260741} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_424790189652102/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260741} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_424790189652102/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260741} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_424790189652102/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260742} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_424790189652102/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260742} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_424790189652102/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260742} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":31}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_424790189652102/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260743} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":31}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_424790189652102/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260743} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_424790189652102/insights/post_engaged_users/lifetime"},"emitted_at":1671053260743} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_424790189652102/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260744} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_424790189652102/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260744} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_424790189652102/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260744} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_424790189652102/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260745} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_424790189652102/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260746} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_424790189652102/insights/post_clicks/lifetime"},"emitted_at":1671053260746} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_424790189652102/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260746} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":2,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_424790189652102/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260747} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_424790189652102/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260747} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_424790189652102/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260747} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":46}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_421939816603806/insights/post_impressions/lifetime"},"emitted_at":1671053260748} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":45}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_421939816603806/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260748} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_421939816603806/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260748} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_421939816603806/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260749} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_421939816603806/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260749} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_421939816603806/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260749} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_421939816603806/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260750} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_421939816603806/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260750} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":46}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_421939816603806/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260750} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":45}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_421939816603806/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260751} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":46}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_421939816603806/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260751} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":45}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_421939816603806/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260751} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_421939816603806/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260752} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_421939816603806/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260752} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":46}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_421939816603806/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260752} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":45}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_421939816603806/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260753} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_421939816603806/insights/post_engaged_users/lifetime"},"emitted_at":1671053260753} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_421939816603806/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260753} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_421939816603806/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260754} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_421939816603806/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260754} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_421939816603806/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260754} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_421939816603806/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260755} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_421939816603806/insights/post_clicks/lifetime"},"emitted_at":1671053260755} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_421939816603806/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260755} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_421939816603806/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260756} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_421939816603806/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260757} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_421939816603806/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260757} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":35}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_420680976729690/insights/post_impressions/lifetime"},"emitted_at":1671053260757} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_420680976729690/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260758} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_420680976729690/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260758} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_420680976729690/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260758} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_420680976729690/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260759} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_420680976729690/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260759} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_420680976729690/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260759} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_420680976729690/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260760} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":35}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_420680976729690/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260760} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_420680976729690/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260760} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":35}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_420680976729690/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260761} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_420680976729690/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260761} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_420680976729690/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260761} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_420680976729690/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260762} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":35}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_420680976729690/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260762} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":33}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_420680976729690/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260763} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_420680976729690/insights/post_engaged_users/lifetime"},"emitted_at":1671053260763} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_420680976729690/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260763} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_420680976729690/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260764} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_420680976729690/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260764} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_420680976729690/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260764} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_420680976729690/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260765} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_420680976729690/insights/post_clicks/lifetime"},"emitted_at":1671053260765} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_420680976729690/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260765} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_420680976729690/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260766} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_420680976729690/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260766} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_420680976729690/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260767} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":73}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_416284977169290/insights/post_impressions/lifetime"},"emitted_at":1671053260767} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":71}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_416284977169290/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260767} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_416284977169290/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260768} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_416284977169290/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260768} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_416284977169290/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260768} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_416284977169290/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260769} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_416284977169290/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260769} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_416284977169290/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260769} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":73}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_416284977169290/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260770} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":71}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_416284977169290/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260770} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":73}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_416284977169290/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260770} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":71}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_416284977169290/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260771} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_416284977169290/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260771} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_416284977169290/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260772} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":73}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_416284977169290/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260772} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":71}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_416284977169290/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260772} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_416284977169290/insights/post_engaged_users/lifetime"},"emitted_at":1671053260773} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_416284977169290/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260773} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_416284977169290/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260774} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_416284977169290/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260774} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_416284977169290/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260774} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_416284977169290/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260775} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_416284977169290/insights/post_clicks/lifetime"},"emitted_at":1671053260775} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_416284977169290/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260775} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"photo view":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_416284977169290/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260776} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"photo view":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_416284977169290/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260776} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_416284977169290/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260776} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":159}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_412053227592465/insights/post_impressions/lifetime"},"emitted_at":1671053260777} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":149}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_412053227592465/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260777} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_412053227592465/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260778} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_412053227592465/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260778} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_412053227592465/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260778} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":36}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_412053227592465/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260779} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_412053227592465/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260779} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_412053227592465/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260779} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":159}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_412053227592465/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260780} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":149}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_412053227592465/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260780} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":159}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_412053227592465/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260780} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":149}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_412053227592465/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260781} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_412053227592465/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260781} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_412053227592465/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260781} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":159}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_412053227592465/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260782} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":149}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_412053227592465/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260782} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":14}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_412053227592465/insights/post_engaged_users/lifetime"},"emitted_at":1671053260782} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_412053227592465/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260783} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_412053227592465/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260783} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_412053227592465/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260783} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_412053227592465/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260784} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_412053227592465/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260784} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":6}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_412053227592465/insights/post_clicks/lifetime"},"emitted_at":1671053260784} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_412053227592465/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260785} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"photo view":1,"link clicks":5}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_412053227592465/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260785} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"photo view":1,"link clicks":5}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_412053227592465/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260786} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":4,"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_412053227592465/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260786} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_406569508140837/insights/post_impressions/lifetime"},"emitted_at":1671053260787} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_406569508140837/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260787} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_406569508140837/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260787} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_406569508140837/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260788} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_406569508140837/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260788} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_406569508140837/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260788} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_406569508140837/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260789} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_406569508140837/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260790} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_406569508140837/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260790} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_406569508140837/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260791} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_406569508140837/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260791} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_406569508140837/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260792} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_406569508140837/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260792} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_406569508140837/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260793} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":5}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_406569508140837/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260793} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":5}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_406569508140837/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260793} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_406569508140837/insights/post_engaged_users/lifetime"},"emitted_at":1671053260794} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_406569508140837/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260794} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_406569508140837/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260794} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_406569508140837/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260795} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_406569508140837/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260795} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_406569508140837/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260795} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_406569508140837/insights/post_clicks/lifetime"},"emitted_at":1671053260796} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_406569508140837/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260796} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_406569508140837/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260797} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_406569508140837/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260797} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_406569508140837/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260797} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_406566958141092/insights/post_impressions/lifetime"},"emitted_at":1671053260798} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_406566958141092/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260798} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_406566958141092/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260798} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_406566958141092/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260799} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_406566958141092/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260799} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_406566958141092/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260800} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_406566958141092/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260800} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_406566958141092/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260800} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_406566958141092/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260801} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_406566958141092/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260801} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_406566958141092/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260801} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_406566958141092/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260802} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_406566958141092/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260802} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_406566958141092/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260802} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":5}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_406566958141092/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260803} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":5}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_406566958141092/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260803} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_406566958141092/insights/post_engaged_users/lifetime"},"emitted_at":1671053260803} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_406566958141092/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260804} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_406566958141092/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260804} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_406566958141092/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260804} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_406566958141092/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260805} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_406566958141092/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260805} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_406566958141092/insights/post_clicks/lifetime"},"emitted_at":1671053260805} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_406566958141092/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260806} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_406566958141092/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260806} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_406566958141092/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260807} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_406566958141092/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260807} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_406563064808148/insights/post_impressions/lifetime"},"emitted_at":1671053260808} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_406563064808148/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260808} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_406563064808148/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260808} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_406563064808148/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260809} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_406563064808148/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260809} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_406563064808148/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260809} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_406563064808148/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260810} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_406563064808148/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260810} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_406563064808148/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260810} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_406563064808148/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260811} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_406563064808148/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260811} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_406563064808148/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260811} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_406563064808148/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260812} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_406563064808148/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260812} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":1}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_406563064808148/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260812} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":1}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_406563064808148/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260813} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_406563064808148/insights/post_engaged_users/lifetime"},"emitted_at":1671053260813} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_406563064808148/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260813} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_406563064808148/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260814} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_406563064808148/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260814} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_406563064808148/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260814} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_406563064808148/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260815} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_406563064808148/insights/post_clicks/lifetime"},"emitted_at":1671053260815} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_406563064808148/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260815} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_406563064808148/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260816} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_406563064808148/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260816} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_406563064808148/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260816} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_406560738141714/insights/post_impressions/lifetime"},"emitted_at":1671053260817} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_406560738141714/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260817} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_406560738141714/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260817} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_406560738141714/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260818} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_406560738141714/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260818} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_406560738141714/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260818} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_406560738141714/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260819} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_406560738141714/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260819} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_406560738141714/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260819} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_406560738141714/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260820} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_406560738141714/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260820} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_406560738141714/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260820} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_406560738141714/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260821} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_406560738141714/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260821} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":3}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_406560738141714/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260821} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":3}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_406560738141714/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260822} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_406560738141714/insights/post_engaged_users/lifetime"},"emitted_at":1671053260822} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_406560738141714/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260822} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_406560738141714/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260823} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_406560738141714/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260823} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_406560738141714/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260823} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_406560738141714/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260824} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_406560738141714/insights/post_clicks/lifetime"},"emitted_at":1671053260824} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_406560738141714/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260825} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_406560738141714/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260825} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_406560738141714/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260825} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_406560738141714/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260826} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_406557481475373/insights/post_impressions/lifetime"},"emitted_at":1671053260826} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_406557481475373/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260827} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_406557481475373/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260827} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_406557481475373/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260827} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_406557481475373/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260828} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_406557481475373/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260828} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_406557481475373/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260828} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_406557481475373/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260829} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_406557481475373/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260829} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_406557481475373/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260829} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_406557481475373/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260830} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_406557481475373/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260830} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_406557481475373/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260830} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_406557481475373/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260831} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":3}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_406557481475373/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260831} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":2}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_406557481475373/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260831} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_406557481475373/insights/post_engaged_users/lifetime"},"emitted_at":1671053260832} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_406557481475373/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260832} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_406557481475373/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260832} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_406557481475373/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260833} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_406557481475373/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260833} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_406557481475373/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260833} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_406557481475373/insights/post_clicks/lifetime"},"emitted_at":1671053260834} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_406557481475373/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260834} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_406557481475373/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260834} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_406557481475373/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260835} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_406557481475373/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260835} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_406557244808730/insights/post_impressions/lifetime"},"emitted_at":1671053260835} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_406557244808730/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260836} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_406557244808730/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260836} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_406557244808730/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260837} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_406557244808730/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260837} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_406557244808730/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260837} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_406557244808730/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260838} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_406557244808730/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260838} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_406557244808730/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260839} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_406557244808730/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260839} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_406557244808730/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260839} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_406557244808730/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260840} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_406557244808730/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260840} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_406557244808730/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260840} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":9}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_406557244808730/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260841} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":8}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_406557244808730/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260841} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_406557244808730/insights/post_engaged_users/lifetime"},"emitted_at":1671053260841} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_406557244808730/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260842} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_406557244808730/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260842} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_406557244808730/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260842} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_406557244808730/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260843} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_406557244808730/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260843} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_406557244808730/insights/post_clicks/lifetime"},"emitted_at":1671053260843} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_406557244808730/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260844} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_406557244808730/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260844} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_406557244808730/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260845} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_406557244808730/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260845} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":114}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_406556531475468/insights/post_impressions/lifetime"},"emitted_at":1671053260845} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":106}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_406556531475468/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260845} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_406556531475468/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260846} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_406556531475468/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260846} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":49}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_406556531475468/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260847} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_406556531475468/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260847} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_406556531475468/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260848} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_406556531475468/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260848} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":114}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_406556531475468/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260848} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":106}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_406556531475468/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260849} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":114}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_406556531475468/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260849} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":106}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_406556531475468/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260849} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_406556531475468/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260850} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_406556531475468/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260850} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":114}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_406556531475468/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260850} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":106}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_406556531475468/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260851} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_406556531475468/insights/post_engaged_users/lifetime"},"emitted_at":1671053260851} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_406556531475468/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260851} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_406556531475468/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260852} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_406556531475468/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260852} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_406556531475468/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260852} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_406556531475468/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260853} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":6}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_406556531475468/insights/post_clicks/lifetime"},"emitted_at":1671053260853} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_406556531475468/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260853} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":6}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_406556531475468/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260854} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":4}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_406556531475468/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260854} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_406556531475468/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260854} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":69}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_512515233752890/insights/post_impressions/lifetime"},"emitted_at":1671053260855} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":68}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_512515233752890/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260855} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_512515233752890/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260855} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_512515233752890/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260856} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_512515233752890/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260856} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_512515233752890/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260856} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_512515233752890/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260857} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_512515233752890/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260857} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":69}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_512515233752890/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260857} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":68}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_512515233752890/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260858} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_512515233752890/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260858} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_512515233752890/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260858} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":69}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_512515233752890/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260859} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":68}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_512515233752890/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260859} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_512515233752890/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260859} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_512515233752890/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260860} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_512515233752890/insights/post_engaged_users/lifetime"},"emitted_at":1671053260860} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_512515233752890/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260860} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_512515233752890/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260861} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_512515233752890/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260861} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_512515233752890/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260861} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_512515233752890/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260862} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_512515233752890/insights/post_clicks/lifetime"},"emitted_at":1671053260862} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_512515233752890/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260862} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_512515233752890/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260863} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_512515233752890/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260863} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_512515233752890/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260863} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":113}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_502548531416227/insights/post_impressions/lifetime"},"emitted_at":1671053260864} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":109}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_502548531416227/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260864} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_502548531416227/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260864} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_502548531416227/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260865} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_502548531416227/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260865} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_502548531416227/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260865} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_502548531416227/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260866} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_502548531416227/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260866} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":113}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_502548531416227/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260866} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":109}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_502548531416227/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260867} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_502548531416227/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260867} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_502548531416227/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260868} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":113}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_502548531416227/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260868} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":109}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_502548531416227/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260869} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_502548531416227/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260869} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_502548531416227/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260869} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":9}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_502548531416227/insights/post_engaged_users/lifetime"},"emitted_at":1671053260870} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_502548531416227/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260870} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_502548531416227/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260870} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_502548531416227/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260871} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_502548531416227/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260871} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_502548531416227/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260872} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":9}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_502548531416227/insights/post_clicks/lifetime"},"emitted_at":1671053260872} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_502548531416227/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260872} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":3,"photo view":6}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_502548531416227/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260873} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":2,"photo view":6}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_502548531416227/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260873} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1,"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_502548531416227/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260873} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":99}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_498109188526828/insights/post_impressions/lifetime"},"emitted_at":1671053260874} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":92}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_498109188526828/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260874} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_498109188526828/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260874} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_498109188526828/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260875} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_498109188526828/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260875} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_498109188526828/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260875} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_498109188526828/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260876} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_498109188526828/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260876} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":99}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_498109188526828/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260876} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":92}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_498109188526828/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260877} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_498109188526828/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260877} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_498109188526828/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260878} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":99}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_498109188526828/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260878} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":92}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_498109188526828/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260878} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_498109188526828/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260879} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_498109188526828/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260879} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_498109188526828/insights/post_engaged_users/lifetime"},"emitted_at":1671053260880} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_498109188526828/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260880} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_498109188526828/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260880} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_498109188526828/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260881} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_498109188526828/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260881} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_498109188526828/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260881} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_498109188526828/insights/post_clicks/lifetime"},"emitted_at":1671053260882} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_498109188526828/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260882} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_498109188526828/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260882} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_498109188526828/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260883} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_498109188526828/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260883} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":138}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_486646513006429/insights/post_impressions/lifetime"},"emitted_at":1671053260884} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":128}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_486646513006429/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260884} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_486646513006429/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260884} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_486646513006429/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260885} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":41}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_486646513006429/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260885} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":37}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_486646513006429/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260885} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_486646513006429/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260886} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_486646513006429/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260886} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":138}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_486646513006429/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260886} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":128}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_486646513006429/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260887} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_486646513006429/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260887} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_486646513006429/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260887} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":138}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_486646513006429/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260888} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":128}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_486646513006429/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260888} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_486646513006429/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260888} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_486646513006429/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260889} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_486646513006429/insights/post_engaged_users/lifetime"},"emitted_at":1671053260889} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_486646513006429/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260890} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_486646513006429/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260890} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_486646513006429/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260890} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_486646513006429/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260891} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_486646513006429/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260891} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_486646513006429/insights/post_clicks/lifetime"},"emitted_at":1671053260891} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_486646513006429/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260892} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_486646513006429/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260892} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_486646513006429/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260892} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_486646513006429/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260893} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":113}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_481615906842823/insights/post_impressions/lifetime"},"emitted_at":1671053260893} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":98}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_481615906842823/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260893} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_481615906842823/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260894} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_481615906842823/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260894} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_481615906842823/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260894} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_481615906842823/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260895} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_481615906842823/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260895} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_481615906842823/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260895} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":113}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_481615906842823/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260896} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":98}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_481615906842823/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260896} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_481615906842823/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260896} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_481615906842823/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260897} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":113}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_481615906842823/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260897} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":98}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_481615906842823/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260898} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_481615906842823/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260898} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_481615906842823/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260899} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_481615906842823/insights/post_engaged_users/lifetime"},"emitted_at":1671053260899} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_481615906842823/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260899} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_481615906842823/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260900} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_481615906842823/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260900} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_481615906842823/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260900} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_481615906842823/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260901} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_481615906842823/insights/post_clicks/lifetime"},"emitted_at":1671053260901} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_481615906842823/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260901} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_481615906842823/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260902} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_481615906842823/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260902} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_481615906842823/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260902} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":105}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_481589216845492/insights/post_impressions/lifetime"},"emitted_at":1671053260903} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":94}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_481589216845492/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260903} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_481589216845492/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260903} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_481589216845492/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260904} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":36}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_481589216845492/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260904} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_481589216845492/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260904} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_481589216845492/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260905} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_481589216845492/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260905} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":105}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_481589216845492/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260905} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":94}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_481589216845492/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260906} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_481589216845492/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260906} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_481589216845492/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260906} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":105}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_481589216845492/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260907} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":94}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_481589216845492/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260907} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_481589216845492/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260907} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_481589216845492/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260908} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_481589216845492/insights/post_engaged_users/lifetime"},"emitted_at":1671053260908} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_481589216845492/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260909} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_481589216845492/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260909} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_481589216845492/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260910} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_481589216845492/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260910} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_481589216845492/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260910} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_481589216845492/insights/post_clicks/lifetime"},"emitted_at":1671053260911} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_481589216845492/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260911} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_481589216845492/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260911} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_481589216845492/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260912} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_481589216845492/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260912} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":89}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_477919003879180/insights/post_impressions/lifetime"},"emitted_at":1671053260912} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":80}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_477919003879180/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260913} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_477919003879180/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260913} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_477919003879180/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260913} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_477919003879180/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260914} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_477919003879180/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260914} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_477919003879180/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260914} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_477919003879180/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260915} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":89}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_477919003879180/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260915} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":80}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_477919003879180/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260915} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_477919003879180/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260916} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_477919003879180/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260916} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":89}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_477919003879180/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260916} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":80}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_477919003879180/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260917} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_477919003879180/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260917} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_477919003879180/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260917} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_477919003879180/insights/post_engaged_users/lifetime"},"emitted_at":1671053260918} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_477919003879180/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260918} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_477919003879180/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260919} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_477919003879180/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260919} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_477919003879180/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260920} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_477919003879180/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260920} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_477919003879180/insights/post_clicks/lifetime"},"emitted_at":1671053260920} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_477919003879180/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260921} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_477919003879180/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260921} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_477919003879180/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260922} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_477919003879180/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260922} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":105}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_474304140907333/insights/post_impressions/lifetime"},"emitted_at":1671053260922} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":96}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_474304140907333/insights/post_impressions_unique/lifetime"},"emitted_at":1671053260923} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_474304140907333/insights/post_impressions_paid/lifetime"},"emitted_at":1671053260923} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_474304140907333/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053260923} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":36}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_474304140907333/insights/post_impressions_fan/lifetime"},"emitted_at":1671053260924} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_474304140907333/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053260925} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_474304140907333/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053260925} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_474304140907333/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053260925} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":105}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_474304140907333/insights/post_impressions_organic/lifetime"},"emitted_at":1671053260926} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":96}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_474304140907333/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053260926} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_474304140907333/insights/post_impressions_viral/lifetime"},"emitted_at":1671053260926} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_474304140907333/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053260927} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":105}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_474304140907333/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053260927} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":96}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_474304140907333/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053260928} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_474304140907333/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053260928} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_474304140907333/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053260929} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_474304140907333/insights/post_engaged_users/lifetime"},"emitted_at":1671053260929} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_474304140907333/insights/post_negative_feedback/lifetime"},"emitted_at":1671053260929} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_474304140907333/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053260930} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_474304140907333/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053260930} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_474304140907333/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053260930} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_474304140907333/insights/post_engaged_fan/lifetime"},"emitted_at":1671053260931} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_474304140907333/insights/post_clicks/lifetime"},"emitted_at":1671053260931} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_474304140907333/insights/post_clicks_unique/lifetime"},"emitted_at":1671053260931} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"photo view":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_474304140907333/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053260932} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"photo view":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_474304140907333/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053260932} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_474304140907333/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053260932} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":119}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_464887935182287/insights/post_impressions/lifetime"},"emitted_at":1671053262589} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":108}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_464887935182287/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262590} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_464887935182287/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262590} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_464887935182287/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262591} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_464887935182287/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262591} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_464887935182287/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262591} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_464887935182287/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262592} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_464887935182287/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262592} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":119}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_464887935182287/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262593} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":108}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_464887935182287/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262593} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_464887935182287/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262593} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_464887935182287/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262594} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":119}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_464887935182287/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262594} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":108}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_464887935182287/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262594} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_464887935182287/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262595} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_464887935182287/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262595} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_464887935182287/insights/post_engaged_users/lifetime"},"emitted_at":1671053262596} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_464887935182287/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262596} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_464887935182287/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262596} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_464887935182287/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262597} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_464887935182287/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262597} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_464887935182287/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262597} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_464887935182287/insights/post_clicks/lifetime"},"emitted_at":1671053262598} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_464887935182287/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262598} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_464887935182287/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262599} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_464887935182287/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262599} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_464887935182287/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262600} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":128}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_464225221915225/insights/post_impressions/lifetime"},"emitted_at":1671053262600} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":116}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_464225221915225/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262600} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_464225221915225/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262601} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_464225221915225/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262601} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_464225221915225/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262601} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_464225221915225/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262602} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_464225221915225/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262602} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_464225221915225/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262603} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":128}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_464225221915225/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262603} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":116}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_464225221915225/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262603} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_464225221915225/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262604} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_464225221915225/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262604} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":128}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_464225221915225/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262604} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":116}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_464225221915225/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262605} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_464225221915225/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262605} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_464225221915225/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262606} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_464225221915225/insights/post_engaged_users/lifetime"},"emitted_at":1671053262606} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_464225221915225/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262606} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_464225221915225/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262607} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_464225221915225/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262607} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_464225221915225/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262607} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_464225221915225/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262608} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_464225221915225/insights/post_clicks/lifetime"},"emitted_at":1671053262608} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_464225221915225/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262609} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_464225221915225/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262609} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_464225221915225/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262609} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1,"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_464225221915225/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262610} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":108}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_459472652390482/insights/post_impressions/lifetime"},"emitted_at":1671053262610} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":100}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_459472652390482/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262611} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_459472652390482/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262611} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_459472652390482/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262611} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_459472652390482/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262612} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_459472652390482/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262612} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_459472652390482/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262612} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_459472652390482/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262613} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":108}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_459472652390482/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262613} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":100}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_459472652390482/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262614} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_459472652390482/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262614} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_459472652390482/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262614} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":108}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_459472652390482/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262615} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":100}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_459472652390482/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262615} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_459472652390482/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262616} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_459472652390482/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262616} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_459472652390482/insights/post_engaged_users/lifetime"},"emitted_at":1671053262616} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_459472652390482/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262617} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_459472652390482/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262617} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_459472652390482/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262618} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_459472652390482/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262618} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_459472652390482/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262619} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_459472652390482/insights/post_clicks/lifetime"},"emitted_at":1671053262620} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_459472652390482/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262620} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_459472652390482/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262620} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_459472652390482/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262621} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_459472652390482/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262621} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":71}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_455914796079601/insights/post_impressions/lifetime"},"emitted_at":1671053262622} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":67}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_455914796079601/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262622} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_455914796079601/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262623} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_455914796079601/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262623} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_455914796079601/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262624} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_455914796079601/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262624} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_455914796079601/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262624} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_455914796079601/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262625} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":71}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_455914796079601/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262625} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":67}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_455914796079601/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262626} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_455914796079601/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262626} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_455914796079601/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262627} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":71}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_455914796079601/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262627} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":67}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_455914796079601/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262627} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_455914796079601/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262628} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_455914796079601/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262628} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_455914796079601/insights/post_engaged_users/lifetime"},"emitted_at":1671053262629} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_455914796079601/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262629} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_455914796079601/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262629} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_455914796079601/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262630} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_455914796079601/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262630} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_455914796079601/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262630} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_455914796079601/insights/post_clicks/lifetime"},"emitted_at":1671053262631} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_455914796079601/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262631} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_455914796079601/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262631} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_455914796079601/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262632} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_455914796079601/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262632} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":67}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_452509349753479/insights/post_impressions/lifetime"},"emitted_at":1671053262633} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":63}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_452509349753479/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262633} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_452509349753479/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262633} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_452509349753479/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262634} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_452509349753479/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262634} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_452509349753479/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262635} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_452509349753479/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262635} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_452509349753479/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262635} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":67}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_452509349753479/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262636} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":63}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_452509349753479/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262636} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_452509349753479/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262636} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_452509349753479/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262637} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":67}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_452509349753479/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262637} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":63}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_452509349753479/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262637} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_452509349753479/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262638} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_452509349753479/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262638} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_452509349753479/insights/post_engaged_users/lifetime"},"emitted_at":1671053262639} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_452509349753479/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262639} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_452509349753479/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262640} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_452509349753479/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262640} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_452509349753479/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262641} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_452509349753479/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262641} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_452509349753479/insights/post_clicks/lifetime"},"emitted_at":1671053262641} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_452509349753479/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262642} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_452509349753479/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262642} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_452509349753479/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262642} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_452509349753479/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262643} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":70}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_451233713214376/insights/post_impressions/lifetime"},"emitted_at":1671053262643} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":67}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_451233713214376/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262644} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_451233713214376/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262644} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_451233713214376/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262645} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_451233713214376/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262645} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_451233713214376/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262645} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_451233713214376/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262646} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_451233713214376/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262648} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":70}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_451233713214376/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262648} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":67}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_451233713214376/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262649} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_451233713214376/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262649} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_451233713214376/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262650} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":70}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_451233713214376/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262652} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":67}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_451233713214376/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262652} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_451233713214376/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262654} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_451233713214376/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262654} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_451233713214376/insights/post_engaged_users/lifetime"},"emitted_at":1671053262655} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_451233713214376/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262656} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_451233713214376/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262657} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_451233713214376/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262658} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_451233713214376/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262658} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_451233713214376/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262659} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_451233713214376/insights/post_clicks/lifetime"},"emitted_at":1671053262659} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_451233713214376/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262660} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_451233713214376/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262661} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_451233713214376/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262661} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_451233713214376/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262662} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":72}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_448842776786803/insights/post_impressions/lifetime"},"emitted_at":1671053262662} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":70}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_448842776786803/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262663} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_448842776786803/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262663} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_448842776786803/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262663} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_448842776786803/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262664} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_448842776786803/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262664} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_448842776786803/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262665} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_448842776786803/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262666} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":72}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_448842776786803/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262666} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":70}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_448842776786803/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262667} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_448842776786803/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262667} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_448842776786803/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262668} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":72}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_448842776786803/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262668} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":70}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_448842776786803/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262669} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_448842776786803/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262669} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_448842776786803/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262670} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_448842776786803/insights/post_engaged_users/lifetime"},"emitted_at":1671053262671} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_448842776786803/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262671} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_448842776786803/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262672} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_448842776786803/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262672} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_448842776786803/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262672} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_448842776786803/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262673} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_448842776786803/insights/post_clicks/lifetime"},"emitted_at":1671053262674} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_448842776786803/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262674} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_448842776786803/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262675} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_448842776786803/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262675} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_448842776786803/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262676} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":56}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_448237390180675/insights/post_impressions/lifetime"},"emitted_at":1671053262676} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":54}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_448237390180675/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262677} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_448237390180675/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262677} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_448237390180675/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262678} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_448237390180675/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262678} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_448237390180675/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262679} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_448237390180675/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262680} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_448237390180675/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262680} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":56}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_448237390180675/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262681} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":54}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_448237390180675/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262682} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_448237390180675/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262682} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_448237390180675/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262683} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":56}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_448237390180675/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262684} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":54}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_448237390180675/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262684} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_448237390180675/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262685} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_448237390180675/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262685} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_448237390180675/insights/post_engaged_users/lifetime"},"emitted_at":1671053262686} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_448237390180675/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262686} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_448237390180675/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262688} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_448237390180675/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262688} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_448237390180675/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262689} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_448237390180675/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262689} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_448237390180675/insights/post_clicks/lifetime"},"emitted_at":1671053262693} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_448237390180675/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262693} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_448237390180675/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262694} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_448237390180675/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262695} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_448237390180675/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262695} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":66}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_447619643575783/insights/post_impressions/lifetime"},"emitted_at":1671053262696} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":62}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_447619643575783/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262696} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_447619643575783/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262696} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_447619643575783/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262697} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_447619643575783/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262697} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_447619643575783/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262698} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_447619643575783/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262698} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_447619643575783/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262699} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":66}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_447619643575783/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262700} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":62}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_447619643575783/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262701} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_447619643575783/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262702} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_447619643575783/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262703} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":66}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_447619643575783/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262703} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":62}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_447619643575783/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262704} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_447619643575783/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262705} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_447619643575783/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262706} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_447619643575783/insights/post_engaged_users/lifetime"},"emitted_at":1671053262707} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_447619643575783/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262707} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_447619643575783/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262708} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_447619643575783/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262709} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_447619643575783/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262709} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_447619643575783/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262709} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_447619643575783/insights/post_clicks/lifetime"},"emitted_at":1671053262710} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_447619643575783/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262710} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_447619643575783/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262710} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_447619643575783/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262711} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_447619643575783/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262711} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":66}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_447024870301927/insights/post_impressions/lifetime"},"emitted_at":1671053262712} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":64}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_447024870301927/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262712} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_447024870301927/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262712} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_447024870301927/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262713} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_447024870301927/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262713} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_447024870301927/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262713} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_447024870301927/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262714} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_447024870301927/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262714} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":66}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_447024870301927/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262714} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":64}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_447024870301927/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262715} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_447024870301927/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262715} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_447024870301927/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262715} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":66}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_447024870301927/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262716} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":64}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_447024870301927/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262717} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_447024870301927/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262717} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_447024870301927/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262717} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_447024870301927/insights/post_engaged_users/lifetime"},"emitted_at":1671053262718} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_447024870301927/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262718} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_447024870301927/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262718} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_447024870301927/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262719} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_447024870301927/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262719} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_447024870301927/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262719} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_447024870301927/insights/post_clicks/lifetime"},"emitted_at":1671053262720} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_447024870301927/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262720} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_447024870301927/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262720} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_447024870301927/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262721} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1,"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_447024870301927/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262721} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":58}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_444653863872361/insights/post_impressions/lifetime"},"emitted_at":1671053262722} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":56}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_444653863872361/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262722} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_444653863872361/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262722} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_444653863872361/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262723} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_444653863872361/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262723} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_444653863872361/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262723} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_444653863872361/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262724} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_444653863872361/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262724} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":58}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_444653863872361/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262724} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":56}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_444653863872361/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262725} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_444653863872361/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262725} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_444653863872361/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262726} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":58}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_444653863872361/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262726} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":56}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_444653863872361/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262727} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_444653863872361/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262727} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_444653863872361/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262727} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":6}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_444653863872361/insights/post_engaged_users/lifetime"},"emitted_at":1671053262728} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_444653863872361/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262728} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_444653863872361/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262729} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_444653863872361/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262729} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_444653863872361/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262729} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_444653863872361/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262730} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":5}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_444653863872361/insights/post_clicks/lifetime"},"emitted_at":1671053262730} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_444653863872361/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262731} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":5}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_444653863872361/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262731} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":5}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_444653863872361/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262731} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_444653863872361/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262732} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":57}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_442916990712715/insights/post_impressions/lifetime"},"emitted_at":1671053262732} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":55}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_442916990712715/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262732} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_442916990712715/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262733} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_442916990712715/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262733} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_442916990712715/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262733} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_442916990712715/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262734} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_442916990712715/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262734} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_442916990712715/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262734} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":57}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_442916990712715/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262735} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":55}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_442916990712715/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262735} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_442916990712715/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262736} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_442916990712715/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262736} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":57}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_442916990712715/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262737} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":55}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_442916990712715/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262737} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_442916990712715/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262737} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_442916990712715/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262738} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_442916990712715/insights/post_engaged_users/lifetime"},"emitted_at":1671053262738} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_442916990712715/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262738} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_442916990712715/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262739} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_442916990712715/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262739} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_442916990712715/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262740} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_442916990712715/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262740} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_442916990712715/insights/post_clicks/lifetime"},"emitted_at":1671053262740} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_442916990712715/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262741} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_442916990712715/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262741} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_442916990712715/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262741} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_442916990712715/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262742} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":142}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_436230378048043/insights/post_impressions/lifetime"},"emitted_at":1671053262742} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":140}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_436230378048043/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262742} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_436230378048043/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262743} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_436230378048043/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262743} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_436230378048043/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262744} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_436230378048043/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262744} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_436230378048043/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262745} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_436230378048043/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262745} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":142}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_436230378048043/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262745} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":140}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_436230378048043/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262746} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":89}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_436230378048043/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262746} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":89}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_436230378048043/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262746} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_436230378048043/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262747} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":52}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_436230378048043/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262747} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":89}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_436230378048043/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262748} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":89}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_436230378048043/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262748} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_436230378048043/insights/post_engaged_users/lifetime"},"emitted_at":1671053262748} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_436230378048043/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262749} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_436230378048043/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262749} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_436230378048043/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262750} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_436230378048043/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262750} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_436230378048043/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262750} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_436230378048043/insights/post_clicks/lifetime"},"emitted_at":1671053262751} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_436230378048043/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262751} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_436230378048043/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262751} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_436230378048043/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262752} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_436230378048043/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262752} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":48}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_435637641440650/insights/post_impressions/lifetime"},"emitted_at":1671053262752} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":48}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_435637641440650/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262753} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_435637641440650/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262753} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_435637641440650/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262754} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_435637641440650/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262754} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_435637641440650/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262754} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_435637641440650/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262755} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_435637641440650/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262755} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":48}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_435637641440650/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262755} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":48}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_435637641440650/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262756} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_435637641440650/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262756} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_435637641440650/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262757} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":48}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_435637641440650/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262757} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":48}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_435637641440650/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262757} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_435637641440650/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262758} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_435637641440650/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262758} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_435637641440650/insights/post_engaged_users/lifetime"},"emitted_at":1671053262758} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_435637641440650/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262759} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_435637641440650/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262759} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_435637641440650/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262760} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_435637641440650/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262760} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_435637641440650/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262760} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_435637641440650/insights/post_clicks/lifetime"},"emitted_at":1671053262761} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_435637641440650/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262761} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_435637641440650/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262761} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_435637641440650/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262762} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_435637641440650/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262762} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":59}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_434436104894137/insights/post_impressions/lifetime"},"emitted_at":1671053262762} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":59}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_434436104894137/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262763} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_434436104894137/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262763} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_434436104894137/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262763} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_434436104894137/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262764} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_434436104894137/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262764} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_434436104894137/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262765} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_434436104894137/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262765} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":59}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_434436104894137/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262765} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":59}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_434436104894137/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262766} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_434436104894137/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262766} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_434436104894137/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262766} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":59}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_434436104894137/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262767} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":59}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_434436104894137/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262767} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_434436104894137/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262767} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_434436104894137/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262768} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_434436104894137/insights/post_engaged_users/lifetime"},"emitted_at":1671053262768} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_434436104894137/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262768} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_434436104894137/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262769} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_434436104894137/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262769} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_434436104894137/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262769} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_434436104894137/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262770} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_434436104894137/insights/post_clicks/lifetime"},"emitted_at":1671053262770} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_434436104894137/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262770} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_434436104894137/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262771} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_434436104894137/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262771} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_434436104894137/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262772} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":129}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_433753094962438/insights/post_impressions/lifetime"},"emitted_at":1671053262772} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":127}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_433753094962438/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262772} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_433753094962438/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262773} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_433753094962438/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262773} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_433753094962438/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262773} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_433753094962438/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262774} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_433753094962438/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262774} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_433753094962438/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262774} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":129}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_433753094962438/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262775} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":127}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_433753094962438/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262775} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_433753094962438/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262775} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_433753094962438/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262776} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":129}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_433753094962438/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262776} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":127}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_433753094962438/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262776} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_433753094962438/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262777} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_433753094962438/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262777} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_433753094962438/insights/post_engaged_users/lifetime"},"emitted_at":1671053262777} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_433753094962438/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262778} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_433753094962438/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262778} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_433753094962438/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262778} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_433753094962438/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262779} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_433753094962438/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262779} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_433753094962438/insights/post_clicks/lifetime"},"emitted_at":1671053262779} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_433753094962438/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262780} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_433753094962438/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262780} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_433753094962438/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262780} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_433753094962438/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262781} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":97}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_431819795155768/insights/post_impressions/lifetime"},"emitted_at":1671053262781} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":95}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_431819795155768/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262781} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_431819795155768/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262782} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_431819795155768/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262782} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_431819795155768/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262782} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_431819795155768/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262783} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_431819795155768/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262783} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_431819795155768/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262783} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":97}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_431819795155768/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262784} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":95}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_431819795155768/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262784} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_431819795155768/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262784} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_431819795155768/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262785} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":97}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_431819795155768/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262785} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":95}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_431819795155768/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262786} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_431819795155768/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262786} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_431819795155768/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262786} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_431819795155768/insights/post_engaged_users/lifetime"},"emitted_at":1671053262787} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_431819795155768/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262787} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_431819795155768/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262787} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_431819795155768/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262788} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_431819795155768/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262788} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_431819795155768/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262789} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_431819795155768/insights/post_clicks/lifetime"},"emitted_at":1671053262789} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_431819795155768/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262789} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_431819795155768/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262790} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_431819795155768/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262790} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_431819795155768/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262790} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":160}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_430637041940710/insights/post_impressions/lifetime"},"emitted_at":1671053262791} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":156}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_430637041940710/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262791} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_430637041940710/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262791} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_430637041940710/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262792} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_430637041940710/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262792} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_430637041940710/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262792} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_430637041940710/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262793} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_430637041940710/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262793} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":160}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_430637041940710/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262793} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":156}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_430637041940710/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262794} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":80}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_430637041940710/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262794} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":78}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_430637041940710/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262794} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":80}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_430637041940710/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262795} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":78}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_430637041940710/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262795} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":80}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_430637041940710/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262796} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":78}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_430637041940710/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262796} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_430637041940710/insights/post_engaged_users/lifetime"},"emitted_at":1671053262797} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_430637041940710/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262797} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_430637041940710/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262797} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_430637041940710/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262798} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_430637041940710/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262798} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_430637041940710/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262799} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_430637041940710/insights/post_clicks/lifetime"},"emitted_at":1671053262799} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_430637041940710/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262799} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_430637041940710/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262800} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_430637041940710/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262800} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_430637041940710/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262800} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":74}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_430080048663076/insights/post_impressions/lifetime"},"emitted_at":1671053262801} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":73}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_430080048663076/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262801} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_430080048663076/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262801} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_430080048663076/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262802} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_430080048663076/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262802} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_430080048663076/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262803} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_430080048663076/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262803} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_430080048663076/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262803} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":74}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_430080048663076/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262804} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":73}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_430080048663076/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262804} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_430080048663076/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262805} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_430080048663076/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262805} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":74}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_430080048663076/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262805} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":73}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_430080048663076/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262806} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_430080048663076/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262806} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_430080048663076/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262806} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_430080048663076/insights/post_engaged_users/lifetime"},"emitted_at":1671053262807} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_430080048663076/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262807} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_430080048663076/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262807} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_430080048663076/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262808} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_430080048663076/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262808} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_430080048663076/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262809} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_430080048663076/insights/post_clicks/lifetime"},"emitted_at":1671053262809} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_430080048663076/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262809} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_430080048663076/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262810} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_430080048663076/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262810} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_430080048663076/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262810} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":65}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_429668515370896/insights/post_impressions/lifetime"},"emitted_at":1671053262811} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":64}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_429668515370896/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262811} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_429668515370896/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262811} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_429668515370896/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262812} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_429668515370896/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262812} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_429668515370896/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262812} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_429668515370896/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262813} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_429668515370896/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262813} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":65}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_429668515370896/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262813} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":64}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_429668515370896/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262814} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_429668515370896/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262814} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_429668515370896/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262814} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":65}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_429668515370896/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262815} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":64}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_429668515370896/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262815} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_429668515370896/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262815} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_429668515370896/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262816} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_429668515370896/insights/post_engaged_users/lifetime"},"emitted_at":1671053262816} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_429668515370896/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262816} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_429668515370896/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262817} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_429668515370896/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262817} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_429668515370896/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262817} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_429668515370896/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262818} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_429668515370896/insights/post_clicks/lifetime"},"emitted_at":1671053262818} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_429668515370896/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262819} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_429668515370896/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262819} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_429668515370896/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262819} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_429668515370896/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262820} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":56}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_427604455577302/insights/post_impressions/lifetime"},"emitted_at":1671053262820} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":55}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_427604455577302/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262820} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_427604455577302/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262821} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_427604455577302/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262821} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_427604455577302/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262821} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_427604455577302/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262822} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_427604455577302/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262822} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_427604455577302/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262822} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":56}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_427604455577302/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262823} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":55}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_427604455577302/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262823} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_427604455577302/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262823} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_427604455577302/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262824} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":56}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_427604455577302/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262824} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":55}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_427604455577302/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262824} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_427604455577302/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262825} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_427604455577302/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262825} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_427604455577302/insights/post_engaged_users/lifetime"},"emitted_at":1671053262825} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_427604455577302/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262826} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_427604455577302/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262826} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_427604455577302/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262826} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_427604455577302/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262827} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_427604455577302/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262827} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_427604455577302/insights/post_clicks/lifetime"},"emitted_at":1671053262828} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_427604455577302/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262828} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_427604455577302/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262829} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_427604455577302/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262829} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_427604455577302/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262830} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":68}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_426360612368353/insights/post_impressions/lifetime"},"emitted_at":1671053262830} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":65}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_426360612368353/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262830} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_426360612368353/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262831} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_426360612368353/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262831} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_426360612368353/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262831} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_426360612368353/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262832} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_426360612368353/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262832} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_426360612368353/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262833} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":68}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_426360612368353/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262833} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":65}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_426360612368353/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262833} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_426360612368353/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262834} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_426360612368353/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262834} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":68}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_426360612368353/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262834} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":65}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_426360612368353/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262835} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_426360612368353/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262835} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_426360612368353/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262836} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_426360612368353/insights/post_engaged_users/lifetime"},"emitted_at":1671053262836} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_426360612368353/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262837} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_426360612368353/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262837} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_426360612368353/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262837} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_426360612368353/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262838} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_426360612368353/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262838} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_426360612368353/insights/post_clicks/lifetime"},"emitted_at":1671053262838} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_426360612368353/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262839} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"photo view":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_426360612368353/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262839} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"photo view":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_426360612368353/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262840} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_426360612368353/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262840} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":51}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_425758552428559/insights/post_impressions/lifetime"},"emitted_at":1671053262841} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":50}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_425758552428559/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262841} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_425758552428559/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262841} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_425758552428559/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262842} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_425758552428559/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262842} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_425758552428559/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262842} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_425758552428559/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262843} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_425758552428559/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262843} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":51}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_425758552428559/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262843} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":50}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_425758552428559/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262844} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_425758552428559/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262844} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_425758552428559/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262845} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":51}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_425758552428559/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262845} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":50}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_425758552428559/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262845} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_425758552428559/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262846} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_425758552428559/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262846} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_425758552428559/insights/post_engaged_users/lifetime"},"emitted_at":1671053262846} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_425758552428559/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262847} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_425758552428559/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262847} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_425758552428559/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262847} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_425758552428559/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262848} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_425758552428559/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262848} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_425758552428559/insights/post_clicks/lifetime"},"emitted_at":1671053262848} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_425758552428559/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262849} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"photo view":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_425758552428559/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262849} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"photo view":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_425758552428559/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262850} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_425758552428559/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262850} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_425351999135881/insights/post_impressions/lifetime"},"emitted_at":1671053262850} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_425351999135881/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262851} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_425351999135881/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262851} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_425351999135881/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262851} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_425351999135881/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262852} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_425351999135881/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262852} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_425351999135881/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262853} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_425351999135881/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262853} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_425351999135881/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262853} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_425351999135881/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262854} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_425351999135881/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262854} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_425351999135881/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262854} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_425351999135881/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262855} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_425351999135881/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262855} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_425351999135881/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262855} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_425351999135881/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262856} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_425351999135881/insights/post_engaged_users/lifetime"},"emitted_at":1671053262856} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_425351999135881/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262856} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_425351999135881/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262857} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_425351999135881/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262857} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_425351999135881/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262858} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_425351999135881/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262858} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_425351999135881/insights/post_clicks/lifetime"},"emitted_at":1671053262858} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_425351999135881/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262859} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_425351999135881/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262859} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_425351999135881/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262859} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_425351999135881/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262860} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_421579992846415/insights/post_impressions/lifetime"},"emitted_at":1671053262860} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_421579992846415/insights/post_impressions_unique/lifetime"},"emitted_at":1671053262860} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_421579992846415/insights/post_impressions_paid/lifetime"},"emitted_at":1671053262861} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_421579992846415/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053262861} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_421579992846415/insights/post_impressions_fan/lifetime"},"emitted_at":1671053262861} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_421579992846415/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053262862} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_421579992846415/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053262862} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_421579992846415/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053262863} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_421579992846415/insights/post_impressions_organic/lifetime"},"emitted_at":1671053262863} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_421579992846415/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053262863} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_421579992846415/insights/post_impressions_viral/lifetime"},"emitted_at":1671053262864} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_421579992846415/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053262864} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_421579992846415/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053262865} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_421579992846415/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053262865} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_421579992846415/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053262865} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_421579992846415/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053262866} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_421579992846415/insights/post_engaged_users/lifetime"},"emitted_at":1671053262866} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_421579992846415/insights/post_negative_feedback/lifetime"},"emitted_at":1671053262867} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_421579992846415/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053262867} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_421579992846415/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053262867} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_421579992846415/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053262868} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_421579992846415/insights/post_engaged_fan/lifetime"},"emitted_at":1671053262868} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_421579992846415/insights/post_clicks/lifetime"},"emitted_at":1671053262868} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_421579992846415/insights/post_clicks_unique/lifetime"},"emitted_at":1671053262869} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_421579992846415/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053262869} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_421579992846415/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053262869} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_421579992846415/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053262870} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":54}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_417138853290529/insights/post_impressions/lifetime"},"emitted_at":1671053265698} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_417138853290529/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265699} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_417138853290529/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265699} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_417138853290529/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265700} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_417138853290529/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265700} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_417138853290529/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265701} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_417138853290529/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265701} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_417138853290529/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265702} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":54}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_417138853290529/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265702} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_417138853290529/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265703} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_417138853290529/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265703} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_417138853290529/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265704} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":54}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_417138853290529/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265704} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_417138853290529/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265705} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_417138853290529/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265706} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_417138853290529/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265706} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_417138853290529/insights/post_engaged_users/lifetime"},"emitted_at":1671053265707} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_417138853290529/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265707} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_417138853290529/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265708} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_417138853290529/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265708} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_417138853290529/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265709} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_417138853290529/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265709} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_417138853290529/insights/post_clicks/lifetime"},"emitted_at":1671053265710} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_417138853290529/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265710} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_417138853290529/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265711} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_417138853290529/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265711} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_417138853290529/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265712} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_416743849996696/insights/post_impressions/lifetime"},"emitted_at":1671053265712} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_416743849996696/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265713} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_416743849996696/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265713} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_416743849996696/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265714} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_416743849996696/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265714} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_416743849996696/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265715} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_416743849996696/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265715} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_416743849996696/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265716} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_416743849996696/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265716} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_416743849996696/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265717} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_416743849996696/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265718} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_416743849996696/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265718} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_416743849996696/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265718} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_416743849996696/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265719} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_416743849996696/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265719} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_416743849996696/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265720} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_416743849996696/insights/post_engaged_users/lifetime"},"emitted_at":1671053265720} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_416743849996696/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265720} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_416743849996696/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265721} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_416743849996696/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265721} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_416743849996696/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265722} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_416743849996696/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265722} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_416743849996696/insights/post_clicks/lifetime"},"emitted_at":1671053265722} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_416743849996696/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265723} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_416743849996696/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265723} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_416743849996696/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265724} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2,"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_416743849996696/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265724} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_413474493656965/insights/post_impressions/lifetime"},"emitted_at":1671053265724} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_413474493656965/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265725} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_413474493656965/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265725} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_413474493656965/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265726} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_413474493656965/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265726} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_413474493656965/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265727} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_413474493656965/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265727} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_413474493656965/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265728} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_413474493656965/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265728} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_413474493656965/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265728} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_413474493656965/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265729} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_413474493656965/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265729} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_413474493656965/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265730} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":43}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_413474493656965/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265731} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_413474493656965/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265731} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_413474493656965/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265731} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_413474493656965/insights/post_engaged_users/lifetime"},"emitted_at":1671053265732} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_413474493656965/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265732} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_413474493656965/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265733} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_413474493656965/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265733} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_413474493656965/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265733} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_413474493656965/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265734} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_413474493656965/insights/post_clicks/lifetime"},"emitted_at":1671053265734} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_413474493656965/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265735} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_413474493656965/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265735} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_413474493656965/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265735} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_413474493656965/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265736} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_412865993717815/insights/post_impressions/lifetime"},"emitted_at":1671053265736} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_412865993717815/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265737} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_412865993717815/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265737} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_412865993717815/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265738} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_412865993717815/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265738} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_412865993717815/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265738} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_412865993717815/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265739} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_412865993717815/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265739} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_412865993717815/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265740} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_412865993717815/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265740} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_412865993717815/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265741} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_412865993717815/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265743} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_412865993717815/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265743} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":44}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_412865993717815/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265743} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_412865993717815/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265744} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_412865993717815/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265744} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_412865993717815/insights/post_engaged_users/lifetime"},"emitted_at":1671053265745} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_412865993717815/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265745} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_412865993717815/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265746} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_412865993717815/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265746} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_412865993717815/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265746} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_412865993717815/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265747} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_412865993717815/insights/post_clicks/lifetime"},"emitted_at":1671053265747} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_412865993717815/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265748} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_412865993717815/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265748} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_412865993717815/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265749} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_412865993717815/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265749} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_412464543757960/insights/post_impressions/lifetime"},"emitted_at":1671053265749} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_412464543757960/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265750} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_412464543757960/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265750} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_412464543757960/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265750} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_412464543757960/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265751} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_412464543757960/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265751} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_412464543757960/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265751} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_412464543757960/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265752} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_412464543757960/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265752} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_412464543757960/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265752} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_412464543757960/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265753} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_412464543757960/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265753} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_412464543757960/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265753} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":42}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_412464543757960/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265754} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_412464543757960/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265754} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_412464543757960/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265755} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_412464543757960/insights/post_engaged_users/lifetime"},"emitted_at":1671053265755} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_412464543757960/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265755} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_412464543757960/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265756} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_412464543757960/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265756} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_412464543757960/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265756} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_412464543757960/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265757} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_412464543757960/insights/post_clicks/lifetime"},"emitted_at":1671053265757} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_412464543757960/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265758} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_412464543757960/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265758} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_412464543757960/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265759} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_412464543757960/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265759} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_410291417308606/insights/post_impressions/lifetime"},"emitted_at":1671053265760} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_410291417308606/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265760} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_410291417308606/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265760} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_410291417308606/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265761} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_410291417308606/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265761} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_410291417308606/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265761} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_410291417308606/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265762} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_410291417308606/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265762} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_410291417308606/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265763} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_410291417308606/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265763} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_410291417308606/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265763} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_410291417308606/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265764} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_410291417308606/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265764} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_410291417308606/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265765} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_410291417308606/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265765} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_410291417308606/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265765} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_410291417308606/insights/post_engaged_users/lifetime"},"emitted_at":1671053265766} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_410291417308606/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265766} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_410291417308606/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265767} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_410291417308606/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265767} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_410291417308606/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265768} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_410291417308606/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265768} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_410291417308606/insights/post_clicks/lifetime"},"emitted_at":1671053265768} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_410291417308606/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265769} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_410291417308606/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265769} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_410291417308606/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265770} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_410291417308606/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265770} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_409067054097709/insights/post_impressions/lifetime"},"emitted_at":1671053265770} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_409067054097709/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265771} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_409067054097709/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265771} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_409067054097709/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265771} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_409067054097709/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265772} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_409067054097709/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265772} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_409067054097709/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265772} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_409067054097709/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265773} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_409067054097709/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265773} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_409067054097709/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265773} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_409067054097709/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265774} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_409067054097709/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265774} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_409067054097709/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265775} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":38}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_409067054097709/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265775} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_409067054097709/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265775} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_409067054097709/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265776} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_409067054097709/insights/post_engaged_users/lifetime"},"emitted_at":1671053265776} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_409067054097709/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265776} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_409067054097709/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265777} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_409067054097709/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265777} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_409067054097709/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265778} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_409067054097709/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265778} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_409067054097709/insights/post_clicks/lifetime"},"emitted_at":1671053265779} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_409067054097709/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265779} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_409067054097709/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265779} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_409067054097709/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265780} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":3,"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_409067054097709/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265780} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_408493467488401/insights/post_impressions/lifetime"},"emitted_at":1671053265781} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_408493467488401/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265781} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_408493467488401/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265782} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_408493467488401/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265782} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_408493467488401/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265783} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_408493467488401/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265783} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_408493467488401/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265784} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_408493467488401/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265784} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_408493467488401/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265784} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_408493467488401/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265785} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_408493467488401/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265785} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_408493467488401/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265785} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_408493467488401/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265786} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_408493467488401/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265786} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_408493467488401/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265787} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_408493467488401/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265787} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_408493467488401/insights/post_engaged_users/lifetime"},"emitted_at":1671053265787} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_408493467488401/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265788} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_408493467488401/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265788} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_408493467488401/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265789} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_408493467488401/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265789} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_408493467488401/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265790} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_408493467488401/insights/post_clicks/lifetime"},"emitted_at":1671053265790} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_408493467488401/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265790} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_408493467488401/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265791} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_408493467488401/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265791} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_408493467488401/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265791} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_408061804198234/insights/post_impressions/lifetime"},"emitted_at":1671053265792} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_408061804198234/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265792} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_408061804198234/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265793} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_408061804198234/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265793} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_408061804198234/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265793} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_408061804198234/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265794} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_408061804198234/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265794} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_408061804198234/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265794} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_408061804198234/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265795} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_408061804198234/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265795} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_408061804198234/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265795} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_408061804198234/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265796} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_408061804198234/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265796} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_408061804198234/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265796} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_408061804198234/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265797} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_408061804198234/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265797} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_408061804198234/insights/post_engaged_users/lifetime"},"emitted_at":1671053265798} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_408061804198234/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265798} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_408061804198234/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265798} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_408061804198234/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265799} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_408061804198234/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265799} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_408061804198234/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265799} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_408061804198234/insights/post_clicks/lifetime"},"emitted_at":1671053265800} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_408061804198234/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265800} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_408061804198234/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265800} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_408061804198234/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265801} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_408061804198234/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265801} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_405428561128225/insights/post_impressions/lifetime"},"emitted_at":1671053265801} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_405428561128225/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265802} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_405428561128225/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265802} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_405428561128225/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265802} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_405428561128225/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265803} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_405428561128225/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265803} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_405428561128225/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265803} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_405428561128225/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265804} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_405428561128225/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265804} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_405428561128225/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265804} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_405428561128225/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265805} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_405428561128225/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265805} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_405428561128225/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265806} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_405428561128225/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265806} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_405428561128225/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265806} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_405428561128225/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265807} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_405428561128225/insights/post_engaged_users/lifetime"},"emitted_at":1671053265807} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_405428561128225/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265807} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_405428561128225/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265808} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_405428561128225/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265808} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_405428561128225/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265808} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_405428561128225/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265809} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_405428561128225/insights/post_clicks/lifetime"},"emitted_at":1671053265809} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_405428561128225/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265809} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_405428561128225/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265810} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_405428561128225/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265810} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_405428561128225/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265811} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_405024864501928/insights/post_impressions/lifetime"},"emitted_at":1671053265811} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_405024864501928/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265811} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_405024864501928/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265812} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_405024864501928/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265812} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_405024864501928/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265812} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_405024864501928/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265813} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_405024864501928/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265813} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_405024864501928/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265813} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_405024864501928/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265814} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_405024864501928/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265814} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_405024864501928/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265814} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_405024864501928/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265815} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_405024864501928/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265815} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_405024864501928/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265815} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_405024864501928/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265816} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_405024864501928/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265816} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_405024864501928/insights/post_engaged_users/lifetime"},"emitted_at":1671053265816} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_405024864501928/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265817} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_405024864501928/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265817} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_405024864501928/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265818} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_405024864501928/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265818} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_405024864501928/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265819} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_405024864501928/insights/post_clicks/lifetime"},"emitted_at":1671053265819} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_405024864501928/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265819} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"video play":2,"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_405024864501928/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265820} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"video play":1,"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_405024864501928/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265820} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_405024864501928/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265820} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_404833844521030/insights/post_impressions/lifetime"},"emitted_at":1671053265821} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_404833844521030/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265821} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_404833844521030/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265821} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_404833844521030/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265822} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_404833844521030/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265822} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_404833844521030/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265822} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_404833844521030/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265823} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_404833844521030/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265823} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_404833844521030/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265823} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_404833844521030/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265824} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_404833844521030/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265824} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_404833844521030/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265824} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_404833844521030/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265825} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_404833844521030/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265825} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_404833844521030/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265825} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_404833844521030/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265826} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_404833844521030/insights/post_engaged_users/lifetime"},"emitted_at":1671053265826} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_404833844521030/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265826} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_404833844521030/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265827} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_404833844521030/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265827} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_404833844521030/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265827} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_404833844521030/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265828} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_404833844521030/insights/post_clicks/lifetime"},"emitted_at":1671053265829} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_404833844521030/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265829} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_404833844521030/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265829} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_404833844521030/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265830} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_404833844521030/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265830} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_404247984579616/insights/post_impressions/lifetime"},"emitted_at":1671053265830} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_404247984579616/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265831} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_404247984579616/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265831} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_404247984579616/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265831} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_404247984579616/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265832} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_404247984579616/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265832} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_404247984579616/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265833} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_404247984579616/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265833} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_404247984579616/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265833} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_404247984579616/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265834} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_404247984579616/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265834} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_404247984579616/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265835} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_404247984579616/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265835} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_404247984579616/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265835} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_404247984579616/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265836} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_404247984579616/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265836} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_404247984579616/insights/post_engaged_users/lifetime"},"emitted_at":1671053265836} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_404247984579616/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265837} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_404247984579616/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265837} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_404247984579616/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265837} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_404247984579616/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265838} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_404247984579616/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265838} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_404247984579616/insights/post_clicks/lifetime"},"emitted_at":1671053265839} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_404247984579616/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265839} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_404247984579616/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265839} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_404247984579616/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265840} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_404247984579616/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265840} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_403839834620431/insights/post_impressions/lifetime"},"emitted_at":1671053265841} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_403839834620431/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265841} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_403839834620431/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265842} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_403839834620431/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265842} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_403839834620431/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265842} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_403839834620431/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265843} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_403839834620431/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265843} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_403839834620431/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265844} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_403839834620431/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265844} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_403839834620431/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265844} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_403839834620431/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265845} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_403839834620431/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265845} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_403839834620431/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265845} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_403839834620431/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265846} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_403839834620431/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265846} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_403839834620431/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265846} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_403839834620431/insights/post_engaged_users/lifetime"},"emitted_at":1671053265847} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_403839834620431/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265847} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_403839834620431/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265847} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_403839834620431/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265848} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_403839834620431/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265848} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_403839834620431/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265849} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_403839834620431/insights/post_clicks/lifetime"},"emitted_at":1671053265849} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_403839834620431/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265849} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_403839834620431/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265850} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_403839834620431/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265850} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_403839834620431/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265851} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_401888728148875/insights/post_impressions/lifetime"},"emitted_at":1671053265851} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_401888728148875/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265851} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_401888728148875/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265852} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_401888728148875/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265852} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_401888728148875/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265852} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_401888728148875/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265853} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_401888728148875/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265853} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_401888728148875/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265853} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_401888728148875/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265854} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_401888728148875/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265854} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_401888728148875/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265855} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_401888728148875/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265855} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_401888728148875/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265855} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_401888728148875/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265856} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_401888728148875/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265856} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_401888728148875/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265856} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":5}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_401888728148875/insights/post_engaged_users/lifetime"},"emitted_at":1671053265857} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_401888728148875/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265857} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_401888728148875/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265858} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_401888728148875/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265858} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_401888728148875/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265858} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_401888728148875/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265859} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_401888728148875/insights/post_clicks/lifetime"},"emitted_at":1671053265859} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_401888728148875/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265859} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":3}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_401888728148875/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265860} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_401888728148875/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265860} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":3}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_401888728148875/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265861} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_401160348221713/insights/post_impressions/lifetime"},"emitted_at":1671053265861} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_401160348221713/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265861} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_401160348221713/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265862} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_401160348221713/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265862} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_401160348221713/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265862} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_401160348221713/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265863} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_401160348221713/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265863} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_401160348221713/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265863} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_401160348221713/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265864} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_401160348221713/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265864} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_401160348221713/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265864} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_401160348221713/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265865} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_401160348221713/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265865} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_401160348221713/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265865} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_401160348221713/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265866} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_401160348221713/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265866} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_401160348221713/insights/post_engaged_users/lifetime"},"emitted_at":1671053265866} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_401160348221713/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265867} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_401160348221713/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265867} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_401160348221713/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265867} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_401160348221713/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265868} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_401160348221713/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265868} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_401160348221713/insights/post_clicks/lifetime"},"emitted_at":1671053265869} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_401160348221713/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265869} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_401160348221713/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265870} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_401160348221713/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265870} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_401160348221713/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265871} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_400520764952338/insights/post_impressions/lifetime"},"emitted_at":1671053265871} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_400520764952338/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265871} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_400520764952338/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265872} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_400520764952338/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265872} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_400520764952338/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265872} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_400520764952338/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265873} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_400520764952338/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265873} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_400520764952338/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265873} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_400520764952338/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265874} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_400520764952338/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265874} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_400520764952338/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265874} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_400520764952338/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265875} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_400520764952338/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265875} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_400520764952338/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265875} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_400520764952338/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265876} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_400520764952338/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265876} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_400520764952338/insights/post_engaged_users/lifetime"},"emitted_at":1671053265876} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_400520764952338/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265877} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_400520764952338/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265877} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_400520764952338/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265877} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_400520764952338/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265878} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_400520764952338/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265878} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_400520764952338/insights/post_clicks/lifetime"},"emitted_at":1671053265879} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_400520764952338/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265879} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_400520764952338/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265880} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_400520764952338/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265880} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_400520764952338/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265880} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_399904118347336/insights/post_impressions/lifetime"},"emitted_at":1671053265881} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_399904118347336/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265881} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_399904118347336/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265882} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_399904118347336/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265882} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_399904118347336/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265882} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_399904118347336/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265883} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_399904118347336/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265883} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_399904118347336/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265883} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_399904118347336/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265884} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_399904118347336/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265884} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_399904118347336/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265884} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_399904118347336/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265885} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_399904118347336/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265885} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_399904118347336/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265885} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_399904118347336/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265886} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_399904118347336/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265886} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_399904118347336/insights/post_engaged_users/lifetime"},"emitted_at":1671053265887} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_399904118347336/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265887} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_399904118347336/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265887} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_399904118347336/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265888} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_399904118347336/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265888} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_399904118347336/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265888} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_399904118347336/insights/post_clicks/lifetime"},"emitted_at":1671053265889} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_399904118347336/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265889} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_399904118347336/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265889} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_399904118347336/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265890} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_399904118347336/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265890} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_399489191722162/insights/post_impressions/lifetime"},"emitted_at":1671053265890} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_399489191722162/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265891} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_399489191722162/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265891} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_399489191722162/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265891} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_399489191722162/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265892} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_399489191722162/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265892} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_399489191722162/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265893} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_399489191722162/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265893} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_399489191722162/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265893} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_399489191722162/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265894} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_399489191722162/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265894} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_399489191722162/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265894} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_399489191722162/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265895} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_399489191722162/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265895} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_399489191722162/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265895} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_399489191722162/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265896} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_399489191722162/insights/post_engaged_users/lifetime"},"emitted_at":1671053265896} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_399489191722162/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265896} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_399489191722162/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265897} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_399489191722162/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265897} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_399489191722162/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265897} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_399489191722162/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265898} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_399489191722162/insights/post_clicks/lifetime"},"emitted_at":1671053265898} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_399489191722162/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265899} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_399489191722162/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265899} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_399489191722162/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265899} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_399489191722162/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265900} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_397453321925749/insights/post_impressions/lifetime"},"emitted_at":1671053265900} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_397453321925749/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265900} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_397453321925749/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265901} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_397453321925749/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265901} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_397453321925749/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265901} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_397453321925749/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265902} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_397453321925749/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265902} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_397453321925749/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265902} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_397453321925749/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265903} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_397453321925749/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265903} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_397453321925749/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265903} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_397453321925749/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265904} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_397453321925749/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265904} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_397453321925749/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265904} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_397453321925749/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265905} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_397453321925749/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265905} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_397453321925749/insights/post_engaged_users/lifetime"},"emitted_at":1671053265905} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_397453321925749/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265906} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_397453321925749/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265906} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_397453321925749/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265906} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_397453321925749/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265907} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_397453321925749/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265907} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_397453321925749/insights/post_clicks/lifetime"},"emitted_at":1671053265908} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_397453321925749/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265908} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_397453321925749/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265909} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_397453321925749/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265909} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_397453321925749/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265910} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_396834321987649/insights/post_impressions/lifetime"},"emitted_at":1671053265910} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_396834321987649/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265910} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_396834321987649/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265911} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_396834321987649/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265911} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_396834321987649/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265912} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_396834321987649/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265912} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_396834321987649/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265912} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_396834321987649/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265913} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_396834321987649/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265913} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_396834321987649/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265913} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_396834321987649/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265914} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_396834321987649/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265914} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_396834321987649/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265915} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_396834321987649/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265915} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_396834321987649/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265915} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_396834321987649/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265916} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_396834321987649/insights/post_engaged_users/lifetime"},"emitted_at":1671053265916} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_396834321987649/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265916} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_396834321987649/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265917} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_396834321987649/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265917} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_396834321987649/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265917} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":4}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_396834321987649/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265918} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_396834321987649/insights/post_clicks/lifetime"},"emitted_at":1671053265918} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_396834321987649/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265919} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_396834321987649/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265919} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_396834321987649/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265919} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_396834321987649/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265920} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_396185165385898/insights/post_impressions/lifetime"},"emitted_at":1671053265920} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_396185165385898/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265920} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_396185165385898/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265921} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_396185165385898/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265921} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_396185165385898/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265921} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_396185165385898/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265922} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_396185165385898/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265922} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_396185165385898/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265923} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_396185165385898/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265923} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_396185165385898/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265923} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_396185165385898/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265924} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_396185165385898/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265924} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_396185165385898/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265924} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_396185165385898/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265925} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_396185165385898/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265925} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_396185165385898/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265925} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_396185165385898/insights/post_engaged_users/lifetime"},"emitted_at":1671053265926} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_396185165385898/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265926} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_396185165385898/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265926} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_396185165385898/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265927} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_396185165385898/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265927} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_396185165385898/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265928} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_396185165385898/insights/post_clicks/lifetime"},"emitted_at":1671053265928} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_396185165385898/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265928} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_396185165385898/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265929} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_396185165385898/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265929} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_396185165385898/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265929} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_395575748780173/insights/post_impressions/lifetime"},"emitted_at":1671053265930} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_395575748780173/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265930} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_395575748780173/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265930} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_395575748780173/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265931} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_395575748780173/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265931} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_395575748780173/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265931} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_395575748780173/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265932} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_395575748780173/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265932} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_395575748780173/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265933} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_395575748780173/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265933} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_395575748780173/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265933} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_395575748780173/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265934} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_395575748780173/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265934} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_395575748780173/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265934} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_395575748780173/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265935} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_395575748780173/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265935} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_395575748780173/insights/post_engaged_users/lifetime"},"emitted_at":1671053265935} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_395575748780173/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265936} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_395575748780173/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265936} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_395575748780173/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265936} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_395575748780173/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265937} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_395575748780173/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265937} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_395575748780173/insights/post_clicks/lifetime"},"emitted_at":1671053265937} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_395575748780173/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265938} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_395575748780173/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265938} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_395575748780173/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265938} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_395575748780173/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265939} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_395187825485632/insights/post_impressions/lifetime"},"emitted_at":1671053265939} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_395187825485632/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265939} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_395187825485632/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265940} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_395187825485632/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265940} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_395187825485632/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265940} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_395187825485632/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265941} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_395187825485632/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265941} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_395187825485632/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265941} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_395187825485632/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265942} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_395187825485632/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265942} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_395187825485632/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265943} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_395187825485632/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265943} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_395187825485632/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265943} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_395187825485632/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265944} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_395187825485632/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265944} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_395187825485632/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265945} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_395187825485632/insights/post_engaged_users/lifetime"},"emitted_at":1671053265945} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_395187825485632/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265945} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_395187825485632/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265946} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_395187825485632/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265946} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_395187825485632/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265946} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_395187825485632/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265947} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_395187825485632/insights/post_clicks/lifetime"},"emitted_at":1671053265947} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_395187825485632/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265947} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_395187825485632/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265948} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_395187825485632/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265948} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_395187825485632/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265948} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_393114835692931/insights/post_impressions/lifetime"},"emitted_at":1671053265949} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_393114835692931/insights/post_impressions_unique/lifetime"},"emitted_at":1671053265949} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_393114835692931/insights/post_impressions_paid/lifetime"},"emitted_at":1671053265950} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_393114835692931/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053265950} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_393114835692931/insights/post_impressions_fan/lifetime"},"emitted_at":1671053265950} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_393114835692931/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053265951} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_393114835692931/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053265951} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_393114835692931/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053265951} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_393114835692931/insights/post_impressions_organic/lifetime"},"emitted_at":1671053265952} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_393114835692931/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053265952} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_393114835692931/insights/post_impressions_viral/lifetime"},"emitted_at":1671053265953} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_393114835692931/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053265953} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_393114835692931/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053265953} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_393114835692931/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053265954} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_393114835692931/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053265954} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_393114835692931/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053265954} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_393114835692931/insights/post_engaged_users/lifetime"},"emitted_at":1671053265955} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_393114835692931/insights/post_negative_feedback/lifetime"},"emitted_at":1671053265955} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_393114835692931/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053265956} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_393114835692931/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053265956} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_393114835692931/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053265956} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_393114835692931/insights/post_engaged_fan/lifetime"},"emitted_at":1671053265957} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_393114835692931/insights/post_clicks/lifetime"},"emitted_at":1671053265957} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_393114835692931/insights/post_clicks_unique/lifetime"},"emitted_at":1671053265958} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_393114835692931/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053265958} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_393114835692931/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053265958} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_393114835692931/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053265959} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_392432745761140/insights/post_impressions/lifetime"},"emitted_at":1671053268922} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_392432745761140/insights/post_impressions_unique/lifetime"},"emitted_at":1671053268923} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_392432745761140/insights/post_impressions_paid/lifetime"},"emitted_at":1671053268923} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_392432745761140/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053268924} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_392432745761140/insights/post_impressions_fan/lifetime"},"emitted_at":1671053268924} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_392432745761140/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053268924} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_392432745761140/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053268925} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_392432745761140/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053268925} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_392432745761140/insights/post_impressions_organic/lifetime"},"emitted_at":1671053268926} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_392432745761140/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053268926} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_392432745761140/insights/post_impressions_viral/lifetime"},"emitted_at":1671053268926} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_392432745761140/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053268927} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_392432745761140/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053268927} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_392432745761140/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053268927} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_392432745761140/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053268928} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_392432745761140/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053268929} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_392432745761140/insights/post_engaged_users/lifetime"},"emitted_at":1671053268929} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_392432745761140/insights/post_negative_feedback/lifetime"},"emitted_at":1671053268930} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_392432745761140/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053268930} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_392432745761140/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053268931} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_392432745761140/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053268931} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_392432745761140/insights/post_engaged_fan/lifetime"},"emitted_at":1671053268931} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_392432745761140/insights/post_clicks/lifetime"},"emitted_at":1671053268932} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_392432745761140/insights/post_clicks_unique/lifetime"},"emitted_at":1671053268932} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_392432745761140/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053268932} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_392432745761140/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053268933} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_392432745761140/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053268934} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":147}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_391727432498338/insights/post_impressions/lifetime"},"emitted_at":1671053268934} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":142}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_391727432498338/insights/post_impressions_unique/lifetime"},"emitted_at":1671053268934} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_391727432498338/insights/post_impressions_paid/lifetime"},"emitted_at":1671053268935} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_391727432498338/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053268935} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_391727432498338/insights/post_impressions_fan/lifetime"},"emitted_at":1671053268936} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_391727432498338/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053268936} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_391727432498338/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053268937} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_391727432498338/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053268937} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":147}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_391727432498338/insights/post_impressions_organic/lifetime"},"emitted_at":1671053268938} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":142}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_391727432498338/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053268938} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":114}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_391727432498338/insights/post_impressions_viral/lifetime"},"emitted_at":1671053268938} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":110}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_391727432498338/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053268939} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_391727432498338/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053268939} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_391727432498338/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053268939} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":114}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_391727432498338/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053268940} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":110}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_391727432498338/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053268940} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":5}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_391727432498338/insights/post_engaged_users/lifetime"},"emitted_at":1671053268941} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_391727432498338/insights/post_negative_feedback/lifetime"},"emitted_at":1671053268941} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_391727432498338/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053268941} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_391727432498338/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053268942} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_391727432498338/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053268942} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_391727432498338/insights/post_engaged_fan/lifetime"},"emitted_at":1671053268943} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_391727432498338/insights/post_clicks/lifetime"},"emitted_at":1671053268943} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_391727432498338/insights/post_clicks_unique/lifetime"},"emitted_at":1671053268943} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_391727432498338/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053268944} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_391727432498338/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053268944} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_391727432498338/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053268944} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_391095985894816/insights/post_impressions/lifetime"},"emitted_at":1671053268945} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_391095985894816/insights/post_impressions_unique/lifetime"},"emitted_at":1671053268945} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_391095985894816/insights/post_impressions_paid/lifetime"},"emitted_at":1671053268945} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_391095985894816/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053268946} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_391095985894816/insights/post_impressions_fan/lifetime"},"emitted_at":1671053268946} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_391095985894816/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053268947} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_391095985894816/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053268948} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_391095985894816/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053268948} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_391095985894816/insights/post_impressions_organic/lifetime"},"emitted_at":1671053268949} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_391095985894816/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053268949} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_391095985894816/insights/post_impressions_viral/lifetime"},"emitted_at":1671053268949} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_391095985894816/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053268950} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_391095985894816/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053268950} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_391095985894816/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053268951} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_391095985894816/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053268951} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_391095985894816/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053268952} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_391095985894816/insights/post_engaged_users/lifetime"},"emitted_at":1671053268952} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_391095985894816/insights/post_negative_feedback/lifetime"},"emitted_at":1671053268952} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_391095985894816/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053268953} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_391095985894816/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053268953} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_391095985894816/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053268954} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_391095985894816/insights/post_engaged_fan/lifetime"},"emitted_at":1671053268954} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_391095985894816/insights/post_clicks/lifetime"},"emitted_at":1671053268955} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_391095985894816/insights/post_clicks_unique/lifetime"},"emitted_at":1671053268955} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_391095985894816/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053268956} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_391095985894816/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053268956} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_391095985894816/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053268957} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_390640222607059/insights/post_impressions/lifetime"},"emitted_at":1671053268957} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_390640222607059/insights/post_impressions_unique/lifetime"},"emitted_at":1671053268957} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_390640222607059/insights/post_impressions_paid/lifetime"},"emitted_at":1671053268958} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_390640222607059/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053268958} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_390640222607059/insights/post_impressions_fan/lifetime"},"emitted_at":1671053268958} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_390640222607059/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053268959} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_390640222607059/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053268959} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_390640222607059/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053268959} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_390640222607059/insights/post_impressions_organic/lifetime"},"emitted_at":1671053268960} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_390640222607059/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053268960} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_390640222607059/insights/post_impressions_viral/lifetime"},"emitted_at":1671053268961} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_390640222607059/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053268961} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_390640222607059/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053268962} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_390640222607059/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053268962} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_390640222607059/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053268963} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_390640222607059/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053268963} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_390640222607059/insights/post_engaged_users/lifetime"},"emitted_at":1671053268964} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_390640222607059/insights/post_negative_feedback/lifetime"},"emitted_at":1671053268964} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_390640222607059/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053268965} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_390640222607059/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053268965} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_390640222607059/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053268965} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_390640222607059/insights/post_engaged_fan/lifetime"},"emitted_at":1671053268966} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_390640222607059/insights/post_clicks/lifetime"},"emitted_at":1671053268966} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_390640222607059/insights/post_clicks_unique/lifetime"},"emitted_at":1671053268966} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_390640222607059/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053268967} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_390640222607059/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053268967} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_390640222607059/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053268968} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_388302666174148/insights/post_impressions/lifetime"},"emitted_at":1671053268968} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_388302666174148/insights/post_impressions_unique/lifetime"},"emitted_at":1671053268968} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_388302666174148/insights/post_impressions_paid/lifetime"},"emitted_at":1671053268969} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_388302666174148/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053268969} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_388302666174148/insights/post_impressions_fan/lifetime"},"emitted_at":1671053268970} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_388302666174148/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053268970} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_388302666174148/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053268971} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_388302666174148/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053268971} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_388302666174148/insights/post_impressions_organic/lifetime"},"emitted_at":1671053268972} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_388302666174148/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053268972} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_388302666174148/insights/post_impressions_viral/lifetime"},"emitted_at":1671053268972} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_388302666174148/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053268973} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_388302666174148/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053268973} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_388302666174148/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053268973} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_388302666174148/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053268974} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_388302666174148/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053268974} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_388302666174148/insights/post_engaged_users/lifetime"},"emitted_at":1671053268975} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_388302666174148/insights/post_negative_feedback/lifetime"},"emitted_at":1671053268975} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_388302666174148/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053268975} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_388302666174148/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053268976} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_388302666174148/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053268976} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_388302666174148/insights/post_engaged_fan/lifetime"},"emitted_at":1671053268976} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_388302666174148/insights/post_clicks/lifetime"},"emitted_at":1671053268977} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_388302666174148/insights/post_clicks_unique/lifetime"},"emitted_at":1671053268978} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_388302666174148/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053268979} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_388302666174148/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053268980} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_388302666174148/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053268980} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_387631176241297/insights/post_impressions/lifetime"},"emitted_at":1671053268981} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_387631176241297/insights/post_impressions_unique/lifetime"},"emitted_at":1671053268982} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_387631176241297/insights/post_impressions_paid/lifetime"},"emitted_at":1671053268982} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_387631176241297/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053268982} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_387631176241297/insights/post_impressions_fan/lifetime"},"emitted_at":1671053268983} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_387631176241297/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053268983} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_387631176241297/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053268984} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_387631176241297/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053268984} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_387631176241297/insights/post_impressions_organic/lifetime"},"emitted_at":1671053268984} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_387631176241297/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053268985} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_387631176241297/insights/post_impressions_viral/lifetime"},"emitted_at":1671053268985} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_387631176241297/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053268986} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_387631176241297/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053268986} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_387631176241297/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053268987} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_387631176241297/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053268987} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_387631176241297/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053268988} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_387631176241297/insights/post_engaged_users/lifetime"},"emitted_at":1671053268989} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_387631176241297/insights/post_negative_feedback/lifetime"},"emitted_at":1671053268989} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_387631176241297/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053268990} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_387631176241297/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053268990} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_387631176241297/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053268991} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_387631176241297/insights/post_engaged_fan/lifetime"},"emitted_at":1671053268991} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_387631176241297/insights/post_clicks/lifetime"},"emitted_at":1671053268992} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_387631176241297/insights/post_clicks_unique/lifetime"},"emitted_at":1671053268992} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_387631176241297/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053268992} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_387631176241297/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053268993} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_387631176241297/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053268993} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_386993936305021/insights/post_impressions/lifetime"},"emitted_at":1671053268994} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_386993936305021/insights/post_impressions_unique/lifetime"},"emitted_at":1671053268994} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_386993936305021/insights/post_impressions_paid/lifetime"},"emitted_at":1671053268994} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_386993936305021/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053268995} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_386993936305021/insights/post_impressions_fan/lifetime"},"emitted_at":1671053268995} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_386993936305021/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053268996} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_386993936305021/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053268996} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_386993936305021/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053268996} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_386993936305021/insights/post_impressions_organic/lifetime"},"emitted_at":1671053268997} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_386993936305021/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053268997} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_386993936305021/insights/post_impressions_viral/lifetime"},"emitted_at":1671053268997} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_386993936305021/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053268998} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_386993936305021/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053268998} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_386993936305021/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053268998} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_386993936305021/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053268999} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_386993936305021/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053268999} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_386993936305021/insights/post_engaged_users/lifetime"},"emitted_at":1671053268999} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_386993936305021/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269000} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_386993936305021/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269000} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_386993936305021/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269001} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_386993936305021/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269001} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_386993936305021/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269002} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_386993936305021/insights/post_clicks/lifetime"},"emitted_at":1671053269002} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_386993936305021/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269003} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_386993936305021/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269003} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_386993936305021/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269004} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_386993936305021/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269004} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":158}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_386370193034062/insights/post_impressions/lifetime"},"emitted_at":1671053269005} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":156}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_386370193034062/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269005} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_386370193034062/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269005} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_386370193034062/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269006} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_386370193034062/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269006} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_386370193034062/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269007} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_386370193034062/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269007} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_386370193034062/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269007} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":158}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_386370193034062/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269010} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":156}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_386370193034062/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269010} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":126}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_386370193034062/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269011} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":125}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_386370193034062/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269013} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_386370193034062/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269014} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_386370193034062/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269014} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":126}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_386370193034062/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269016} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":125}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_386370193034062/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269017} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":6}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_386370193034062/insights/post_engaged_users/lifetime"},"emitted_at":1671053269017} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_386370193034062/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269018} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_386370193034062/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269018} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_386370193034062/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269020} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_386370193034062/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269021} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_386370193034062/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269021} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_386370193034062/insights/post_clicks/lifetime"},"emitted_at":1671053269022} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_386370193034062/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269023} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":3}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_386370193034062/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269023} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":3}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_386370193034062/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269024} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1,"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_386370193034062/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269024} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_385950653076016/insights/post_impressions/lifetime"},"emitted_at":1671053269025} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_385950653076016/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269026} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_385950653076016/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269027} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_385950653076016/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269028} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_385950653076016/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269029} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_385950653076016/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269030} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_385950653076016/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269031} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_385950653076016/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269031} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_385950653076016/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269032} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_385950653076016/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269032} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_385950653076016/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269033} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_385950653076016/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269033} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_385950653076016/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269033} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_385950653076016/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269034} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_385950653076016/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269035} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_385950653076016/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269036} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_385950653076016/insights/post_engaged_users/lifetime"},"emitted_at":1671053269036} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_385950653076016/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269038} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_385950653076016/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269039} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_385950653076016/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269040} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_385950653076016/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269041} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_385950653076016/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269043} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_385950653076016/insights/post_clicks/lifetime"},"emitted_at":1671053269045} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_385950653076016/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269046} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_385950653076016/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269046} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_385950653076016/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269047} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_385950653076016/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269048} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_384032956601119/insights/post_impressions/lifetime"},"emitted_at":1671053269049} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_384032956601119/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269050} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_384032956601119/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269051} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_384032956601119/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269053} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_384032956601119/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269053} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_384032956601119/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269054} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_384032956601119/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269055} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_384032956601119/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269056} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_384032956601119/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269056} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_384032956601119/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269057} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_384032956601119/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269057} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_384032956601119/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269058} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_384032956601119/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269058} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_384032956601119/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269059} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_384032956601119/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269060} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_384032956601119/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269060} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_384032956601119/insights/post_engaged_users/lifetime"},"emitted_at":1671053269061} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_384032956601119/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269061} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_384032956601119/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269062} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_384032956601119/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269062} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_384032956601119/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269062} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_384032956601119/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269063} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_384032956601119/insights/post_clicks/lifetime"},"emitted_at":1671053269063} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_384032956601119/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269064} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_384032956601119/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269064} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_384032956601119/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269065} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_384032956601119/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269065} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_383372320000516/insights/post_impressions/lifetime"},"emitted_at":1671053269065} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_383372320000516/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269066} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_383372320000516/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269067} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_383372320000516/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269068} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_383372320000516/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269068} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_383372320000516/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269069} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_383372320000516/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269070} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_383372320000516/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269071} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_383372320000516/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269071} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_383372320000516/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269072} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_383372320000516/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269073} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_383372320000516/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269073} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_383372320000516/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269074} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_383372320000516/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269074} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_383372320000516/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269074} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_383372320000516/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269075} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_383372320000516/insights/post_engaged_users/lifetime"},"emitted_at":1671053269075} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_383372320000516/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269076} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_383372320000516/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269076} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_383372320000516/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269076} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_383372320000516/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269077} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_383372320000516/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269077} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_383372320000516/insights/post_clicks/lifetime"},"emitted_at":1671053269078} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_383372320000516/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269078} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_383372320000516/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269079} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_383372320000516/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269079} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_383372320000516/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269079} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_382785830059165/insights/post_impressions/lifetime"},"emitted_at":1671053269080} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_382785830059165/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269081} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_382785830059165/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269081} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_382785830059165/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269082} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_382785830059165/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269082} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_382785830059165/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269083} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_382785830059165/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269083} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_382785830059165/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269084} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_382785830059165/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269084} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_382785830059165/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269084} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_382785830059165/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269085} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_382785830059165/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269085} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_382785830059165/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269085} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_382785830059165/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269086} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_382785830059165/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269086} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_382785830059165/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269086} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_382785830059165/insights/post_engaged_users/lifetime"},"emitted_at":1671053269087} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_382785830059165/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269087} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_382785830059165/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269088} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_382785830059165/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269088} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_382785830059165/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269089} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_382785830059165/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269089} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_382785830059165/insights/post_clicks/lifetime"},"emitted_at":1671053269089} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_382785830059165/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269090} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_382785830059165/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269090} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_382785830059165/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269090} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_382785830059165/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269091} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_382178470119901/insights/post_impressions/lifetime"},"emitted_at":1671053269091} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_382178470119901/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269092} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_382178470119901/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269092} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_382178470119901/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269092} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_382178470119901/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269093} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_382178470119901/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269093} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_382178470119901/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269093} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_382178470119901/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269094} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_382178470119901/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269094} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_382178470119901/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269095} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_382178470119901/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269095} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_382178470119901/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269095} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_382178470119901/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269096} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_382178470119901/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269096} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_382178470119901/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269097} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_382178470119901/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269097} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_382178470119901/insights/post_engaged_users/lifetime"},"emitted_at":1671053269098} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_382178470119901/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269098} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_382178470119901/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269099} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_382178470119901/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269099} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_382178470119901/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269100} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_382178470119901/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269100} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_382178470119901/insights/post_clicks/lifetime"},"emitted_at":1671053269101} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_382178470119901/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269101} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_382178470119901/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269101} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_382178470119901/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269102} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_382178470119901/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269102} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_381651100172638/insights/post_impressions/lifetime"},"emitted_at":1671053269103} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_381651100172638/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269103} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_381651100172638/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269103} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_381651100172638/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269104} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_381651100172638/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269105} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_381651100172638/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269105} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_381651100172638/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269106} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_381651100172638/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269106} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_381651100172638/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269106} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_381651100172638/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269107} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_381651100172638/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269107} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_381651100172638/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269107} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_381651100172638/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269108} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_381651100172638/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269109} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_381651100172638/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269109} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_381651100172638/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269109} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_381651100172638/insights/post_engaged_users/lifetime"},"emitted_at":1671053269110} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_381651100172638/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269110} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_381651100172638/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269111} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_381651100172638/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269111} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_381651100172638/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269111} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_381651100172638/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269112} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_381651100172638/insights/post_clicks/lifetime"},"emitted_at":1671053269112} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_381651100172638/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269112} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_381651100172638/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269113} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_381651100172638/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269113} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_381651100172638/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269114} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":94}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_379698497034565/insights/post_impressions/lifetime"},"emitted_at":1671053269114} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":92}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_379698497034565/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269114} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_379698497034565/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269115} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_379698497034565/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269115} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_379698497034565/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269115} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_379698497034565/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269116} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_379698497034565/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269116} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_379698497034565/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269116} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":94}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_379698497034565/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269117} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":92}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_379698497034565/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269117} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":64}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_379698497034565/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269117} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":63}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_379698497034565/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269118} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_379698497034565/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269119} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_379698497034565/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269119} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":64}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_379698497034565/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269119} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":63}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_379698497034565/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269120} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_379698497034565/insights/post_engaged_users/lifetime"},"emitted_at":1671053269121} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_379698497034565/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269121} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_379698497034565/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269121} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_379698497034565/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269122} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_379698497034565/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269122} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_379698497034565/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269123} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_379698497034565/insights/post_clicks/lifetime"},"emitted_at":1671053269123} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_379698497034565/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269123} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_379698497034565/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269124} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_379698497034565/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269124} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2,"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_379698497034565/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269124} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":103}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_379064430431305/insights/post_impressions/lifetime"},"emitted_at":1671053269125} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":102}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_379064430431305/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269125} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_379064430431305/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269125} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_379064430431305/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269126} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_379064430431305/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269126} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_379064430431305/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269126} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_379064430431305/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269127} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_379064430431305/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269127} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":103}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_379064430431305/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269127} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":102}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_379064430431305/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269128} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":74}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_379064430431305/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269129} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":74}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_379064430431305/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269129} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_379064430431305/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269130} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_379064430431305/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269130} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":74}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_379064430431305/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269130} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":74}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_379064430431305/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269131} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_379064430431305/insights/post_engaged_users/lifetime"},"emitted_at":1671053269131} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_379064430431305/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269131} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_379064430431305/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269132} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_379064430431305/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269132} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_379064430431305/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269132} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_379064430431305/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269133} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_379064430431305/insights/post_clicks/lifetime"},"emitted_at":1671053269133} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_379064430431305/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269133} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_379064430431305/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269134} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_379064430431305/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269134} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_379064430431305/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269134} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":97}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_378409827163432/insights/post_impressions/lifetime"},"emitted_at":1671053269135} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":95}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_378409827163432/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269135} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_378409827163432/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269135} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_378409827163432/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269136} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_378409827163432/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269136} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_378409827163432/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269137} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_378409827163432/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269138} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_378409827163432/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269138} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":97}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_378409827163432/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269139} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":95}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_378409827163432/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269139} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":72}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_378409827163432/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269139} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":70}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_378409827163432/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269140} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_378409827163432/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269140} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_378409827163432/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269140} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":72}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_378409827163432/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269141} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":70}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_378409827163432/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269141} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_378409827163432/insights/post_engaged_users/lifetime"},"emitted_at":1671053269142} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_378409827163432/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269142} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_378409827163432/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269142} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_378409827163432/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269143} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_378409827163432/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269143} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_378409827163432/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269143} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_378409827163432/insights/post_clicks/lifetime"},"emitted_at":1671053269144} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_378409827163432/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269144} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_378409827163432/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269144} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_378409827163432/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269145} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_378409827163432/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269145} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_377776950560053/insights/post_impressions/lifetime"},"emitted_at":1671053269146} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_377776950560053/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269146} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_377776950560053/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269147} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_377776950560053/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269148} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_377776950560053/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269148} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_377776950560053/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269149} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_377776950560053/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269149} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_377776950560053/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269150} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_377776950560053/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269150} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_377776950560053/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269150} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_377776950560053/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269151} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_377776950560053/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269151} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_377776950560053/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269152} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_377776950560053/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269152} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_377776950560053/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269152} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_377776950560053/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269153} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_377776950560053/insights/post_engaged_users/lifetime"},"emitted_at":1671053269153} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_377776950560053/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269154} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_377776950560053/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269154} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_377776950560053/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269154} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_377776950560053/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269155} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_377776950560053/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269155} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_377776950560053/insights/post_clicks/lifetime"},"emitted_at":1671053269156} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_377776950560053/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269158} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_377776950560053/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269159} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_377776950560053/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269159} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_377776950560053/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269160} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_377249537279461/insights/post_impressions/lifetime"},"emitted_at":1671053269160} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_377249537279461/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269161} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_377249537279461/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269161} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_377249537279461/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269162} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_377249537279461/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269163} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_377249537279461/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269163} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_377249537279461/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269163} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_377249537279461/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269164} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_377249537279461/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269164} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_377249537279461/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269164} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_377249537279461/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269165} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_377249537279461/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269165} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_377249537279461/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269165} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_377249537279461/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269166} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_377249537279461/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269166} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_377249537279461/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269166} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_377249537279461/insights/post_engaged_users/lifetime"},"emitted_at":1671053269167} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_377249537279461/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269167} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_377249537279461/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269168} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_377249537279461/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269168} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_377249537279461/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269168} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_377249537279461/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269169} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_377249537279461/insights/post_clicks/lifetime"},"emitted_at":1671053269169} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_377249537279461/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269170} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_377249537279461/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269170} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_377249537279461/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269171} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_377249537279461/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269171} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_377168250620923/insights/post_impressions/lifetime"},"emitted_at":1671053269172} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_377168250620923/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269172} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_377168250620923/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269173} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_377168250620923/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269173} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_377168250620923/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269173} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_377168250620923/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269174} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_377168250620923/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269174} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_377168250620923/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269174} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_377168250620923/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269175} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_377168250620923/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269175} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_377168250620923/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269176} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_377168250620923/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269176} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_377168250620923/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269177} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_377168250620923/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269177} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_377168250620923/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269177} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_377168250620923/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269178} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_377168250620923/insights/post_engaged_users/lifetime"},"emitted_at":1671053269178} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_377168250620923/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269178} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_377168250620923/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269179} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_377168250620923/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269179} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_377168250620923/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269180} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_377168250620923/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269180} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_377168250620923/insights/post_clicks/lifetime"},"emitted_at":1671053269181} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_377168250620923/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269181} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_377168250620923/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269182} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_377168250620923/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269182} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_377168250620923/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269182} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_375156747488740/insights/post_impressions/lifetime"},"emitted_at":1671053269183} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_375156747488740/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269183} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_375156747488740/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269184} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_375156747488740/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269184} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_375156747488740/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269184} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_375156747488740/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269185} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_375156747488740/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269185} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_375156747488740/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269185} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_375156747488740/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269186} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_375156747488740/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269186} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_375156747488740/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269186} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_375156747488740/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269187} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_375156747488740/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269188} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_375156747488740/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269188} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_375156747488740/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269188} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_375156747488740/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269189} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_375156747488740/insights/post_engaged_users/lifetime"},"emitted_at":1671053269189} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_375156747488740/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269190} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_375156747488740/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269190} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_375156747488740/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269191} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_375156747488740/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269191} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_375156747488740/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269191} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_375156747488740/insights/post_clicks/lifetime"},"emitted_at":1671053269192} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_375156747488740/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269192} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_375156747488740/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269193} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_375156747488740/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269193} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_375156747488740/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269193} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_374525054218576/insights/post_impressions/lifetime"},"emitted_at":1671053269194} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_374525054218576/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269194} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_374525054218576/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269195} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_374525054218576/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269195} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_374525054218576/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269195} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_374525054218576/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269196} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_374525054218576/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269196} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_374525054218576/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269197} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_374525054218576/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269197} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_374525054218576/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269198} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_374525054218576/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269198} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_374525054218576/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269198} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_374525054218576/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269199} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_374525054218576/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269199} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_374525054218576/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269199} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_374525054218576/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269200} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_374525054218576/insights/post_engaged_users/lifetime"},"emitted_at":1671053269200} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_374525054218576/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269201} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_374525054218576/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269201} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_374525054218576/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269201} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_374525054218576/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269202} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_374525054218576/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269202} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_374525054218576/insights/post_clicks/lifetime"},"emitted_at":1671053269202} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_374525054218576/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269203} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_374525054218576/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269203} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_374525054218576/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269204} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1,"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_374525054218576/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269204} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_373870224284059/insights/post_impressions/lifetime"},"emitted_at":1671053269204} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_373870224284059/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269205} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_373870224284059/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269205} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_373870224284059/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269205} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_373870224284059/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269206} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_373870224284059/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269206} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_373870224284059/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269207} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_373870224284059/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269207} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_373870224284059/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269207} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_373870224284059/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269208} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_373870224284059/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269208} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_373870224284059/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269208} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_373870224284059/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269209} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_373870224284059/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269209} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_373870224284059/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269209} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_373870224284059/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269210} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_373870224284059/insights/post_engaged_users/lifetime"},"emitted_at":1671053269210} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_373870224284059/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269210} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_373870224284059/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269211} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_373870224284059/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269211} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_373870224284059/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269212} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_373870224284059/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269212} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_373870224284059/insights/post_clicks/lifetime"},"emitted_at":1671053269212} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_373870224284059/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269213} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_373870224284059/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269213} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_373870224284059/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269213} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1,"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_373870224284059/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269214} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_373244247679990/insights/post_impressions/lifetime"},"emitted_at":1671053269214} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_373244247679990/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269214} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_373244247679990/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269215} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_373244247679990/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269215} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_373244247679990/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269216} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_373244247679990/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269216} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_373244247679990/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269216} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_373244247679990/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269217} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_373244247679990/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269217} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_373244247679990/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269217} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_373244247679990/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269218} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_373244247679990/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269218} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_373244247679990/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269218} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_373244247679990/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269219} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_373244247679990/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269219} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_373244247679990/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269219} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_373244247679990/insights/post_engaged_users/lifetime"},"emitted_at":1671053269220} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_373244247679990/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269220} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_373244247679990/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269221} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_373244247679990/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269221} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_373244247679990/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269221} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_373244247679990/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269222} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_373244247679990/insights/post_clicks/lifetime"},"emitted_at":1671053269222} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_373244247679990/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269223} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_373244247679990/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269223} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_373244247679990/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269223} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_373244247679990/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269224} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_372803514390730/insights/post_impressions/lifetime"},"emitted_at":1671053269224} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_372803514390730/insights/post_impressions_unique/lifetime"},"emitted_at":1671053269224} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_372803514390730/insights/post_impressions_paid/lifetime"},"emitted_at":1671053269225} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_372803514390730/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053269225} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_372803514390730/insights/post_impressions_fan/lifetime"},"emitted_at":1671053269225} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_372803514390730/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053269226} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_372803514390730/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053269226} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_372803514390730/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053269226} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_372803514390730/insights/post_impressions_organic/lifetime"},"emitted_at":1671053269227} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_372803514390730/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053269227} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_372803514390730/insights/post_impressions_viral/lifetime"},"emitted_at":1671053269228} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_372803514390730/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053269228} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_372803514390730/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053269228} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_372803514390730/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053269229} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_372803514390730/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053269229} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_372803514390730/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053269230} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_372803514390730/insights/post_engaged_users/lifetime"},"emitted_at":1671053269230} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_372803514390730/insights/post_negative_feedback/lifetime"},"emitted_at":1671053269231} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_372803514390730/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053269231} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_372803514390730/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053269232} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_372803514390730/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053269232} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_372803514390730/insights/post_engaged_fan/lifetime"},"emitted_at":1671053269233} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_372803514390730/insights/post_clicks/lifetime"},"emitted_at":1671053269233} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_372803514390730/insights/post_clicks_unique/lifetime"},"emitted_at":1671053269234} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_372803514390730/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053269235} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_372803514390730/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053269236} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_372803514390730/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053269236} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_370674837936931/insights/post_impressions/lifetime"},"emitted_at":1671053271054} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_370674837936931/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271055} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_370674837936931/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271055} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_370674837936931/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271056} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_370674837936931/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271056} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_370674837936931/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271057} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_370674837936931/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271057} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_370674837936931/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271058} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_370674837936931/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271058} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_370674837936931/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271058} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_370674837936931/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271059} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_370674837936931/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271059} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_370674837936931/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271059} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_370674837936931/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271060} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_370674837936931/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271060} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_370674837936931/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271061} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_370674837936931/insights/post_engaged_users/lifetime"},"emitted_at":1671053271061} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_370674837936931/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271062} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_370674837936931/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271062} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_370674837936931/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271063} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_370674837936931/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271063} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_370674837936931/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271064} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_370674837936931/insights/post_clicks/lifetime"},"emitted_at":1671053271064} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_370674837936931/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271065} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_370674837936931/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271065} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_370674837936931/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271066} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1,"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_370674837936931/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271066} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_370011868003228/insights/post_impressions/lifetime"},"emitted_at":1671053271066} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_370011868003228/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271067} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_370011868003228/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271067} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_370011868003228/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271068} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_370011868003228/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271068} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_370011868003228/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271068} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_370011868003228/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271069} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_370011868003228/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271069} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_370011868003228/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271070} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_370011868003228/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271070} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_370011868003228/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271070} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_370011868003228/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271071} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_370011868003228/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271071} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_370011868003228/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271072} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_370011868003228/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271072} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_370011868003228/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271072} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_370011868003228/insights/post_engaged_users/lifetime"},"emitted_at":1671053271073} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_370011868003228/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271073} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_370011868003228/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271074} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_370011868003228/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271075} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_370011868003228/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271075} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_370011868003228/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271076} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_370011868003228/insights/post_clicks/lifetime"},"emitted_at":1671053271076} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_370011868003228/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271076} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_370011868003228/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271077} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_370011868003228/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271077} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_370011868003228/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271077} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_369381394732942/insights/post_impressions/lifetime"},"emitted_at":1671053271078} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_369381394732942/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271078} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_369381394732942/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271079} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_369381394732942/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271079} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_369381394732942/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271079} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_369381394732942/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271080} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_369381394732942/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271080} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_369381394732942/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271080} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_369381394732942/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271081} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_369381394732942/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271081} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_369381394732942/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271081} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_369381394732942/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271082} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_369381394732942/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271082} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_369381394732942/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271083} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_369381394732942/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271083} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_369381394732942/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271084} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_369381394732942/insights/post_engaged_users/lifetime"},"emitted_at":1671053271084} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_369381394732942/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271085} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_369381394732942/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271085} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_369381394732942/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271086} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_369381394732942/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271086} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_369381394732942/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271086} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_369381394732942/insights/post_clicks/lifetime"},"emitted_at":1671053271087} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_369381394732942/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271087} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_369381394732942/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271087} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_369381394732942/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271088} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_369381394732942/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271088} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_368323664838715/insights/post_impressions/lifetime"},"emitted_at":1671053271089} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_368323664838715/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271089} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_368323664838715/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271089} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_368323664838715/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271090} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_368323664838715/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271090} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_368323664838715/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271090} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_368323664838715/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271091} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_368323664838715/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271091} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_368323664838715/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271091} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_368323664838715/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271092} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_368323664838715/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271092} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_368323664838715/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271093} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_368323664838715/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271093} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_368323664838715/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271093} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_368323664838715/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271094} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_368323664838715/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271094} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_368323664838715/insights/post_engaged_users/lifetime"},"emitted_at":1671053271096} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_368323664838715/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271097} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_368323664838715/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271097} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_368323664838715/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271098} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_368323664838715/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271098} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_368323664838715/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271099} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_368323664838715/insights/post_clicks/lifetime"},"emitted_at":1671053271099} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_368323664838715/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271100} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_368323664838715/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271101} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_368323664838715/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271101} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_368323664838715/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271102} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_366253138379101/insights/post_impressions/lifetime"},"emitted_at":1671053271102} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_366253138379101/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271103} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_366253138379101/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271103} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_366253138379101/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271103} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_366253138379101/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271104} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_366253138379101/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271104} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_366253138379101/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271105} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_366253138379101/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271105} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_366253138379101/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271109} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_366253138379101/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271109} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_366253138379101/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271110} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_366253138379101/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271110} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_366253138379101/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271111} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_366253138379101/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271111} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_366253138379101/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271111} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_366253138379101/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271112} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_366253138379101/insights/post_engaged_users/lifetime"},"emitted_at":1671053271112} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_366253138379101/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271113} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_366253138379101/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271113} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_366253138379101/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271114} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_366253138379101/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271114} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_366253138379101/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271115} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_366253138379101/insights/post_clicks/lifetime"},"emitted_at":1671053271115} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_366253138379101/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271116} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_366253138379101/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271116} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_366253138379101/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271116} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_366253138379101/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271117} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_365573268447088/insights/post_impressions/lifetime"},"emitted_at":1671053271117} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_365573268447088/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271118} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_365573268447088/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271118} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_365573268447088/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271118} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_365573268447088/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271119} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_365573268447088/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271119} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_365573268447088/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271120} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_365573268447088/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271120} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_365573268447088/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271120} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_365573268447088/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271121} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_365573268447088/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271121} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_365573268447088/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271122} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_365573268447088/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271122} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_365573268447088/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271123} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_365573268447088/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271123} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_365573268447088/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271123} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_365573268447088/insights/post_engaged_users/lifetime"},"emitted_at":1671053271124} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_365573268447088/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271124} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_365573268447088/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271124} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_365573268447088/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271125} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_365573268447088/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271125} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_365573268447088/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271126} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_365573268447088/insights/post_clicks/lifetime"},"emitted_at":1671053271126} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_365573268447088/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271126} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_365573268447088/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271127} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_365573268447088/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271127} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_365573268447088/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271127} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_364949145176167/insights/post_impressions/lifetime"},"emitted_at":1671053271128} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_364949145176167/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271128} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_364949145176167/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271128} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_364949145176167/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271129} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_364949145176167/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271130} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_364949145176167/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271130} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_364949145176167/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271130} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_364949145176167/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271131} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_364949145176167/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271131} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_364949145176167/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271132} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_364949145176167/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271132} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_364949145176167/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271132} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_364949145176167/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271133} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_364949145176167/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271133} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_364949145176167/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271134} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_364949145176167/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271134} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_364949145176167/insights/post_engaged_users/lifetime"},"emitted_at":1671053271134} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_364949145176167/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271135} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_364949145176167/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271135} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_364949145176167/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271135} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_364949145176167/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271136} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_364949145176167/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271136} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_364949145176167/insights/post_clicks/lifetime"},"emitted_at":1671053271137} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_364949145176167/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271137} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_364949145176167/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271137} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_364949145176167/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271138} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_364949145176167/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271138} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_364277041910044/insights/post_impressions/lifetime"},"emitted_at":1671053271138} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_364277041910044/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271139} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_364277041910044/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271139} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_364277041910044/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271139} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_364277041910044/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271140} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_364277041910044/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271140} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_364277041910044/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271141} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_364277041910044/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271141} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_364277041910044/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271141} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_364277041910044/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271142} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_364277041910044/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271142} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_364277041910044/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271143} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_364277041910044/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271143} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_364277041910044/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271143} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_364277041910044/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271144} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_364277041910044/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271144} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_364277041910044/insights/post_engaged_users/lifetime"},"emitted_at":1671053271144} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_364277041910044/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271145} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_364277041910044/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271145} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_364277041910044/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271145} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_364277041910044/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271146} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_364277041910044/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271146} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_364277041910044/insights/post_clicks/lifetime"},"emitted_at":1671053271146} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_364277041910044/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271147} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_364277041910044/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271147} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_364277041910044/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271147} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_364277041910044/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271148} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_363868778617537/insights/post_impressions/lifetime"},"emitted_at":1671053271148} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_363868778617537/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271148} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_363868778617537/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271149} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_363868778617537/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271149} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_363868778617537/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271150} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_363868778617537/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271150} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_363868778617537/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271150} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_363868778617537/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271151} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_363868778617537/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271151} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_363868778617537/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271151} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_363868778617537/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271152} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_363868778617537/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271152} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_363868778617537/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271153} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_363868778617537/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271153} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_363868778617537/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271153} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_363868778617537/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271154} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_363868778617537/insights/post_engaged_users/lifetime"},"emitted_at":1671053271154} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_363868778617537/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271154} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_363868778617537/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271155} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_363868778617537/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271155} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_363868778617537/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271155} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_363868778617537/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271156} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_363868778617537/insights/post_clicks/lifetime"},"emitted_at":1671053271156} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_363868778617537/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271157} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_363868778617537/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271157} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_363868778617537/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271157} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_363868778617537/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271158} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_361771145493967/insights/post_impressions/lifetime"},"emitted_at":1671053271158} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_361771145493967/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271159} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_361771145493967/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271159} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_361771145493967/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271160} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_361771145493967/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271160} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_361771145493967/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271161} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_361771145493967/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271161} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_361771145493967/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271161} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_361771145493967/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271162} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_361771145493967/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271162} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_361771145493967/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271163} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_361771145493967/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271163} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_361771145493967/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271163} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_361771145493967/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271164} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_361771145493967/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271164} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_361771145493967/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271165} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_361771145493967/insights/post_engaged_users/lifetime"},"emitted_at":1671053271165} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_361771145493967/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271165} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_361771145493967/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271166} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_361771145493967/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271166} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_361771145493967/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271166} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_361771145493967/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271167} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_361771145493967/insights/post_clicks/lifetime"},"emitted_at":1671053271167} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_361771145493967/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271167} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_361771145493967/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271168} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_361771145493967/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271168} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_361771145493967/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271168} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_361120262225722/insights/post_impressions/lifetime"},"emitted_at":1671053271169} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_361120262225722/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271169} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_361120262225722/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271170} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_361120262225722/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271170} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_361120262225722/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271171} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_361120262225722/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271172} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_361120262225722/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271173} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_361120262225722/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271173} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_361120262225722/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271174} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_361120262225722/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271175} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_361120262225722/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271175} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_361120262225722/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271175} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_361120262225722/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271176} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_361120262225722/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271176} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_361120262225722/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271177} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_361120262225722/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271177} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_361120262225722/insights/post_engaged_users/lifetime"},"emitted_at":1671053271178} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_361120262225722/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271178} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_361120262225722/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271178} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_361120262225722/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271179} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_361120262225722/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271179} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_361120262225722/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271180} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_361120262225722/insights/post_clicks/lifetime"},"emitted_at":1671053271180} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_361120262225722/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271180} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_361120262225722/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271181} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_361120262225722/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271181} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_361120262225722/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271182} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":144}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_360502642287484/insights/post_impressions/lifetime"},"emitted_at":1671053271182} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":143}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_360502642287484/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271183} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_360502642287484/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271183} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_360502642287484/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271184} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_360502642287484/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271184} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_360502642287484/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271185} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_360502642287484/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271185} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_360502642287484/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271185} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":144}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_360502642287484/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271186} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":143}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_360502642287484/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271186} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":121}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_360502642287484/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271186} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":120}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_360502642287484/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271187} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_360502642287484/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271187} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_360502642287484/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271188} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":121}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_360502642287484/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271188} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":120}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_360502642287484/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271188} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_360502642287484/insights/post_engaged_users/lifetime"},"emitted_at":1671053271189} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_360502642287484/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271189} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_360502642287484/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271189} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_360502642287484/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271190} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_360502642287484/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271190} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_360502642287484/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271190} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_360502642287484/insights/post_clicks/lifetime"},"emitted_at":1671053271191} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_360502642287484/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271191} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_360502642287484/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271192} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_360502642287484/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271192} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_360502642287484/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271192} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_359891295681952/insights/post_impressions/lifetime"},"emitted_at":1671053271193} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_359891295681952/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271193} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_359891295681952/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271193} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_359891295681952/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271194} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_359891295681952/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271194} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_359891295681952/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271194} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_359891295681952/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271195} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_359891295681952/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271195} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_359891295681952/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271196} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_359891295681952/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271196} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_359891295681952/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271196} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_359891295681952/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271197} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_359891295681952/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271197} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_359891295681952/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271198} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_359891295681952/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271198} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_359891295681952/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271199} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_359891295681952/insights/post_engaged_users/lifetime"},"emitted_at":1671053271199} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_359891295681952/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271199} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_359891295681952/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271200} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_359891295681952/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271200} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_359891295681952/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271200} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_359891295681952/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271201} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_359891295681952/insights/post_clicks/lifetime"},"emitted_at":1671053271201} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_359891295681952/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271202} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_359891295681952/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271202} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_359891295681952/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271202} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_359891295681952/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271203} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_359482169056198/insights/post_impressions/lifetime"},"emitted_at":1671053271203} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_359482169056198/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271203} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_359482169056198/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271204} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_359482169056198/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271204} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_359482169056198/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271204} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_359482169056198/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271205} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_359482169056198/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271205} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_359482169056198/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271205} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_359482169056198/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271206} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_359482169056198/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271206} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_359482169056198/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271206} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_359482169056198/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271207} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_359482169056198/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271207} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_359482169056198/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271207} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_359482169056198/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271208} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_359482169056198/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271208} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_359482169056198/insights/post_engaged_users/lifetime"},"emitted_at":1671053271209} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_359482169056198/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271209} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_359482169056198/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271210} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_359482169056198/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271210} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_359482169056198/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271210} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_359482169056198/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271211} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_359482169056198/insights/post_clicks/lifetime"},"emitted_at":1671053271211} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_359482169056198/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271212} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_359482169056198/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271212} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_359482169056198/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271212} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_359482169056198/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271213} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_357413879263027/insights/post_impressions/lifetime"},"emitted_at":1671053271213} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_357413879263027/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271214} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_357413879263027/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271214} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_357413879263027/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271215} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_357413879263027/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271215} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_357413879263027/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271215} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_357413879263027/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271216} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_357413879263027/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271216} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_357413879263027/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271216} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_357413879263027/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271217} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_357413879263027/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271217} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_357413879263027/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271218} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_357413879263027/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271218} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_357413879263027/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271219} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_357413879263027/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271219} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_357413879263027/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271219} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_357413879263027/insights/post_engaged_users/lifetime"},"emitted_at":1671053271220} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_357413879263027/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271220} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_357413879263027/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271220} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_357413879263027/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271221} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_357413879263027/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271221} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_357413879263027/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271222} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_357413879263027/insights/post_clicks/lifetime"},"emitted_at":1671053271222} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_357413879263027/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271222} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_357413879263027/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271223} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_357413879263027/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271223} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_357413879263027/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271223} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_356733589331056/insights/post_impressions/lifetime"},"emitted_at":1671053271224} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_356733589331056/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271224} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_356733589331056/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271224} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_356733589331056/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271225} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_356733589331056/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271225} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_356733589331056/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271226} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_356733589331056/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271226} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_356733589331056/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271226} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_356733589331056/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271227} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_356733589331056/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271227} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_356733589331056/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271227} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_356733589331056/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271228} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_356733589331056/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271228} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_356733589331056/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271229} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_356733589331056/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271229} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_356733589331056/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271230} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_356733589331056/insights/post_engaged_users/lifetime"},"emitted_at":1671053271230} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_356733589331056/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271230} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_356733589331056/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271231} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_356733589331056/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271231} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_356733589331056/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271232} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_356733589331056/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271232} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_356733589331056/insights/post_clicks/lifetime"},"emitted_at":1671053271232} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_356733589331056/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271233} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_356733589331056/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271233} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_356733589331056/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271235} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_356733589331056/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271235} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_356112396059842/insights/post_impressions/lifetime"},"emitted_at":1671053271236} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_356112396059842/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271236} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_356112396059842/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271237} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_356112396059842/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271237} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_356112396059842/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271237} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_356112396059842/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271238} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_356112396059842/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271239} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_356112396059842/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271239} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_356112396059842/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271240} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_356112396059842/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271240} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_356112396059842/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271241} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_356112396059842/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271241} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_356112396059842/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271242} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_356112396059842/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271242} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_356112396059842/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271242} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_356112396059842/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271243} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_356112396059842/insights/post_engaged_users/lifetime"},"emitted_at":1671053271243} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_356112396059842/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271244} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_356112396059842/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271244} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_356112396059842/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271245} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_356112396059842/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271246} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_356112396059842/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271246} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_356112396059842/insights/post_clicks/lifetime"},"emitted_at":1671053271247} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_356112396059842/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271247} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_356112396059842/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271248} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_356112396059842/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271248} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_356112396059842/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271249} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_355499929454422/insights/post_impressions/lifetime"},"emitted_at":1671053271249} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_355499929454422/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271250} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_355499929454422/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271250} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_355499929454422/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271250} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_355499929454422/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271251} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_355499929454422/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271251} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_355499929454422/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271252} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_355499929454422/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271253} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_355499929454422/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271253} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_355499929454422/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271254} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_355499929454422/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271254} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_355499929454422/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271255} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_355499929454422/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271255} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_355499929454422/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271255} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_355499929454422/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271256} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_355499929454422/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271256} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_355499929454422/insights/post_engaged_users/lifetime"},"emitted_at":1671053271257} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_355499929454422/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271257} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_355499929454422/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271258} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_355499929454422/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271258} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_355499929454422/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271258} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_355499929454422/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271259} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_355499929454422/insights/post_clicks/lifetime"},"emitted_at":1671053271259} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_355499929454422/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271259} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_355499929454422/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271260} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_355499929454422/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271260} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_355499929454422/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271260} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":76}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_355089092828839/insights/post_impressions/lifetime"},"emitted_at":1671053271261} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":75}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_355089092828839/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271261} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_355089092828839/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271261} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_355089092828839/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271262} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_355089092828839/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271262} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_355089092828839/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271262} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_355089092828839/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271263} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_355089092828839/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271263} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":76}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_355089092828839/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271263} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":75}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_355089092828839/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271264} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":61}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_355089092828839/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271264} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":60}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_355089092828839/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271264} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_355089092828839/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271265} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_355089092828839/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271265} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":61}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_355089092828839/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271265} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":60}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_355089092828839/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271266} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_355089092828839/insights/post_engaged_users/lifetime"},"emitted_at":1671053271267} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_355089092828839/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271267} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_355089092828839/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271268} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_355089092828839/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271268} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_355089092828839/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271268} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_355089092828839/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271269} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_355089092828839/insights/post_clicks/lifetime"},"emitted_at":1671053271269} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_355089092828839/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271270} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_355089092828839/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271270} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_355089092828839/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271270} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_355089092828839/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271271} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_352924883045260/insights/post_impressions/lifetime"},"emitted_at":1671053271271} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_352924883045260/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271271} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_352924883045260/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271272} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_352924883045260/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271272} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_352924883045260/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271272} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_352924883045260/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271273} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_352924883045260/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271273} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_352924883045260/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271273} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_352924883045260/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271274} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_352924883045260/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271274} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_352924883045260/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271275} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_352924883045260/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271275} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_352924883045260/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271275} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_352924883045260/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271276} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_352924883045260/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271276} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_352924883045260/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271277} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_352924883045260/insights/post_engaged_users/lifetime"},"emitted_at":1671053271277} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_352924883045260/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271278} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_352924883045260/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271278} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_352924883045260/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271278} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_352924883045260/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271279} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_352924883045260/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271279} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_352924883045260/insights/post_clicks/lifetime"},"emitted_at":1671053271280} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_352924883045260/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271280} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_352924883045260/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271280} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_352924883045260/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271281} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_352924883045260/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271281} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_352288323108916/insights/post_impressions/lifetime"},"emitted_at":1671053271281} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_352288323108916/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271282} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_352288323108916/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271282} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_352288323108916/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271282} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_352288323108916/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271283} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_352288323108916/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271283} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_352288323108916/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271283} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_352288323108916/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271284} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_352288323108916/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271284} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_352288323108916/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271284} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_352288323108916/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271285} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_352288323108916/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271285} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_352288323108916/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271285} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_352288323108916/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271286} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_352288323108916/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271286} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_352288323108916/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271287} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_352288323108916/insights/post_engaged_users/lifetime"},"emitted_at":1671053271287} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_352288323108916/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271288} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_352288323108916/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271288} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_352288323108916/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271289} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_352288323108916/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271289} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_352288323108916/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271289} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_352288323108916/insights/post_clicks/lifetime"},"emitted_at":1671053271290} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_352288323108916/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271290} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_352288323108916/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271290} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_352288323108916/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271291} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_352288323108916/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271291} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_351625836508498/insights/post_impressions/lifetime"},"emitted_at":1671053271292} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_351625836508498/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271292} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_351625836508498/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271292} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_351625836508498/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271293} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_351625836508498/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271293} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_351625836508498/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271293} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_351625836508498/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271294} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_351625836508498/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271294} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_351625836508498/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271295} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_351625836508498/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271295} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_351625836508498/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271295} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_351625836508498/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271296} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_351625836508498/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271296} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_351625836508498/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271296} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_351625836508498/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271297} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_351625836508498/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271297} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_351625836508498/insights/post_engaged_users/lifetime"},"emitted_at":1671053271298} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_351625836508498/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271298} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_351625836508498/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271298} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_351625836508498/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271299} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_351625836508498/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271299} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_351625836508498/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271300} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_351625836508498/insights/post_clicks/lifetime"},"emitted_at":1671053271300} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_351625836508498/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271300} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_351625836508498/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271301} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_351625836508498/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271301} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_351625836508498/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271301} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_350986153239133/insights/post_impressions/lifetime"},"emitted_at":1671053271302} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_350986153239133/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271302} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_350986153239133/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271302} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_350986153239133/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271303} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_350986153239133/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271303} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_350986153239133/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271303} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_350986153239133/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271304} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_350986153239133/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271304} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_350986153239133/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271304} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_350986153239133/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271305} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_350986153239133/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271305} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_350986153239133/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271305} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_350986153239133/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271306} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_350986153239133/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271306} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_350986153239133/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271307} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_350986153239133/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271307} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_350986153239133/insights/post_engaged_users/lifetime"},"emitted_at":1671053271308} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_350986153239133/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271308} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_350986153239133/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271308} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_350986153239133/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271309} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_350986153239133/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271309} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_350986153239133/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271309} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_350986153239133/insights/post_clicks/lifetime"},"emitted_at":1671053271310} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_350986153239133/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271310} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_350986153239133/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271310} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_350986153239133/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271311} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_350986153239133/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271311} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_350566553281093/insights/post_impressions/lifetime"},"emitted_at":1671053271311} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_350566553281093/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271312} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_350566553281093/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271312} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_350566553281093/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271312} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_350566553281093/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271313} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_350566553281093/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271313} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_350566553281093/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271313} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_350566553281093/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271314} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_350566553281093/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271314} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_350566553281093/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271314} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_350566553281093/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271315} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_350566553281093/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271315} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_350566553281093/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271315} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_350566553281093/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271316} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_350566553281093/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271316} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_350566553281093/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271316} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_350566553281093/insights/post_engaged_users/lifetime"},"emitted_at":1671053271317} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_350566553281093/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271317} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_350566553281093/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271318} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_350566553281093/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271318} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_350566553281093/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271318} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_350566553281093/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271319} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_350566553281093/insights/post_clicks/lifetime"},"emitted_at":1671053271319} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_350566553281093/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271319} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_350566553281093/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271320} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_350566553281093/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271320} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_350566553281093/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271321} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_348470763490672/insights/post_impressions/lifetime"},"emitted_at":1671053271321} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_348470763490672/insights/post_impressions_unique/lifetime"},"emitted_at":1671053271321} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_348470763490672/insights/post_impressions_paid/lifetime"},"emitted_at":1671053271322} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_348470763490672/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053271322} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_348470763490672/insights/post_impressions_fan/lifetime"},"emitted_at":1671053271323} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_348470763490672/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053271323} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_348470763490672/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053271323} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_348470763490672/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053271324} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_348470763490672/insights/post_impressions_organic/lifetime"},"emitted_at":1671053271324} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_348470763490672/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053271325} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_348470763490672/insights/post_impressions_viral/lifetime"},"emitted_at":1671053271325} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_348470763490672/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053271325} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_348470763490672/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053271326} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_348470763490672/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053271326} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_348470763490672/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053271326} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_348470763490672/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053271327} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_348470763490672/insights/post_engaged_users/lifetime"},"emitted_at":1671053271327} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_348470763490672/insights/post_negative_feedback/lifetime"},"emitted_at":1671053271328} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_348470763490672/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053271328} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_348470763490672/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053271328} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_348470763490672/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053271329} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_348470763490672/insights/post_engaged_fan/lifetime"},"emitted_at":1671053271329} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_348470763490672/insights/post_clicks/lifetime"},"emitted_at":1671053271329} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_348470763490672/insights/post_clicks_unique/lifetime"},"emitted_at":1671053271330} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_348470763490672/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053271330} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_348470763490672/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053271331} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_348470763490672/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053271331} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_347852863552462/insights/post_impressions/lifetime"},"emitted_at":1671053272786} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_347852863552462/insights/post_impressions_unique/lifetime"},"emitted_at":1671053272788} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_347852863552462/insights/post_impressions_paid/lifetime"},"emitted_at":1671053272789} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_347852863552462/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053272790} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_347852863552462/insights/post_impressions_fan/lifetime"},"emitted_at":1671053272791} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_347852863552462/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053272791} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_347852863552462/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053272792} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_347852863552462/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053272792} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_347852863552462/insights/post_impressions_organic/lifetime"},"emitted_at":1671053272793} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_347852863552462/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053272793} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_347852863552462/insights/post_impressions_viral/lifetime"},"emitted_at":1671053272794} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_347852863552462/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053272794} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_347852863552462/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053272795} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_347852863552462/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053272795} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_347852863552462/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053272796} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_347852863552462/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053272796} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_347852863552462/insights/post_engaged_users/lifetime"},"emitted_at":1671053272797} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_347852863552462/insights/post_negative_feedback/lifetime"},"emitted_at":1671053272797} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_347852863552462/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053272798} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_347852863552462/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053272798} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_347852863552462/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053272799} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_347852863552462/insights/post_engaged_fan/lifetime"},"emitted_at":1671053272800} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_347852863552462/insights/post_clicks/lifetime"},"emitted_at":1671053272800} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_347852863552462/insights/post_clicks_unique/lifetime"},"emitted_at":1671053272801} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_347852863552462/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053272802} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_347852863552462/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053272802} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_347852863552462/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053272803} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_347204630283952/insights/post_impressions/lifetime"},"emitted_at":1671053272804} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_347204630283952/insights/post_impressions_unique/lifetime"},"emitted_at":1671053272804} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_347204630283952/insights/post_impressions_paid/lifetime"},"emitted_at":1671053272805} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_347204630283952/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053272806} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_347204630283952/insights/post_impressions_fan/lifetime"},"emitted_at":1671053272806} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_347204630283952/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053272807} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_347204630283952/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053272808} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_347204630283952/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053272808} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_347204630283952/insights/post_impressions_organic/lifetime"},"emitted_at":1671053272809} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_347204630283952/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053272809} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_347204630283952/insights/post_impressions_viral/lifetime"},"emitted_at":1671053272810} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_347204630283952/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053272810} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_347204630283952/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053272811} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_347204630283952/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053272811} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_347204630283952/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053272812} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_347204630283952/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053272812} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_347204630283952/insights/post_engaged_users/lifetime"},"emitted_at":1671053272812} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_347204630283952/insights/post_negative_feedback/lifetime"},"emitted_at":1671053272813} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_347204630283952/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053272813} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_347204630283952/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053272814} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_347204630283952/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053272814} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_347204630283952/insights/post_engaged_fan/lifetime"},"emitted_at":1671053272814} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_347204630283952/insights/post_clicks/lifetime"},"emitted_at":1671053272815} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_347204630283952/insights/post_clicks_unique/lifetime"},"emitted_at":1671053272815} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_347204630283952/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053272816} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_347204630283952/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053272816} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_347204630283952/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053272816} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_346593387011743/insights/post_impressions/lifetime"},"emitted_at":1671053272817} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_346593387011743/insights/post_impressions_unique/lifetime"},"emitted_at":1671053272817} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_346593387011743/insights/post_impressions_paid/lifetime"},"emitted_at":1671053272818} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_346593387011743/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053272818} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_346593387011743/insights/post_impressions_fan/lifetime"},"emitted_at":1671053272818} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_346593387011743/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053272819} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_346593387011743/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053272819} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_346593387011743/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053272819} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_346593387011743/insights/post_impressions_organic/lifetime"},"emitted_at":1671053272820} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_346593387011743/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053272820} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_346593387011743/insights/post_impressions_viral/lifetime"},"emitted_at":1671053272821} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_346593387011743/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053272821} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_346593387011743/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053272822} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_346593387011743/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053272822} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_346593387011743/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053272823} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_346593387011743/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053272823} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_346593387011743/insights/post_engaged_users/lifetime"},"emitted_at":1671053272824} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_346593387011743/insights/post_negative_feedback/lifetime"},"emitted_at":1671053272824} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_346593387011743/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053272825} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_346593387011743/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053272825} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_346593387011743/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053272825} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_346593387011743/insights/post_engaged_fan/lifetime"},"emitted_at":1671053272826} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_346593387011743/insights/post_clicks/lifetime"},"emitted_at":1671053272826} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_346593387011743/insights/post_clicks_unique/lifetime"},"emitted_at":1671053272827} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_346593387011743/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053272827} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_346593387011743/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053272827} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_346593387011743/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053272828} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_346153423722406/insights/post_impressions/lifetime"},"emitted_at":1671053272828} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_346153423722406/insights/post_impressions_unique/lifetime"},"emitted_at":1671053272829} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_346153423722406/insights/post_impressions_paid/lifetime"},"emitted_at":1671053272829} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_346153423722406/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053272830} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_346153423722406/insights/post_impressions_fan/lifetime"},"emitted_at":1671053272831} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_346153423722406/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053272831} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_346153423722406/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053272832} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_346153423722406/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053272832} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_346153423722406/insights/post_impressions_organic/lifetime"},"emitted_at":1671053272833} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_346153423722406/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053272833} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_346153423722406/insights/post_impressions_viral/lifetime"},"emitted_at":1671053272833} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_346153423722406/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053272834} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_346153423722406/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053272834} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_346153423722406/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053272835} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_346153423722406/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053272835} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_346153423722406/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053272835} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_346153423722406/insights/post_engaged_users/lifetime"},"emitted_at":1671053272836} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_346153423722406/insights/post_negative_feedback/lifetime"},"emitted_at":1671053272836} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_346153423722406/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053272836} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_346153423722406/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053272837} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_346153423722406/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053272837} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_346153423722406/insights/post_engaged_fan/lifetime"},"emitted_at":1671053272838} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_346153423722406/insights/post_clicks/lifetime"},"emitted_at":1671053272838} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_346153423722406/insights/post_clicks_unique/lifetime"},"emitted_at":1671053272838} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_346153423722406/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053272839} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_346153423722406/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053272839} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_346153423722406/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053272840} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_343995373938211/insights/post_impressions/lifetime"},"emitted_at":1671053272840} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_343995373938211/insights/post_impressions_unique/lifetime"},"emitted_at":1671053272840} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_343995373938211/insights/post_impressions_paid/lifetime"},"emitted_at":1671053272841} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_343995373938211/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053272841} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_343995373938211/insights/post_impressions_fan/lifetime"},"emitted_at":1671053272842} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_343995373938211/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053272843} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_343995373938211/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053272843} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_343995373938211/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053272844} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_343995373938211/insights/post_impressions_organic/lifetime"},"emitted_at":1671053272844} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_343995373938211/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053272844} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_343995373938211/insights/post_impressions_viral/lifetime"},"emitted_at":1671053272845} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_343995373938211/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053272845} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_343995373938211/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053272846} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_343995373938211/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053272846} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_343995373938211/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053272846} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_343995373938211/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053272847} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_343995373938211/insights/post_engaged_users/lifetime"},"emitted_at":1671053272847} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_343995373938211/insights/post_negative_feedback/lifetime"},"emitted_at":1671053272847} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_343995373938211/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053272848} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_343995373938211/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053272848} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_343995373938211/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053272849} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_343995373938211/insights/post_engaged_fan/lifetime"},"emitted_at":1671053272849} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_343995373938211/insights/post_clicks/lifetime"},"emitted_at":1671053272849} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_343995373938211/insights/post_clicks_unique/lifetime"},"emitted_at":1671053272850} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_343995373938211/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053272850} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_343995373938211/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053272851} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_343995373938211/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053272852} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_343373617333720/insights/post_impressions/lifetime"},"emitted_at":1671053272852} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_343373617333720/insights/post_impressions_unique/lifetime"},"emitted_at":1671053272852} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_343373617333720/insights/post_impressions_paid/lifetime"},"emitted_at":1671053272853} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_343373617333720/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053272853} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_343373617333720/insights/post_impressions_fan/lifetime"},"emitted_at":1671053272853} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_343373617333720/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053272854} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_343373617333720/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053272854} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_343373617333720/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053272855} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_343373617333720/insights/post_impressions_organic/lifetime"},"emitted_at":1671053272855} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_343373617333720/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053272855} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_343373617333720/insights/post_impressions_viral/lifetime"},"emitted_at":1671053272856} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_343373617333720/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053272856} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_343373617333720/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053272857} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_343373617333720/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053272857} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_343373617333720/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053272858} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_343373617333720/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053272858} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_343373617333720/insights/post_engaged_users/lifetime"},"emitted_at":1671053272858} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_343373617333720/insights/post_negative_feedback/lifetime"},"emitted_at":1671053272859} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_343373617333720/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053272859} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_343373617333720/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053272860} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_343373617333720/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053272860} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_343373617333720/insights/post_engaged_fan/lifetime"},"emitted_at":1671053272860} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_343373617333720/insights/post_clicks/lifetime"},"emitted_at":1671053272861} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_343373617333720/insights/post_clicks_unique/lifetime"},"emitted_at":1671053272861} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_343373617333720/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053272861} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_343373617333720/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053272862} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_343373617333720/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053272862} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_342706254067123/insights/post_impressions/lifetime"},"emitted_at":1671053272863} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_342706254067123/insights/post_impressions_unique/lifetime"},"emitted_at":1671053272863} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_342706254067123/insights/post_impressions_paid/lifetime"},"emitted_at":1671053272864} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_342706254067123/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053272864} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_342706254067123/insights/post_impressions_fan/lifetime"},"emitted_at":1671053272865} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_342706254067123/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053272865} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_342706254067123/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053272866} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_342706254067123/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053272867} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_342706254067123/insights/post_impressions_organic/lifetime"},"emitted_at":1671053272870} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_342706254067123/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053272871} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_342706254067123/insights/post_impressions_viral/lifetime"},"emitted_at":1671053272872} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_342706254067123/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053272873} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_342706254067123/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053272874} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_342706254067123/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053272874} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_342706254067123/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053272875} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_342706254067123/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053272875} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_342706254067123/insights/post_engaged_users/lifetime"},"emitted_at":1671053272876} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_342706254067123/insights/post_negative_feedback/lifetime"},"emitted_at":1671053272876} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_342706254067123/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053272877} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_342706254067123/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053272877} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_342706254067123/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053272878} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_342706254067123/insights/post_engaged_fan/lifetime"},"emitted_at":1671053272878} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_342706254067123/insights/post_clicks/lifetime"},"emitted_at":1671053272879} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_342706254067123/insights/post_clicks_unique/lifetime"},"emitted_at":1671053272879} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_342706254067123/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053272880} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_342706254067123/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053272880} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_342706254067123/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053272881} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":128}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_342046804133068/insights/post_impressions/lifetime"},"emitted_at":1671053272881} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":126}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_342046804133068/insights/post_impressions_unique/lifetime"},"emitted_at":1671053272882} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_342046804133068/insights/post_impressions_paid/lifetime"},"emitted_at":1671053272882} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_342046804133068/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053272883} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_342046804133068/insights/post_impressions_fan/lifetime"},"emitted_at":1671053272884} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_342046804133068/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053272884} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_342046804133068/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053272885} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_342046804133068/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053272885} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":128}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_342046804133068/insights/post_impressions_organic/lifetime"},"emitted_at":1671053272886} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":126}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_342046804133068/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053272886} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":101}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_342046804133068/insights/post_impressions_viral/lifetime"},"emitted_at":1671053272887} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":101}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_342046804133068/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053272888} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_342046804133068/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053272889} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_342046804133068/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053272889} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":101}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_342046804133068/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053272890} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":101}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_342046804133068/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053272890} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":6}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_342046804133068/insights/post_engaged_users/lifetime"},"emitted_at":1671053272891} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_342046804133068/insights/post_negative_feedback/lifetime"},"emitted_at":1671053272891} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_342046804133068/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053272891} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_342046804133068/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053272892} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_342046804133068/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053272892} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":4}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_342046804133068/insights/post_engaged_fan/lifetime"},"emitted_at":1671053272893} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_342046804133068/insights/post_clicks/lifetime"},"emitted_at":1671053272893} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_342046804133068/insights/post_clicks_unique/lifetime"},"emitted_at":1671053272894} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_342046804133068/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053272894} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_342046804133068/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053272895} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2,"love":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_342046804133068/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053272895} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_341595920844823/insights/post_impressions/lifetime"},"emitted_at":1671053272896} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_341595920844823/insights/post_impressions_unique/lifetime"},"emitted_at":1671053272897} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_341595920844823/insights/post_impressions_paid/lifetime"},"emitted_at":1671053272898} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_341595920844823/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053272899} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_341595920844823/insights/post_impressions_fan/lifetime"},"emitted_at":1671053272899} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_341595920844823/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053272900} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_341595920844823/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053272901} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_341595920844823/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053272902} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_341595920844823/insights/post_impressions_organic/lifetime"},"emitted_at":1671053272902} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_341595920844823/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053272903} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_341595920844823/insights/post_impressions_viral/lifetime"},"emitted_at":1671053272903} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_341595920844823/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053272904} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_341595920844823/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053272904} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_341595920844823/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053272904} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_341595920844823/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053272905} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_341595920844823/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053272905} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_341595920844823/insights/post_engaged_users/lifetime"},"emitted_at":1671053272905} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_341595920844823/insights/post_negative_feedback/lifetime"},"emitted_at":1671053272906} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_341595920844823/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053272906} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_341595920844823/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053272907} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_341595920844823/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053272907} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_341595920844823/insights/post_engaged_fan/lifetime"},"emitted_at":1671053272907} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_341595920844823/insights/post_clicks/lifetime"},"emitted_at":1671053272908} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_341595920844823/insights/post_clicks_unique/lifetime"},"emitted_at":1671053272908} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_341595920844823/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053272908} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_341595920844823/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053272909} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_341595920844823/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053272909} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_339425317728550/insights/post_impressions/lifetime"},"emitted_at":1671053272910} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_339425317728550/insights/post_impressions_unique/lifetime"},"emitted_at":1671053272910} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_339425317728550/insights/post_impressions_paid/lifetime"},"emitted_at":1671053272910} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_339425317728550/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053272911} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_339425317728550/insights/post_impressions_fan/lifetime"},"emitted_at":1671053272911} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_339425317728550/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053272912} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_339425317728550/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053272912} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_339425317728550/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053272913} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_339425317728550/insights/post_impressions_organic/lifetime"},"emitted_at":1671053272913} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_339425317728550/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053272914} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_339425317728550/insights/post_impressions_viral/lifetime"},"emitted_at":1671053272914} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_339425317728550/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053272915} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_339425317728550/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053272915} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_339425317728550/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053272915} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_339425317728550/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053272916} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_339425317728550/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053272916} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_339425317728550/insights/post_engaged_users/lifetime"},"emitted_at":1671053272917} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_339425317728550/insights/post_negative_feedback/lifetime"},"emitted_at":1671053272917} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_339425317728550/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053272917} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_339425317728550/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053272918} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_339425317728550/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053272918} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_339425317728550/insights/post_engaged_fan/lifetime"},"emitted_at":1671053272919} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_339425317728550/insights/post_clicks/lifetime"},"emitted_at":1671053272919} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_339425317728550/insights/post_clicks_unique/lifetime"},"emitted_at":1671053272919} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_339425317728550/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053272920} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_339425317728550/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053272921} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_339425317728550/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053272921} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_338811227789959/insights/post_impressions/lifetime"},"emitted_at":1671053272922} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_338811227789959/insights/post_impressions_unique/lifetime"},"emitted_at":1671053272922} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_338811227789959/insights/post_impressions_paid/lifetime"},"emitted_at":1671053272923} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_338811227789959/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053272923} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_338811227789959/insights/post_impressions_fan/lifetime"},"emitted_at":1671053272924} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_338811227789959/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053272924} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_338811227789959/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053272925} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_338811227789959/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053272926} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_338811227789959/insights/post_impressions_organic/lifetime"},"emitted_at":1671053272926} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_338811227789959/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053272927} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_338811227789959/insights/post_impressions_viral/lifetime"},"emitted_at":1671053272928} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_338811227789959/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053272928} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_338811227789959/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053272929} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_338811227789959/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053272931} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_338811227789959/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053272933} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_338811227789959/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053272934} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_338811227789959/insights/post_engaged_users/lifetime"},"emitted_at":1671053272934} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_338811227789959/insights/post_negative_feedback/lifetime"},"emitted_at":1671053272935} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_338811227789959/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053272935} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_338811227789959/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053272936} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_338811227789959/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053272937} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_338811227789959/insights/post_engaged_fan/lifetime"},"emitted_at":1671053272938} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_338811227789959/insights/post_clicks/lifetime"},"emitted_at":1671053272938} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_338811227789959/insights/post_clicks_unique/lifetime"},"emitted_at":1671053272938} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_338811227789959/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053272939} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_338811227789959/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053272939} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_338811227789959/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053272940} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_338179214519827/insights/post_impressions/lifetime"},"emitted_at":1671053272940} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_338179214519827/insights/post_impressions_unique/lifetime"},"emitted_at":1671053272941} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_338179214519827/insights/post_impressions_paid/lifetime"},"emitted_at":1671053272941} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_338179214519827/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053272942} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_338179214519827/insights/post_impressions_fan/lifetime"},"emitted_at":1671053272942} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_338179214519827/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053272943} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_338179214519827/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053272943} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_338179214519827/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053272944} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_338179214519827/insights/post_impressions_organic/lifetime"},"emitted_at":1671053272944} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_338179214519827/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053272945} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_338179214519827/insights/post_impressions_viral/lifetime"},"emitted_at":1671053272945} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_338179214519827/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053272946} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_338179214519827/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053272946} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_338179214519827/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053272946} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_338179214519827/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053272947} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_338179214519827/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053272947} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_338179214519827/insights/post_engaged_users/lifetime"},"emitted_at":1671053272948} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_338179214519827/insights/post_negative_feedback/lifetime"},"emitted_at":1671053272948} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_338179214519827/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053272948} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_338179214519827/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053272949} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_338179214519827/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053272949} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_338179214519827/insights/post_engaged_fan/lifetime"},"emitted_at":1671053272950} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_338179214519827/insights/post_clicks/lifetime"},"emitted_at":1671053272950} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_338179214519827/insights/post_clicks_unique/lifetime"},"emitted_at":1671053272951} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_338179214519827/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053272951} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_338179214519827/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053272951} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_338179214519827/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053272952} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_337568177914264/insights/post_impressions/lifetime"},"emitted_at":1671053272952} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_337568177914264/insights/post_impressions_unique/lifetime"},"emitted_at":1671053272953} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_337568177914264/insights/post_impressions_paid/lifetime"},"emitted_at":1671053272953} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_337568177914264/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053272953} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_337568177914264/insights/post_impressions_fan/lifetime"},"emitted_at":1671053272954} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_337568177914264/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053272954} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_337568177914264/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053272955} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_337568177914264/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053272955} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_337568177914264/insights/post_impressions_organic/lifetime"},"emitted_at":1671053272955} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_337568177914264/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053272956} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_337568177914264/insights/post_impressions_viral/lifetime"},"emitted_at":1671053272957} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_337568177914264/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053272958} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_337568177914264/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053272959} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_337568177914264/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053272959} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_337568177914264/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053272960} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_337568177914264/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053272960} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_337568177914264/insights/post_engaged_users/lifetime"},"emitted_at":1671053272961} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_337568177914264/insights/post_negative_feedback/lifetime"},"emitted_at":1671053272961} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_337568177914264/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053272961} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_337568177914264/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053272962} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_337568177914264/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053272962} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_337568177914264/insights/post_engaged_fan/lifetime"},"emitted_at":1671053272963} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_337568177914264/insights/post_clicks/lifetime"},"emitted_at":1671053272963} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_337568177914264/insights/post_clicks_unique/lifetime"},"emitted_at":1671053272963} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_337568177914264/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053272964} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_337568177914264/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053272964} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_337568177914264/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053272965} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_337178567953225/insights/post_impressions/lifetime"},"emitted_at":1671053272965} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_337178567953225/insights/post_impressions_unique/lifetime"},"emitted_at":1671053272965} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_337178567953225/insights/post_impressions_paid/lifetime"},"emitted_at":1671053272966} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_337178567953225/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053272967} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_337178567953225/insights/post_impressions_fan/lifetime"},"emitted_at":1671053272967} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_337178567953225/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053272968} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_337178567953225/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053272969} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_337178567953225/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053272969} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_337178567953225/insights/post_impressions_organic/lifetime"},"emitted_at":1671053272970} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_337178567953225/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053272970} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_337178567953225/insights/post_impressions_viral/lifetime"},"emitted_at":1671053272971} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_337178567953225/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053272971} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_337178567953225/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053272971} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_337178567953225/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053272972} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_337178567953225/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053272972} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_337178567953225/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053272973} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_337178567953225/insights/post_engaged_users/lifetime"},"emitted_at":1671053272973} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_337178567953225/insights/post_negative_feedback/lifetime"},"emitted_at":1671053272973} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_337178567953225/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053272974} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_337178567953225/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053272975} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_337178567953225/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053272975} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_337178567953225/insights/post_engaged_fan/lifetime"},"emitted_at":1671053272976} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_337178567953225/insights/post_clicks/lifetime"},"emitted_at":1671053272976} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_337178567953225/insights/post_clicks_unique/lifetime"},"emitted_at":1671053272976} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_337178567953225/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053272977} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_337178567953225/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053272977} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_337178567953225/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053272978} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_335101308160951/insights/post_impressions/lifetime"},"emitted_at":1671053272978} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_335101308160951/insights/post_impressions_unique/lifetime"},"emitted_at":1671053272979} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_335101308160951/insights/post_impressions_paid/lifetime"},"emitted_at":1671053272980} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_335101308160951/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053272980} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_335101308160951/insights/post_impressions_fan/lifetime"},"emitted_at":1671053272981} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_335101308160951/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053272981} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_335101308160951/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053272981} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_335101308160951/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053272982} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_335101308160951/insights/post_impressions_organic/lifetime"},"emitted_at":1671053272982} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_335101308160951/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053272983} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_335101308160951/insights/post_impressions_viral/lifetime"},"emitted_at":1671053272983} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_335101308160951/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053272983} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_335101308160951/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053272984} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_335101308160951/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053272984} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_335101308160951/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053272985} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_335101308160951/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053272985} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":5}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_335101308160951/insights/post_engaged_users/lifetime"},"emitted_at":1671053272986} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_335101308160951/insights/post_negative_feedback/lifetime"},"emitted_at":1671053272987} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_335101308160951/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053272987} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_335101308160951/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053272988} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_335101308160951/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053272988} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_335101308160951/insights/post_engaged_fan/lifetime"},"emitted_at":1671053272989} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_335101308160951/insights/post_clicks/lifetime"},"emitted_at":1671053272989} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_335101308160951/insights/post_clicks_unique/lifetime"},"emitted_at":1671053272990} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":3}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_335101308160951/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053272990} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":3}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_335101308160951/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053272991} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_335101308160951/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053272991} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_334495484888200/insights/post_impressions/lifetime"},"emitted_at":1671053272991} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_334495484888200/insights/post_impressions_unique/lifetime"},"emitted_at":1671053272992} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_334495484888200/insights/post_impressions_paid/lifetime"},"emitted_at":1671053272992} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_334495484888200/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053272993} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_334495484888200/insights/post_impressions_fan/lifetime"},"emitted_at":1671053272993} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_334495484888200/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053272993} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_334495484888200/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053272994} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_334495484888200/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053272994} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_334495484888200/insights/post_impressions_organic/lifetime"},"emitted_at":1671053272995} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_334495484888200/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053272996} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_334495484888200/insights/post_impressions_viral/lifetime"},"emitted_at":1671053272996} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_334495484888200/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053272997} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_334495484888200/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053272997} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_334495484888200/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053272998} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_334495484888200/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053272998} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_334495484888200/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053272998} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_334495484888200/insights/post_engaged_users/lifetime"},"emitted_at":1671053272999} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_334495484888200/insights/post_negative_feedback/lifetime"},"emitted_at":1671053272999} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_334495484888200/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053273000} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_334495484888200/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053273000} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_334495484888200/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053273001} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_334495484888200/insights/post_engaged_fan/lifetime"},"emitted_at":1671053273002} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_334495484888200/insights/post_clicks/lifetime"},"emitted_at":1671053273002} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_334495484888200/insights/post_clicks_unique/lifetime"},"emitted_at":1671053273003} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_334495484888200/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053273003} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_334495484888200/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053273004} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_334495484888200/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053273004} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_333862161618199/insights/post_impressions/lifetime"},"emitted_at":1671053273004} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_333862161618199/insights/post_impressions_unique/lifetime"},"emitted_at":1671053273005} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_333862161618199/insights/post_impressions_paid/lifetime"},"emitted_at":1671053273005} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_333862161618199/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053273006} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_333862161618199/insights/post_impressions_fan/lifetime"},"emitted_at":1671053273006} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_333862161618199/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053273007} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_333862161618199/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053273007} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_333862161618199/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053273007} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_333862161618199/insights/post_impressions_organic/lifetime"},"emitted_at":1671053273008} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_333862161618199/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053273009} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_333862161618199/insights/post_impressions_viral/lifetime"},"emitted_at":1671053273009} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_333862161618199/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053273009} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_333862161618199/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053273010} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_333862161618199/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053273010} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_333862161618199/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053273011} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_333862161618199/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053273011} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_333862161618199/insights/post_engaged_users/lifetime"},"emitted_at":1671053273011} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_333862161618199/insights/post_negative_feedback/lifetime"},"emitted_at":1671053273012} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_333862161618199/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053273012} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_333862161618199/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053273013} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_333862161618199/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053273013} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_333862161618199/insights/post_engaged_fan/lifetime"},"emitted_at":1671053273013} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_333862161618199/insights/post_clicks/lifetime"},"emitted_at":1671053273014} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_333862161618199/insights/post_clicks_unique/lifetime"},"emitted_at":1671053273014} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_333862161618199/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053273015} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_333862161618199/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053273015} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_333862161618199/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053273015} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_333234501680965/insights/post_impressions/lifetime"},"emitted_at":1671053273016} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_333234501680965/insights/post_impressions_unique/lifetime"},"emitted_at":1671053273016} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_333234501680965/insights/post_impressions_paid/lifetime"},"emitted_at":1671053273017} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_333234501680965/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053273017} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_333234501680965/insights/post_impressions_fan/lifetime"},"emitted_at":1671053273017} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_333234501680965/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053273018} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_333234501680965/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053273018} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_333234501680965/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053273019} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_333234501680965/insights/post_impressions_organic/lifetime"},"emitted_at":1671053273019} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_333234501680965/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053273020} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_333234501680965/insights/post_impressions_viral/lifetime"},"emitted_at":1671053273020} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_333234501680965/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053273021} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_333234501680965/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053273021} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_333234501680965/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053273022} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_333234501680965/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053273022} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_333234501680965/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053273022} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_333234501680965/insights/post_engaged_users/lifetime"},"emitted_at":1671053273023} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_333234501680965/insights/post_negative_feedback/lifetime"},"emitted_at":1671053273023} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_333234501680965/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053273024} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_333234501680965/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053273024} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_333234501680965/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053273024} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_333234501680965/insights/post_engaged_fan/lifetime"},"emitted_at":1671053273025} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_333234501680965/insights/post_clicks/lifetime"},"emitted_at":1671053273025} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_333234501680965/insights/post_clicks_unique/lifetime"},"emitted_at":1671053273026} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_333234501680965/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053273026} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_333234501680965/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053273026} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_333234501680965/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053273027} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_332744745063274/insights/post_impressions/lifetime"},"emitted_at":1671053273027} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_332744745063274/insights/post_impressions_unique/lifetime"},"emitted_at":1671053273028} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_332744745063274/insights/post_impressions_paid/lifetime"},"emitted_at":1671053273028} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_332744745063274/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053273029} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_332744745063274/insights/post_impressions_fan/lifetime"},"emitted_at":1671053273029} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_332744745063274/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053273030} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_332744745063274/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053273030} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_332744745063274/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053273031} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_332744745063274/insights/post_impressions_organic/lifetime"},"emitted_at":1671053273031} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_332744745063274/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053273031} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_332744745063274/insights/post_impressions_viral/lifetime"},"emitted_at":1671053273032} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_332744745063274/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053273032} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_332744745063274/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053273033} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_332744745063274/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053273033} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_332744745063274/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053273034} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_332744745063274/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053273034} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_332744745063274/insights/post_engaged_users/lifetime"},"emitted_at":1671053273034} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_332744745063274/insights/post_negative_feedback/lifetime"},"emitted_at":1671053273035} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_332744745063274/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053273035} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_332744745063274/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053273036} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_332744745063274/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053273036} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_332744745063274/insights/post_engaged_fan/lifetime"},"emitted_at":1671053273036} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_332744745063274/insights/post_clicks/lifetime"},"emitted_at":1671053273037} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_332744745063274/insights/post_clicks_unique/lifetime"},"emitted_at":1671053273037} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_332744745063274/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053273037} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_332744745063274/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053273038} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_332744745063274/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053273038} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_330620271942388/insights/post_impressions/lifetime"},"emitted_at":1671053273039} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_330620271942388/insights/post_impressions_unique/lifetime"},"emitted_at":1671053273039} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_330620271942388/insights/post_impressions_paid/lifetime"},"emitted_at":1671053273039} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_330620271942388/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053273040} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_330620271942388/insights/post_impressions_fan/lifetime"},"emitted_at":1671053273040} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_330620271942388/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053273040} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_330620271942388/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053273041} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_330620271942388/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053273041} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_330620271942388/insights/post_impressions_organic/lifetime"},"emitted_at":1671053273042} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_330620271942388/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053273042} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_330620271942388/insights/post_impressions_viral/lifetime"},"emitted_at":1671053273042} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_330620271942388/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053273043} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_330620271942388/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053273043} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_330620271942388/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053273043} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_330620271942388/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053273044} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_330620271942388/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053273044} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_330620271942388/insights/post_engaged_users/lifetime"},"emitted_at":1671053273045} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_330620271942388/insights/post_negative_feedback/lifetime"},"emitted_at":1671053273045} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_330620271942388/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053273045} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_330620271942388/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053273046} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_330620271942388/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053273046} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":4}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_330620271942388/insights/post_engaged_fan/lifetime"},"emitted_at":1671053273047} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_330620271942388/insights/post_clicks/lifetime"},"emitted_at":1671053273047} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_330620271942388/insights/post_clicks_unique/lifetime"},"emitted_at":1671053273047} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_330620271942388/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053273048} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_330620271942388/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053273048} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1,"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_330620271942388/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053273049} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_329983958672686/insights/post_impressions/lifetime"},"emitted_at":1671053273049} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_329983958672686/insights/post_impressions_unique/lifetime"},"emitted_at":1671053273049} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_329983958672686/insights/post_impressions_paid/lifetime"},"emitted_at":1671053273050} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_329983958672686/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053273050} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_329983958672686/insights/post_impressions_fan/lifetime"},"emitted_at":1671053273050} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_329983958672686/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053273051} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_329983958672686/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053273051} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_329983958672686/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053273052} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_329983958672686/insights/post_impressions_organic/lifetime"},"emitted_at":1671053273052} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_329983958672686/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053273052} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_329983958672686/insights/post_impressions_viral/lifetime"},"emitted_at":1671053273053} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_329983958672686/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053273053} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_329983958672686/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053273053} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_329983958672686/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053273054} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_329983958672686/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053273054} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_329983958672686/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053273055} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_329983958672686/insights/post_engaged_users/lifetime"},"emitted_at":1671053273055} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_329983958672686/insights/post_negative_feedback/lifetime"},"emitted_at":1671053273055} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_329983958672686/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053273056} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_329983958672686/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053273056} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_329983958672686/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053273057} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_329983958672686/insights/post_engaged_fan/lifetime"},"emitted_at":1671053273057} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_329983958672686/insights/post_clicks/lifetime"},"emitted_at":1671053273057} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_329983958672686/insights/post_clicks_unique/lifetime"},"emitted_at":1671053273058} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_329983958672686/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053273058} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_329983958672686/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053273059} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_329983958672686/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053273059} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_329693962035019/insights/post_impressions/lifetime"},"emitted_at":1671053273060} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_329693962035019/insights/post_impressions_unique/lifetime"},"emitted_at":1671053273060} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_329693962035019/insights/post_impressions_paid/lifetime"},"emitted_at":1671053273061} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_329693962035019/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053273061} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_329693962035019/insights/post_impressions_fan/lifetime"},"emitted_at":1671053273062} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_329693962035019/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053273062} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_329693962035019/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053273063} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_329693962035019/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053273063} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_329693962035019/insights/post_impressions_organic/lifetime"},"emitted_at":1671053273064} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_329693962035019/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053273064} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_329693962035019/insights/post_impressions_viral/lifetime"},"emitted_at":1671053273064} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_329693962035019/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053273065} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_329693962035019/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053273065} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_329693962035019/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053273066} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_329693962035019/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053273066} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_329693962035019/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053273067} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_329693962035019/insights/post_engaged_users/lifetime"},"emitted_at":1671053273067} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_329693962035019/insights/post_negative_feedback/lifetime"},"emitted_at":1671053273067} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_329693962035019/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053273068} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_329693962035019/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053273068} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_329693962035019/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053273069} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_329693962035019/insights/post_engaged_fan/lifetime"},"emitted_at":1671053273069} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_329693962035019/insights/post_clicks/lifetime"},"emitted_at":1671053273069} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_329693962035019/insights/post_clicks_unique/lifetime"},"emitted_at":1671053273070} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_329693962035019/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053273070} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_329693962035019/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053273070} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_329693962035019/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053273071} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_329298192074596/insights/post_impressions/lifetime"},"emitted_at":1671053273071} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_329298192074596/insights/post_impressions_unique/lifetime"},"emitted_at":1671053273071} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_329298192074596/insights/post_impressions_paid/lifetime"},"emitted_at":1671053273072} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_329298192074596/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053273072} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_329298192074596/insights/post_impressions_fan/lifetime"},"emitted_at":1671053273073} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_329298192074596/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053273073} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_329298192074596/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053273073} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_329298192074596/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053273074} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_329298192074596/insights/post_impressions_organic/lifetime"},"emitted_at":1671053273074} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_329298192074596/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053273074} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_329298192074596/insights/post_impressions_viral/lifetime"},"emitted_at":1671053273075} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_329298192074596/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053273075} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_329298192074596/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053273075} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_329298192074596/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053273076} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_329298192074596/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053273077} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_329298192074596/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053273077} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_329298192074596/insights/post_engaged_users/lifetime"},"emitted_at":1671053273078} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_329298192074596/insights/post_negative_feedback/lifetime"},"emitted_at":1671053273078} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_329298192074596/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053273078} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_329298192074596/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053273079} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_329298192074596/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053273079} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_329298192074596/insights/post_engaged_fan/lifetime"},"emitted_at":1671053273080} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_329298192074596/insights/post_clicks/lifetime"},"emitted_at":1671053273080} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_329298192074596/insights/post_clicks_unique/lifetime"},"emitted_at":1671053273081} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_329298192074596/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053273081} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_329298192074596/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053273081} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_329298192074596/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053273082} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_328599832144432/insights/post_impressions/lifetime"},"emitted_at":1671053273082} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_328599832144432/insights/post_impressions_unique/lifetime"},"emitted_at":1671053273082} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_328599832144432/insights/post_impressions_paid/lifetime"},"emitted_at":1671053273083} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_328599832144432/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053273083} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_328599832144432/insights/post_impressions_fan/lifetime"},"emitted_at":1671053273083} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_328599832144432/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053273084} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_328599832144432/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053273084} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_328599832144432/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053273085} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_328599832144432/insights/post_impressions_organic/lifetime"},"emitted_at":1671053273086} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_328599832144432/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053273086} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_328599832144432/insights/post_impressions_viral/lifetime"},"emitted_at":1671053273087} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_328599832144432/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053273088} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_328599832144432/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053273088} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_328599832144432/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053273088} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_328599832144432/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053273090} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_328599832144432/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053273091} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_328599832144432/insights/post_engaged_users/lifetime"},"emitted_at":1671053273092} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_328599832144432/insights/post_negative_feedback/lifetime"},"emitted_at":1671053273095} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_328599832144432/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053273095} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_328599832144432/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053273096} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_328599832144432/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053273097} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_328599832144432/insights/post_engaged_fan/lifetime"},"emitted_at":1671053273097} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_328599832144432/insights/post_clicks/lifetime"},"emitted_at":1671053273098} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_328599832144432/insights/post_clicks_unique/lifetime"},"emitted_at":1671053273098} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_328599832144432/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053273099} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_328599832144432/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053273099} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_328599832144432/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053273100} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_328191072185308/insights/post_impressions/lifetime"},"emitted_at":1671053273100} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_328191072185308/insights/post_impressions_unique/lifetime"},"emitted_at":1671053273101} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_328191072185308/insights/post_impressions_paid/lifetime"},"emitted_at":1671053273101} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_328191072185308/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053273101} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_328191072185308/insights/post_impressions_fan/lifetime"},"emitted_at":1671053273102} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_328191072185308/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053273102} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_328191072185308/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053273102} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_328191072185308/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053273103} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_328191072185308/insights/post_impressions_organic/lifetime"},"emitted_at":1671053273103} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_328191072185308/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053273104} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_328191072185308/insights/post_impressions_viral/lifetime"},"emitted_at":1671053273104} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_328191072185308/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053273105} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_328191072185308/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053273105} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_328191072185308/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053273106} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_328191072185308/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053273106} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_328191072185308/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053273106} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_328191072185308/insights/post_engaged_users/lifetime"},"emitted_at":1671053273107} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_328191072185308/insights/post_negative_feedback/lifetime"},"emitted_at":1671053273107} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_328191072185308/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053273108} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_328191072185308/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053273108} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_328191072185308/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053273108} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_328191072185308/insights/post_engaged_fan/lifetime"},"emitted_at":1671053273109} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_328191072185308/insights/post_clicks/lifetime"},"emitted_at":1671053273109} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_328191072185308/insights/post_clicks_unique/lifetime"},"emitted_at":1671053273110} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_328191072185308/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053273110} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_328191072185308/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053273110} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_328191072185308/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053273111} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_326132645724484/insights/post_impressions/lifetime"},"emitted_at":1671053274775} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_326132645724484/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274776} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_326132645724484/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274777} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_326132645724484/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274778} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_326132645724484/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274778} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_326132645724484/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274779} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_326132645724484/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274780} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_326132645724484/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274780} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_326132645724484/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274781} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_326132645724484/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274781} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_326132645724484/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274782} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_326132645724484/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274782} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_326132645724484/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274783} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_326132645724484/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274784} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_326132645724484/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274784} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_326132645724484/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274785} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_326132645724484/insights/post_engaged_users/lifetime"},"emitted_at":1671053274785} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_326132645724484/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274786} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_326132645724484/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274786} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_326132645724484/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274787} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_326132645724484/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274787} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_326132645724484/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274788} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_326132645724484/insights/post_clicks/lifetime"},"emitted_at":1671053274788} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_326132645724484/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274789} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_326132645724484/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274789} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_326132645724484/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274790} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_326132645724484/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274790} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":172}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_325536522450763/insights/post_impressions/lifetime"},"emitted_at":1671053274791} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":168}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_325536522450763/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274791} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_325536522450763/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274792} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_325536522450763/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274792} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_325536522450763/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274793} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_325536522450763/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274793} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_325536522450763/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274794} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_325536522450763/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274794} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":172}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_325536522450763/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274795} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":168}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_325536522450763/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274795} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":142}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_325536522450763/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274796} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":139}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_325536522450763/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274796} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_325536522450763/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274796} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_325536522450763/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274797} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":142}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_325536522450763/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274797} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":139}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_325536522450763/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274798} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":7}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_325536522450763/insights/post_engaged_users/lifetime"},"emitted_at":1671053274798} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_325536522450763/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274799} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_325536522450763/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274799} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_325536522450763/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274800} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_325536522450763/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274800} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_325536522450763/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274800} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":4}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_325536522450763/insights/post_clicks/lifetime"},"emitted_at":1671053274801} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_325536522450763/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274801} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":3}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_325536522450763/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274802} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":3}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_325536522450763/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274802} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_325536522450763/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274803} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":59}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_324930342511381/insights/post_impressions/lifetime"},"emitted_at":1671053274803} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":59}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_324930342511381/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274803} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_324930342511381/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274804} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_324930342511381/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274804} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_324930342511381/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274805} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_324930342511381/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274805} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_324930342511381/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274805} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_324930342511381/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274806} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":59}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_324930342511381/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274806} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":59}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_324930342511381/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274807} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_324930342511381/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274807} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_324930342511381/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274807} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_324930342511381/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274808} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_324930342511381/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274808} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":26}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_324930342511381/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274809} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":26}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_324930342511381/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274809} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":5}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_324930342511381/insights/post_engaged_users/lifetime"},"emitted_at":1671053274809} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_324930342511381/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274810} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_324930342511381/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274810} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_324930342511381/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274811} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_324930342511381/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274811} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":4}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_324930342511381/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274811} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":6}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_324930342511381/insights/post_clicks/lifetime"},"emitted_at":1671053274812} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_324930342511381/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274812} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":6}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_324930342511381/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274812} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":4}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_324930342511381/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274813} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":3,"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_324930342511381/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274813} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_324308695906879/insights/post_impressions/lifetime"},"emitted_at":1671053274814} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_324308695906879/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274814} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_324308695906879/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274814} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_324308695906879/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274815} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_324308695906879/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274815} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_324308695906879/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274815} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_324308695906879/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274816} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_324308695906879/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274816} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_324308695906879/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274816} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_324308695906879/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274817} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_324308695906879/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274817} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_324308695906879/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274817} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_324308695906879/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274818} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_324308695906879/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274818} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_324308695906879/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274818} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_324308695906879/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274819} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_324308695906879/insights/post_engaged_users/lifetime"},"emitted_at":1671053274819} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_324308695906879/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274819} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_324308695906879/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274820} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_324308695906879/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274820} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_324308695906879/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274820} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_324308695906879/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274821} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_324308695906879/insights/post_clicks/lifetime"},"emitted_at":1671053274821} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_324308695906879/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274821} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_324308695906879/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274822} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_324308695906879/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274822} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_324308695906879/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274822} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_323983082606107/insights/post_impressions/lifetime"},"emitted_at":1671053274823} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_323983082606107/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274823} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_323983082606107/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274823} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_323983082606107/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274824} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_323983082606107/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274824} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_323983082606107/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274824} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_323983082606107/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274825} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_323983082606107/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274825} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_323983082606107/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274825} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_323983082606107/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274826} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_323983082606107/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274826} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_323983082606107/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274826} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_323983082606107/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274827} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_323983082606107/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274827} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_323983082606107/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274827} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_323983082606107/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274828} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_323983082606107/insights/post_engaged_users/lifetime"},"emitted_at":1671053274828} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_323983082606107/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274828} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_323983082606107/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274829} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_323983082606107/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274829} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_323983082606107/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274829} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_323983082606107/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274830} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_323983082606107/insights/post_clicks/lifetime"},"emitted_at":1671053274830} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_323983082606107/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274830} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_323983082606107/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274831} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_323983082606107/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274831} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_323983082606107/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274832} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":137}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_323898199281262/insights/post_impressions/lifetime"},"emitted_at":1671053274832} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":137}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_323898199281262/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274832} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_323898199281262/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274833} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_323898199281262/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274833} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_323898199281262/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274834} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_323898199281262/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274834} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_323898199281262/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274834} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_323898199281262/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274835} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":137}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_323898199281262/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274835} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":137}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_323898199281262/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274835} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":112}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_323898199281262/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274836} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":112}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_323898199281262/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274836} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_323898199281262/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274836} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_323898199281262/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274837} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":112}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_323898199281262/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274837} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":112}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_323898199281262/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274837} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_323898199281262/insights/post_engaged_users/lifetime"},"emitted_at":1671053274838} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_323898199281262/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274838} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_323898199281262/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274838} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_323898199281262/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274839} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_323898199281262/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274839} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_323898199281262/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274839} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_323898199281262/insights/post_clicks/lifetime"},"emitted_at":1671053274840} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_323898199281262/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274840} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_323898199281262/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274840} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_323898199281262/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274841} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_323898199281262/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274841} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_321842882820127/insights/post_impressions/lifetime"},"emitted_at":1671053274842} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_321842882820127/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274842} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_321842882820127/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274842} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_321842882820127/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274843} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_321842882820127/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274843} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_321842882820127/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274843} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_321842882820127/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274844} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_321842882820127/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274844} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_321842882820127/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274844} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_321842882820127/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274845} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_321842882820127/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274845} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_321842882820127/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274845} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_321842882820127/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274846} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_321842882820127/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274846} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_321842882820127/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274846} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_321842882820127/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274847} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_321842882820127/insights/post_engaged_users/lifetime"},"emitted_at":1671053274847} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_321842882820127/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274847} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_321842882820127/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274848} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_321842882820127/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274848} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_321842882820127/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274848} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_321842882820127/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274849} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_321842882820127/insights/post_clicks/lifetime"},"emitted_at":1671053274849} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_321842882820127/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274850} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_321842882820127/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274850} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_321842882820127/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274851} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_321842882820127/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274851} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_321218792882536/insights/post_impressions/lifetime"},"emitted_at":1671053274851} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_321218792882536/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274852} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_321218792882536/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274852} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_321218792882536/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274852} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_321218792882536/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274853} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_321218792882536/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274853} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_321218792882536/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274853} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_321218792882536/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274854} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_321218792882536/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274854} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_321218792882536/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274854} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_321218792882536/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274855} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_321218792882536/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274855} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_321218792882536/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274856} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_321218792882536/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274856} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_321218792882536/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274856} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_321218792882536/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274857} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_321218792882536/insights/post_engaged_users/lifetime"},"emitted_at":1671053274857} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_321218792882536/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274857} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_321218792882536/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274858} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_321218792882536/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274858} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_321218792882536/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274858} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_321218792882536/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274859} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_321218792882536/insights/post_clicks/lifetime"},"emitted_at":1671053274859} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_321218792882536/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274860} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_321218792882536/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274860} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_321218792882536/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274861} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_321218792882536/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274861} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_320587009612381/insights/post_impressions/lifetime"},"emitted_at":1671053274861} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_320587009612381/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274862} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_320587009612381/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274862} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_320587009612381/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274862} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_320587009612381/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274863} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_320587009612381/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274863} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_320587009612381/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274863} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_320587009612381/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274864} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_320587009612381/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274864} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_320587009612381/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274865} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_320587009612381/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274865} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_320587009612381/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274865} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_320587009612381/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274866} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_320587009612381/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274866} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_320587009612381/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274866} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_320587009612381/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274867} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_320587009612381/insights/post_engaged_users/lifetime"},"emitted_at":1671053274867} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_320587009612381/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274867} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_320587009612381/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274868} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_320587009612381/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274868} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_320587009612381/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274868} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_320587009612381/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274869} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_320587009612381/insights/post_clicks/lifetime"},"emitted_at":1671053274869} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_320587009612381/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274869} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_320587009612381/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274870} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_320587009612381/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274870} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_320587009612381/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274870} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_319952166342532/insights/post_impressions/lifetime"},"emitted_at":1671053274871} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_319952166342532/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274871} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_319952166342532/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274871} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_319952166342532/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274872} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_319952166342532/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274872} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_319952166342532/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274873} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_319952166342532/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274873} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_319952166342532/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274873} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_319952166342532/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274874} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_319952166342532/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274874} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_319952166342532/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274874} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_319952166342532/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274875} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_319952166342532/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274875} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_319952166342532/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274875} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_319952166342532/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274876} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_319952166342532/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274876} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_319952166342532/insights/post_engaged_users/lifetime"},"emitted_at":1671053274876} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_319952166342532/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274877} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_319952166342532/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274877} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_319952166342532/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274877} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_319952166342532/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274878} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_319952166342532/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274878} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_319952166342532/insights/post_clicks/lifetime"},"emitted_at":1671053274878} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_319952166342532/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274879} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_319952166342532/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274879} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_319952166342532/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274880} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_319952166342532/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274880} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_319557823048633/insights/post_impressions/lifetime"},"emitted_at":1671053274880} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_319557823048633/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274881} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_319557823048633/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274881} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_319557823048633/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274882} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_319557823048633/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274882} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_319557823048633/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274882} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_319557823048633/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274883} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_319557823048633/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274883} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_319557823048633/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274883} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_319557823048633/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274884} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_319557823048633/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274884} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_319557823048633/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274884} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_319557823048633/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274885} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_319557823048633/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274885} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_319557823048633/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274885} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_319557823048633/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274886} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_319557823048633/insights/post_engaged_users/lifetime"},"emitted_at":1671053274886} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_319557823048633/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274886} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_319557823048633/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274887} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_319557823048633/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274887} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_319557823048633/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274887} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_319557823048633/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274888} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_319557823048633/insights/post_clicks/lifetime"},"emitted_at":1671053274888} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_319557823048633/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274888} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_319557823048633/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274889} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_319557823048633/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274889} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_319557823048633/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274889} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_317531956584553/insights/post_impressions/lifetime"},"emitted_at":1671053274890} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_317531956584553/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274890} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_317531956584553/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274890} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_317531956584553/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274891} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_317531956584553/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274891} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_317531956584553/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274891} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_317531956584553/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274892} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_317531956584553/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274892} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_317531956584553/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274892} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_317531956584553/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274893} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_317531956584553/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274893} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_317531956584553/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274893} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_317531956584553/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274894} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_317531956584553/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274894} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_317531956584553/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274894} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_317531956584553/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274895} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_317531956584553/insights/post_engaged_users/lifetime"},"emitted_at":1671053274895} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_317531956584553/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274895} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_317531956584553/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274896} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_317531956584553/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274896} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_317531956584553/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274896} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_317531956584553/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274897} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_317531956584553/insights/post_clicks/lifetime"},"emitted_at":1671053274897} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_317531956584553/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274897} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_317531956584553/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274898} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_317531956584553/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274898} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_317531956584553/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274898} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_317176583286757/insights/post_impressions/lifetime"},"emitted_at":1671053274899} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_317176583286757/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274899} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_317176583286757/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274900} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_317176583286757/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274900} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_317176583286757/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274900} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_317176583286757/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274901} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_317176583286757/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274901} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_317176583286757/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274901} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_317176583286757/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274902} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_317176583286757/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274902} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_317176583286757/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274903} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_317176583286757/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274903} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":27}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_317176583286757/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274903} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_317176583286757/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274904} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_317176583286757/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274904} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_317176583286757/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274904} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_317176583286757/insights/post_engaged_users/lifetime"},"emitted_at":1671053274905} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_317176583286757/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274905} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_317176583286757/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274905} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_317176583286757/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274906} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_317176583286757/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274906} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_317176583286757/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274906} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_317176583286757/insights/post_clicks/lifetime"},"emitted_at":1671053274907} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_317176583286757/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274907} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_317176583286757/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274907} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_317176583286757/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274908} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_317176583286757/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274908} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_317172089953873/insights/post_impressions/lifetime"},"emitted_at":1671053274908} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_317172089953873/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274909} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_317172089953873/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274909} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_317172089953873/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274909} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_317172089953873/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274910} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_317172089953873/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274910} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_317172089953873/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274910} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_317172089953873/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274911} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_317172089953873/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274911} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_317172089953873/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274911} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_317172089953873/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274912} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_317172089953873/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274912} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_317172089953873/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274912} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_317172089953873/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274913} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_317172089953873/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274913} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_317172089953873/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274913} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_317172089953873/insights/post_engaged_users/lifetime"},"emitted_at":1671053274914} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_317172089953873/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274914} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_317172089953873/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274914} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_317172089953873/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274915} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_317172089953873/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274915} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_317172089953873/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274915} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_317172089953873/insights/post_clicks/lifetime"},"emitted_at":1671053274916} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_317172089953873/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274916} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_317172089953873/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274916} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_317172089953873/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274917} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_317172089953873/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274917} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":157}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_316938416643907/insights/post_impressions/lifetime"},"emitted_at":1671053274917} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":151}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_316938416643907/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274918} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_316938416643907/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274918} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_316938416643907/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274918} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_316938416643907/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274919} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_316938416643907/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274919} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_316938416643907/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274920} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_316938416643907/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274920} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":157}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_316938416643907/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274920} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":151}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_316938416643907/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274921} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":138}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_316938416643907/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274921} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":133}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_316938416643907/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274921} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_316938416643907/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274922} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_316938416643907/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274922} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":138}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_316938416643907/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274922} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":133}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_316938416643907/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274923} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_316938416643907/insights/post_engaged_users/lifetime"},"emitted_at":1671053274923} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_316938416643907/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274923} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_316938416643907/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274924} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_316938416643907/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274924} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_316938416643907/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274924} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_316938416643907/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274925} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_316938416643907/insights/post_clicks/lifetime"},"emitted_at":1671053274925} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_316938416643907/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274926} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_316938416643907/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274926} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_316938416643907/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274926} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_316938416643907/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274927} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_316339750037107/insights/post_impressions/lifetime"},"emitted_at":1671053274927} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_316339750037107/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274927} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_316339750037107/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274928} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_316339750037107/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274928} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_316339750037107/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274928} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_316339750037107/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274929} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_316339750037107/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274929} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_316339750037107/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274929} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_316339750037107/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274930} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_316339750037107/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274930} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_316339750037107/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274930} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_316339750037107/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274931} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_316339750037107/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274931} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_316339750037107/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274931} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_316339750037107/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274932} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_316339750037107/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274932} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_316339750037107/insights/post_engaged_users/lifetime"},"emitted_at":1671053274932} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_316339750037107/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274933} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_316339750037107/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274933} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_316339750037107/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274933} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_316339750037107/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274934} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_316339750037107/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274934} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_316339750037107/insights/post_clicks/lifetime"},"emitted_at":1671053274934} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_316339750037107/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274935} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_316339750037107/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274935} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_316339750037107/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274935} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_316339750037107/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274936} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_315749580096124/insights/post_impressions/lifetime"},"emitted_at":1671053274936} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_315749580096124/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274936} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_315749580096124/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274937} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_315749580096124/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274937} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_315749580096124/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274937} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_315749580096124/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274938} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_315749580096124/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274938} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_315749580096124/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274938} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_315749580096124/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274939} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_315749580096124/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274939} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_315749580096124/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274939} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_315749580096124/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274940} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_315749580096124/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274940} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_315749580096124/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274940} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_315749580096124/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274941} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_315749580096124/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274941} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_315749580096124/insights/post_engaged_users/lifetime"},"emitted_at":1671053274941} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_315749580096124/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274942} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_315749580096124/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274942} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_315749580096124/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274943} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_315749580096124/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274943} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_315749580096124/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274943} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_315749580096124/insights/post_clicks/lifetime"},"emitted_at":1671053274944} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_315749580096124/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274944} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_315749580096124/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274944} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_315749580096124/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274945} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_315749580096124/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274945} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_315369863467429/insights/post_impressions/lifetime"},"emitted_at":1671053274945} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_315369863467429/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274946} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_315369863467429/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274946} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_315369863467429/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274946} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_315369863467429/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274947} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_315369863467429/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274947} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_315369863467429/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274947} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_315369863467429/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274948} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_315369863467429/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274948} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_315369863467429/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274949} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_315369863467429/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274949} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_315369863467429/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274949} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_315369863467429/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274950} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_315369863467429/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274950} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_315369863467429/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274950} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_315369863467429/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274951} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_315369863467429/insights/post_engaged_users/lifetime"},"emitted_at":1671053274951} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_315369863467429/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274951} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_315369863467429/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274952} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_315369863467429/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274952} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_315369863467429/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274952} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_315369863467429/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274953} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_315369863467429/insights/post_clicks/lifetime"},"emitted_at":1671053274953} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_315369863467429/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274953} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_315369863467429/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274954} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_315369863467429/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274954} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_315369863467429/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274954} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_313545176983231/insights/post_impressions/lifetime"},"emitted_at":1671053274955} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_313545176983231/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274955} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_313545176983231/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274955} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_313545176983231/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274956} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_313545176983231/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274956} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_313545176983231/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274956} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_313545176983231/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274957} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_313545176983231/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274957} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_313545176983231/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274957} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_313545176983231/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274958} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_313545176983231/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274958} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_313545176983231/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274958} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_313545176983231/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274959} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_313545176983231/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274959} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_313545176983231/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274959} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_313545176983231/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274960} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_313545176983231/insights/post_engaged_users/lifetime"},"emitted_at":1671053274960} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_313545176983231/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274960} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_313545176983231/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274961} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_313545176983231/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274961} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_313545176983231/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274961} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_313545176983231/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274962} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_313545176983231/insights/post_clicks/lifetime"},"emitted_at":1671053274962} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_313545176983231/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274962} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_313545176983231/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274963} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_313545176983231/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274963} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_313545176983231/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274963} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_313357733668642/insights/post_impressions/lifetime"},"emitted_at":1671053274964} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_313357733668642/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274964} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_313357733668642/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274964} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_313357733668642/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274965} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_313357733668642/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274965} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_313357733668642/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274965} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_313357733668642/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274966} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_313357733668642/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274966} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_313357733668642/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274966} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_313357733668642/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274967} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_313357733668642/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274967} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_313357733668642/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274967} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_313357733668642/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274968} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_313357733668642/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274968} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_313357733668642/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274968} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_313357733668642/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274969} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_313357733668642/insights/post_engaged_users/lifetime"},"emitted_at":1671053274969} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_313357733668642/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274970} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_313357733668642/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274970} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_313357733668642/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274970} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_313357733668642/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274971} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_313357733668642/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274971} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_313357733668642/insights/post_clicks/lifetime"},"emitted_at":1671053274971} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_313357733668642/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274972} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_313357733668642/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274972} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_313357733668642/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274972} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_313357733668642/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274973} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_312747093729706/insights/post_impressions/lifetime"},"emitted_at":1671053274973} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_312747093729706/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274973} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_312747093729706/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274974} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_312747093729706/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274974} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_312747093729706/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274974} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_312747093729706/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274975} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_312747093729706/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274975} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_312747093729706/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274975} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_312747093729706/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274976} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_312747093729706/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274976} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_312747093729706/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274976} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_312747093729706/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274977} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_312747093729706/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274977} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_312747093729706/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274977} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_312747093729706/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274978} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_312747093729706/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274978} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_312747093729706/insights/post_engaged_users/lifetime"},"emitted_at":1671053274978} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_312747093729706/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274979} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_312747093729706/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274979} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_312747093729706/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274979} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_312747093729706/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274980} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_312747093729706/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274980} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_312747093729706/insights/post_clicks/lifetime"},"emitted_at":1671053274980} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_312747093729706/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274981} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_312747093729706/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274981} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_312747093729706/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274981} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_312747093729706/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274982} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_311574580513624/insights/post_impressions/lifetime"},"emitted_at":1671053274982} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_311574580513624/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274982} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_311574580513624/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274983} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_311574580513624/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274983} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_311574580513624/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274983} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_311574580513624/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274984} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_311574580513624/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274984} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_311574580513624/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274984} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_311574580513624/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274985} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_311574580513624/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274985} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_311574580513624/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274985} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_311574580513624/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274986} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_311574580513624/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274986} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_311574580513624/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274986} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_311574580513624/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274987} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_311574580513624/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274987} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_311574580513624/insights/post_engaged_users/lifetime"},"emitted_at":1671053274988} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_311574580513624/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274988} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_311574580513624/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274988} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_311574580513624/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274989} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_311574580513624/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274989} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_311574580513624/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274989} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_311574580513624/insights/post_clicks/lifetime"},"emitted_at":1671053274990} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_311574580513624/insights/post_clicks_unique/lifetime"},"emitted_at":1671053274990} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_311574580513624/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053274990} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_311574580513624/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053274991} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_311574580513624/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053274991} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_311204847217264/insights/post_impressions/lifetime"},"emitted_at":1671053274991} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_311204847217264/insights/post_impressions_unique/lifetime"},"emitted_at":1671053274992} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_311204847217264/insights/post_impressions_paid/lifetime"},"emitted_at":1671053274992} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_311204847217264/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053274992} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_311204847217264/insights/post_impressions_fan/lifetime"},"emitted_at":1671053274993} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_311204847217264/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053274993} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_311204847217264/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053274993} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_311204847217264/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053274994} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_311204847217264/insights/post_impressions_organic/lifetime"},"emitted_at":1671053274994} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_311204847217264/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053274994} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_311204847217264/insights/post_impressions_viral/lifetime"},"emitted_at":1671053274995} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_311204847217264/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053274995} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_311204847217264/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053274996} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_311204847217264/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053274996} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_311204847217264/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053274997} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_311204847217264/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053274997} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_311204847217264/insights/post_engaged_users/lifetime"},"emitted_at":1671053274997} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_311204847217264/insights/post_negative_feedback/lifetime"},"emitted_at":1671053274998} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_311204847217264/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053274998} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_311204847217264/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053274998} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_311204847217264/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053274999} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_311204847217264/insights/post_engaged_fan/lifetime"},"emitted_at":1671053274999} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_311204847217264/insights/post_clicks/lifetime"},"emitted_at":1671053274999} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_311204847217264/insights/post_clicks_unique/lifetime"},"emitted_at":1671053275000} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_311204847217264/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053275000} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_311204847217264/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053275001} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_311204847217264/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053275001} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_311175533886862/insights/post_impressions/lifetime"},"emitted_at":1671053275001} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_311175533886862/insights/post_impressions_unique/lifetime"},"emitted_at":1671053275002} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_311175533886862/insights/post_impressions_paid/lifetime"},"emitted_at":1671053275002} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_311175533886862/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053275002} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_311175533886862/insights/post_impressions_fan/lifetime"},"emitted_at":1671053275003} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_311175533886862/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053275003} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_311175533886862/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053275003} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_311175533886862/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053275004} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_311175533886862/insights/post_impressions_organic/lifetime"},"emitted_at":1671053275004} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_311175533886862/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053275004} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_311175533886862/insights/post_impressions_viral/lifetime"},"emitted_at":1671053275005} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_311175533886862/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053275005} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_311175533886862/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053275005} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_311175533886862/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053275006} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_311175533886862/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053275006} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_311175533886862/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053275007} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_311175533886862/insights/post_engaged_users/lifetime"},"emitted_at":1671053275007} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_311175533886862/insights/post_negative_feedback/lifetime"},"emitted_at":1671053275008} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_311175533886862/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053275008} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_311175533886862/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053275008} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_311175533886862/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053275009} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_311175533886862/insights/post_engaged_fan/lifetime"},"emitted_at":1671053275009} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_311175533886862/insights/post_clicks/lifetime"},"emitted_at":1671053275009} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_311175533886862/insights/post_clicks_unique/lifetime"},"emitted_at":1671053275010} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_311175533886862/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053275010} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_311175533886862/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053275010} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_311175533886862/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053275011} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_309161340754948/insights/post_impressions/lifetime"},"emitted_at":1671053275011} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_309161340754948/insights/post_impressions_unique/lifetime"},"emitted_at":1671053275012} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_309161340754948/insights/post_impressions_paid/lifetime"},"emitted_at":1671053275012} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_309161340754948/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053275012} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_309161340754948/insights/post_impressions_fan/lifetime"},"emitted_at":1671053275013} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_309161340754948/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053275013} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_309161340754948/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053275013} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_309161340754948/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053275014} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_309161340754948/insights/post_impressions_organic/lifetime"},"emitted_at":1671053275014} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_309161340754948/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053275014} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_309161340754948/insights/post_impressions_viral/lifetime"},"emitted_at":1671053275015} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_309161340754948/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053275015} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_309161340754948/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053275016} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_309161340754948/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053275016} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_309161340754948/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053275016} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_309161340754948/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053275017} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_309161340754948/insights/post_engaged_users/lifetime"},"emitted_at":1671053275017} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_309161340754948/insights/post_negative_feedback/lifetime"},"emitted_at":1671053275017} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_309161340754948/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053275018} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_309161340754948/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053275018} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_309161340754948/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053275019} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_309161340754948/insights/post_engaged_fan/lifetime"},"emitted_at":1671053275019} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_309161340754948/insights/post_clicks/lifetime"},"emitted_at":1671053275019} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_309161340754948/insights/post_clicks_unique/lifetime"},"emitted_at":1671053275020} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_309161340754948/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053275020} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_309161340754948/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053275020} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_309161340754948/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053275021} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_308555280815554/insights/post_impressions/lifetime"},"emitted_at":1671053276366} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_308555280815554/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276366} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_308555280815554/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276367} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_308555280815554/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276368} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_308555280815554/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276369} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_308555280815554/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276370} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_308555280815554/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276370} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_308555280815554/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276371} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_308555280815554/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276372} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_308555280815554/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276373} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_308555280815554/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276373} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_308555280815554/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276374} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_308555280815554/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276375} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_308555280815554/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276375} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_308555280815554/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276376} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_308555280815554/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276376} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_308555280815554/insights/post_engaged_users/lifetime"},"emitted_at":1671053276377} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_308555280815554/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276377} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_308555280815554/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276377} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_308555280815554/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276378} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_308555280815554/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276378} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_308555280815554/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276379} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_308555280815554/insights/post_clicks/lifetime"},"emitted_at":1671053276379} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_308555280815554/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276380} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_308555280815554/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276380} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_308555280815554/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276381} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_308555280815554/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276381} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_308121080858974/insights/post_impressions/lifetime"},"emitted_at":1671053276382} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_308121080858974/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276382} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_308121080858974/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276383} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_308121080858974/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276383} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_308121080858974/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276384} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_308121080858974/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276384} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_308121080858974/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276385} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_308121080858974/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276385} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_308121080858974/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276386} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_308121080858974/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276386} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_308121080858974/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276387} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_308121080858974/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276387} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_308121080858974/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276388} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_308121080858974/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276388} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_308121080858974/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276389} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_308121080858974/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276389} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_308121080858974/insights/post_engaged_users/lifetime"},"emitted_at":1671053276390} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_308121080858974/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276390} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_308121080858974/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276391} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_308121080858974/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276391} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_308121080858974/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276392} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_308121080858974/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276392} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_308121080858974/insights/post_clicks/lifetime"},"emitted_at":1671053276393} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_308121080858974/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276393} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_308121080858974/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276394} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_308121080858974/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276394} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_308121080858974/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276395} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_308101880860894/insights/post_impressions/lifetime"},"emitted_at":1671053276395} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_308101880860894/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276396} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_308101880860894/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276396} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_308101880860894/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276397} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_308101880860894/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276397} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_308101880860894/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276397} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_308101880860894/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276398} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_308101880860894/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276398} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_308101880860894/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276399} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_308101880860894/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276399} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_308101880860894/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276400} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_308101880860894/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276400} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_308101880860894/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276401} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_308101880860894/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276401} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_308101880860894/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276402} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_308101880860894/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276402} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_308101880860894/insights/post_engaged_users/lifetime"},"emitted_at":1671053276403} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_308101880860894/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276403} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_308101880860894/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276404} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_308101880860894/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276404} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_308101880860894/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276405} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_308101880860894/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276405} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_308101880860894/insights/post_clicks/lifetime"},"emitted_at":1671053276405} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_308101880860894/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276406} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_308101880860894/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276406} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_308101880860894/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276407} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_308101880860894/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276407} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_307945437543205/insights/post_impressions/lifetime"},"emitted_at":1671053276407} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_307945437543205/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276408} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_307945437543205/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276408} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_307945437543205/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276409} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_307945437543205/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276409} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_307945437543205/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276410} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_307945437543205/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276410} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_307945437543205/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276411} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_307945437543205/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276411} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_307945437543205/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276412} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_307945437543205/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276412} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_307945437543205/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276413} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_307945437543205/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276413} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_307945437543205/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276413} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_307945437543205/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276414} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_307945437543205/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276414} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_307945437543205/insights/post_engaged_users/lifetime"},"emitted_at":1671053276415} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_307945437543205/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276415} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_307945437543205/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276415} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_307945437543205/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276416} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_307945437543205/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276416} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_307945437543205/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276417} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_307945437543205/insights/post_clicks/lifetime"},"emitted_at":1671053276417} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_307945437543205/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276417} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_307945437543205/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276418} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_307945437543205/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276418} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_307945437543205/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276418} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":265}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_307458540925228/insights/post_impressions/lifetime"},"emitted_at":1671053276419} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":262}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_307458540925228/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276419} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_307458540925228/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276420} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_307458540925228/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276420} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_307458540925228/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276420} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_307458540925228/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276421} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_307458540925228/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276421} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_307458540925228/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276421} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":265}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_307458540925228/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276422} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":262}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_307458540925228/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276422} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":246}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_307458540925228/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276422} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":243}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_307458540925228/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276423} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_307458540925228/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276423} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_307458540925228/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276424} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{"other":246}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_307458540925228/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276424} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{"other":243}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_307458540925228/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276424} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_307458540925228/insights/post_engaged_users/lifetime"},"emitted_at":1671053276425} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_307458540925228/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276425} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_307458540925228/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276425} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_307458540925228/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276426} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_307458540925228/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276426} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_307458540925228/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276426} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_307458540925228/insights/post_clicks/lifetime"},"emitted_at":1671053276427} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_307458540925228/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276427} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_307458540925228/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276427} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_307458540925228/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276428} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_307458540925228/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276428} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_307306707607078/insights/post_impressions/lifetime"},"emitted_at":1671053276429} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_307306707607078/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276429} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_307306707607078/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276429} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_307306707607078/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276430} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_307306707607078/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276430} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_307306707607078/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276430} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_307306707607078/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276430} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_307306707607078/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276431} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_307306707607078/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276431} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_307306707607078/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276432} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_307306707607078/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276432} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_307306707607078/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276432} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_307306707607078/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276433} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_307306707607078/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276433} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_307306707607078/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276433} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_307306707607078/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276434} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_307306707607078/insights/post_engaged_users/lifetime"},"emitted_at":1671053276434} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_307306707607078/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276434} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_307306707607078/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276435} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_307306707607078/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276435} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_307306707607078/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276435} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_307306707607078/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276436} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_307306707607078/insights/post_clicks/lifetime"},"emitted_at":1671053276436} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_307306707607078/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276436} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_307306707607078/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276436} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_307306707607078/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276437} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_307306707607078/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276437} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_306923297645419/insights/post_impressions/lifetime"},"emitted_at":1671053276437} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_306923297645419/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276438} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_306923297645419/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276438} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_306923297645419/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276439} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_306923297645419/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276439} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_306923297645419/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276439} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_306923297645419/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276440} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_306923297645419/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276440} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_306923297645419/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276440} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_306923297645419/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276441} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_306923297645419/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276441} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_306923297645419/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276441} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_306923297645419/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276442} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_306923297645419/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276442} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_306923297645419/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276442} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_306923297645419/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276443} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_306923297645419/insights/post_engaged_users/lifetime"},"emitted_at":1671053276443} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_306923297645419/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276443} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_306923297645419/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276443} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_306923297645419/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276444} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_306923297645419/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276444} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_306923297645419/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276444} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_306923297645419/insights/post_clicks/lifetime"},"emitted_at":1671053276445} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_306923297645419/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276445} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_306923297645419/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276445} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_306923297645419/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276446} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_306923297645419/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276446} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_304898817847867/insights/post_impressions/lifetime"},"emitted_at":1671053276446} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_304898817847867/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276447} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_304898817847867/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276447} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_304898817847867/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276447} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_304898817847867/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276448} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_304898817847867/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276448} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_304898817847867/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276449} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_304898817847867/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276449} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_304898817847867/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276450} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_304898817847867/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276450} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_304898817847867/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276450} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_304898817847867/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276451} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_304898817847867/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276451} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_304898817847867/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276452} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_304898817847867/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276452} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_304898817847867/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276452} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_304898817847867/insights/post_engaged_users/lifetime"},"emitted_at":1671053276453} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_304898817847867/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276453} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_304898817847867/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276453} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_304898817847867/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276454} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_304898817847867/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276454} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_304898817847867/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276454} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_304898817847867/insights/post_clicks/lifetime"},"emitted_at":1671053276455} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_304898817847867/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276455} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_304898817847867/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276455} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_304898817847867/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276456} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_304898817847867/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276456} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_304269394577476/insights/post_impressions/lifetime"},"emitted_at":1671053276456} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_304269394577476/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276457} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_304269394577476/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276457} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_304269394577476/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276457} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_304269394577476/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276458} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_304269394577476/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276458} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_304269394577476/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276458} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_304269394577476/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276459} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_304269394577476/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276459} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_304269394577476/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276460} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_304269394577476/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276460} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_304269394577476/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276460} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_304269394577476/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276461} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_304269394577476/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276461} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_304269394577476/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276461} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_304269394577476/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276462} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_304269394577476/insights/post_engaged_users/lifetime"},"emitted_at":1671053276462} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_304269394577476/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276462} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_304269394577476/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276463} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_304269394577476/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276463} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_304269394577476/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276463} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_304269394577476/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276464} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_304269394577476/insights/post_clicks/lifetime"},"emitted_at":1671053276464} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_304269394577476/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276464} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_304269394577476/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276465} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_304269394577476/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276465} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_304269394577476/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276465} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_303756714628744/insights/post_impressions/lifetime"},"emitted_at":1671053276466} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_303756714628744/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276466} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_303756714628744/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276466} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_303756714628744/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276467} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_303756714628744/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276467} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_303756714628744/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276467} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_303756714628744/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276468} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_303756714628744/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276468} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_303756714628744/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276468} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_303756714628744/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276469} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_303756714628744/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276469} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_303756714628744/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276469} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_303756714628744/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276470} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_303756714628744/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276470} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_303756714628744/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276470} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_303756714628744/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276471} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_303756714628744/insights/post_engaged_users/lifetime"},"emitted_at":1671053276471} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_303756714628744/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276471} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_303756714628744/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276472} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_303756714628744/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276472} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_303756714628744/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276473} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_303756714628744/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276473} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_303756714628744/insights/post_clicks/lifetime"},"emitted_at":1671053276473} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_303756714628744/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276474} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_303756714628744/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276474} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_303756714628744/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276474} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_303756714628744/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276475} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_303613824643033/insights/post_impressions/lifetime"},"emitted_at":1671053276475} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_303613824643033/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276475} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_303613824643033/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276476} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_303613824643033/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276476} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_303613824643033/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276476} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_303613824643033/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276477} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_303613824643033/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276477} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_303613824643033/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276477} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_303613824643033/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276478} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_303613824643033/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276478} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_303613824643033/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276478} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_303613824643033/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276479} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_303613824643033/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276479} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_303613824643033/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276479} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_303613824643033/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276480} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_303613824643033/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276480} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_303613824643033/insights/post_engaged_users/lifetime"},"emitted_at":1671053276480} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_303613824643033/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276481} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_303613824643033/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276481} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_303613824643033/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276481} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_303613824643033/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276482} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_303613824643033/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276482} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_303613824643033/insights/post_clicks/lifetime"},"emitted_at":1671053276482} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_303613824643033/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276483} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_303613824643033/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276483} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_303613824643033/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276484} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_303613824643033/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276484} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":98}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_303135168024232/insights/post_impressions/lifetime"},"emitted_at":1671053276485} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":98}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_303135168024232/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276485} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_303135168024232/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276485} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_303135168024232/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276486} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_303135168024232/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276486} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_303135168024232/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276486} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_303135168024232/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276487} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_303135168024232/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276487} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":98}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_303135168024232/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276487} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":98}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_303135168024232/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276488} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_303135168024232/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276488} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_303135168024232/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276488} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":98}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_303135168024232/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276489} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":98}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_303135168024232/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276489} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_303135168024232/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276489} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_303135168024232/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276490} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_303135168024232/insights/post_engaged_users/lifetime"},"emitted_at":1671053276490} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_303135168024232/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276490} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_303135168024232/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276491} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_303135168024232/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276491} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_303135168024232/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276492} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_303135168024232/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276492} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_303135168024232/insights/post_clicks/lifetime"},"emitted_at":1671053276492} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_303135168024232/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276493} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":3}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_303135168024232/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276493} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_303135168024232/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276494} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_303135168024232/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276494} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":69}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_303099558027793/insights/post_impressions/lifetime"},"emitted_at":1671053276494} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":69}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_303099558027793/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276495} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_303099558027793/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276495} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_303099558027793/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276495} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_303099558027793/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276496} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_303099558027793/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276496} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_303099558027793/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276497} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_303099558027793/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276497} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":69}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_303099558027793/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276497} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":69}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_303099558027793/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276498} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_303099558027793/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276498} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_303099558027793/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276498} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":69}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_303099558027793/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276499} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":69}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_303099558027793/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276499} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_303099558027793/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276499} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_303099558027793/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276500} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_303099558027793/insights/post_engaged_users/lifetime"},"emitted_at":1671053276500} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_303099558027793/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276501} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_303099558027793/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276501} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_303099558027793/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276501} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_303099558027793/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276502} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_303099558027793/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276502} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_303099558027793/insights/post_clicks/lifetime"},"emitted_at":1671053276502} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_303099558027793/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276503} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_303099558027793/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276503} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_303099558027793/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276503} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_303099558027793/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276504} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_302989028038846/insights/post_impressions/lifetime"},"emitted_at":1671053276504} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_302989028038846/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276504} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_302989028038846/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276505} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_302989028038846/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276505} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_302989028038846/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276505} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_302989028038846/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276506} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_302989028038846/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276506} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_302989028038846/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276506} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_302989028038846/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276507} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_302989028038846/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276507} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_302989028038846/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276507} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_302989028038846/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276508} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_302989028038846/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276508} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":53}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_302989028038846/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276508} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_302989028038846/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276509} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_302989028038846/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276509} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_302989028038846/insights/post_engaged_users/lifetime"},"emitted_at":1671053276510} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_302989028038846/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276510} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_302989028038846/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276510} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_302989028038846/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276511} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_302989028038846/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276511} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_302989028038846/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276511} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_302989028038846/insights/post_clicks/lifetime"},"emitted_at":1671053276512} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_302989028038846/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276512} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_302989028038846/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276512} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_302989028038846/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276513} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_302989028038846/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276513} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":48}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_302577138080035/insights/post_impressions/lifetime"},"emitted_at":1671053276513} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":47}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_302577138080035/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276514} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_302577138080035/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276514} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_302577138080035/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276514} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_302577138080035/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276515} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_302577138080035/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276515} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_302577138080035/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276515} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_302577138080035/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276516} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":48}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_302577138080035/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276516} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":47}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_302577138080035/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276516} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_302577138080035/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276517} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_302577138080035/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276517} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":48}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_302577138080035/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276517} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":47}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_302577138080035/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276518} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_302577138080035/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276518} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_302577138080035/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276518} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_302577138080035/insights/post_engaged_users/lifetime"},"emitted_at":1671053276519} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_302577138080035/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276519} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_302577138080035/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276519} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_302577138080035/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276520} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_302577138080035/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276520} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_302577138080035/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276521} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_302577138080035/insights/post_clicks/lifetime"},"emitted_at":1671053276521} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_302577138080035/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276521} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_302577138080035/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276522} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_302577138080035/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276522} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1,"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_302577138080035/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276522} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":40}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_300652871605795/insights/post_impressions/lifetime"},"emitted_at":1671053276523} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_300652871605795/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276523} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_300652871605795/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276523} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_300652871605795/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276524} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_300652871605795/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276524} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_300652871605795/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276524} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_300652871605795/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276525} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_300652871605795/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276525} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":40}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_300652871605795/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276525} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_300652871605795/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276526} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_300652871605795/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276526} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_300652871605795/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276526} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":40}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_300652871605795/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276527} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":39}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_300652871605795/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276527} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_300652871605795/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276527} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_300652871605795/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276528} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_300652871605795/insights/post_engaged_users/lifetime"},"emitted_at":1671053276528} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_300652871605795/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276528} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_300652871605795/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276529} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_300652871605795/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276529} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_300652871605795/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276529} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_300652871605795/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276530} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_300652871605795/insights/post_clicks/lifetime"},"emitted_at":1671053276530} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_300652871605795/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276530} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_300652871605795/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276531} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_300652871605795/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276531} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_300652871605795/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276531} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_300046441666438/insights/post_impressions/lifetime"},"emitted_at":1671053276532} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_300046441666438/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276532} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_300046441666438/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276532} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_300046441666438/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276533} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_300046441666438/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276533} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_300046441666438/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276533} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_300046441666438/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276534} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_300046441666438/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276534} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_300046441666438/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276534} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_300046441666438/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276535} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_300046441666438/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276535} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_300046441666438/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276535} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":34}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_300046441666438/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276536} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_300046441666438/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276536} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_300046441666438/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276536} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_300046441666438/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276537} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_300046441666438/insights/post_engaged_users/lifetime"},"emitted_at":1671053276537} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_300046441666438/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276537} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_300046441666438/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276538} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_300046441666438/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276538} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_300046441666438/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276538} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_300046441666438/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276539} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_300046441666438/insights/post_clicks/lifetime"},"emitted_at":1671053276539} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_300046441666438/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276539} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_300046441666438/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276540} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_300046441666438/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276540} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_300046441666438/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276540} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_299618978375851/insights/post_impressions/lifetime"},"emitted_at":1671053276541} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_299618978375851/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276541} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_299618978375851/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276541} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_299618978375851/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276542} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_299618978375851/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276542} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_299618978375851/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276552} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_299618978375851/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276553} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_299618978375851/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276553} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_299618978375851/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276554} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_299618978375851/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276554} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_299618978375851/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276554} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_299618978375851/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276555} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_299618978375851/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276555} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_299618978375851/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276555} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_299618978375851/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276556} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_299618978375851/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276556} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_299618978375851/insights/post_engaged_users/lifetime"},"emitted_at":1671053276556} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_299618978375851/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276557} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_299618978375851/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276557} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_299618978375851/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276557} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_299618978375851/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276558} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_299618978375851/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276558} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_299618978375851/insights/post_clicks/lifetime"},"emitted_at":1671053276558} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_299618978375851/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276559} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_299618978375851/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276559} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_299618978375851/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276559} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_299618978375851/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276560} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_299484621722620/insights/post_impressions/lifetime"},"emitted_at":1671053276560} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_299484621722620/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276560} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_299484621722620/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276561} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_299484621722620/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276561} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_299484621722620/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276561} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_299484621722620/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276562} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_299484621722620/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276562} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_299484621722620/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276562} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_299484621722620/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276563} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_299484621722620/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276563} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_299484621722620/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276563} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_299484621722620/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276564} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":33}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_299484621722620/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276564} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":31}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_299484621722620/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276565} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_299484621722620/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276565} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_299484621722620/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276565} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_299484621722620/insights/post_engaged_users/lifetime"},"emitted_at":1671053276566} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_299484621722620/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276566} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_299484621722620/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276566} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_299484621722620/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276567} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_299484621722620/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276567} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_299484621722620/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276567} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_299484621722620/insights/post_clicks/lifetime"},"emitted_at":1671053276568} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_299484621722620/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276568} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_299484621722620/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276568} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_299484621722620/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276569} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_299484621722620/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276569} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_299038695100546/insights/post_impressions/lifetime"},"emitted_at":1671053276569} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_299038695100546/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276570} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_299038695100546/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276570} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_299038695100546/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276570} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_299038695100546/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276571} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_299038695100546/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276571} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_299038695100546/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276571} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_299038695100546/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276572} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_299038695100546/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276572} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_299038695100546/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276572} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_299038695100546/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276573} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_299038695100546/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276573} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":32}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_299038695100546/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276573} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":30}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_299038695100546/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276574} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_299038695100546/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276574} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_299038695100546/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276574} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_299038695100546/insights/post_engaged_users/lifetime"},"emitted_at":1671053276575} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_299038695100546/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276575} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_299038695100546/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276575} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_299038695100546/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276576} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_299038695100546/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276576} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_299038695100546/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276576} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_299038695100546/insights/post_clicks/lifetime"},"emitted_at":1671053276577} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_299038695100546/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276577} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_299038695100546/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276577} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_299038695100546/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276578} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_299038695100546/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276578} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_298903021780780/insights/post_impressions/lifetime"},"emitted_at":1671053276578} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_298903021780780/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276579} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_298903021780780/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276579} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_298903021780780/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276579} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_298903021780780/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276580} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_298903021780780/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276580} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_298903021780780/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276580} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_298903021780780/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276581} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_298903021780780/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276581} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_298903021780780/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276581} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_298903021780780/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276582} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_298903021780780/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276582} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_298903021780780/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276582} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_298903021780780/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276583} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_298903021780780/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276583} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_298903021780780/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276583} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_298903021780780/insights/post_engaged_users/lifetime"},"emitted_at":1671053276584} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_298903021780780/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276584} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_298903021780780/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276584} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_298903021780780/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276585} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_298903021780780/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276585} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_298903021780780/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276585} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_298903021780780/insights/post_clicks/lifetime"},"emitted_at":1671053276586} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_298903021780780/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276586} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_298903021780780/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276586} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_298903021780780/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276587} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1,"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_298903021780780/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276587} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_298522368485512/insights/post_impressions/lifetime"},"emitted_at":1671053276587} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_298522368485512/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276588} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_298522368485512/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276588} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_298522368485512/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276588} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_298522368485512/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276589} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_298522368485512/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276589} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_298522368485512/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276589} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_298522368485512/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276590} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_298522368485512/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276590} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_298522368485512/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276590} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_298522368485512/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276591} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_298522368485512/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276591} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_298522368485512/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276591} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_298522368485512/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276592} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_298522368485512/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276592} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_298522368485512/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276592} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_298522368485512/insights/post_engaged_users/lifetime"},"emitted_at":1671053276593} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_298522368485512/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276593} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_298522368485512/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276594} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_298522368485512/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276594} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_298522368485512/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276594} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_298522368485512/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276595} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_298522368485512/insights/post_clicks/lifetime"},"emitted_at":1671053276595} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_298522368485512/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276595} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_298522368485512/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276596} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_298522368485512/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276596} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_298522368485512/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276596} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_296557995348616/insights/post_impressions/lifetime"},"emitted_at":1671053276597} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_296557995348616/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276597} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_296557995348616/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276597} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_296557995348616/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276598} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_296557995348616/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276598} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_296557995348616/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276598} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_296557995348616/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276599} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_296557995348616/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276599} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_296557995348616/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276599} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_296557995348616/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276600} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_296557995348616/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276600} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_296557995348616/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276601} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":28}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_296557995348616/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276601} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_296557995348616/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276601} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_296557995348616/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276602} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_296557995348616/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276602} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_296557995348616/insights/post_engaged_users/lifetime"},"emitted_at":1671053276602} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_296557995348616/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276603} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_296557995348616/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276603} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_296557995348616/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276603} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_296557995348616/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276604} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_296557995348616/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276604} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_296557995348616/insights/post_clicks/lifetime"},"emitted_at":1671053276604} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_296557995348616/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276605} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_296557995348616/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276605} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_296557995348616/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276605} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_296557995348616/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276606} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_295941865410229/insights/post_impressions/lifetime"},"emitted_at":1671053276606} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_295941865410229/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276607} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_295941865410229/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276607} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_295941865410229/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276607} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_295941865410229/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276608} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_295941865410229/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276608} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_295941865410229/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276608} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_295941865410229/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276609} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_295941865410229/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276609} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_295941865410229/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276609} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_295941865410229/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276610} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_295941865410229/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276610} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_295941865410229/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276610} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":23}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_295941865410229/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276611} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_295941865410229/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276611} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_295941865410229/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276611} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_295941865410229/insights/post_engaged_users/lifetime"},"emitted_at":1671053276612} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_295941865410229/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276612} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_295941865410229/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276612} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_295941865410229/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276613} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_295941865410229/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276613} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_295941865410229/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276613} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_295941865410229/insights/post_clicks/lifetime"},"emitted_at":1671053276614} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_295941865410229/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276614} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_295941865410229/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276614} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_295941865410229/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276615} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_295941865410229/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276615} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_295180108819738/insights/post_impressions/lifetime"},"emitted_at":1671053276615} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_295180108819738/insights/post_impressions_unique/lifetime"},"emitted_at":1671053276616} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_295180108819738/insights/post_impressions_paid/lifetime"},"emitted_at":1671053276616} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_295180108819738/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053276616} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_295180108819738/insights/post_impressions_fan/lifetime"},"emitted_at":1671053276617} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_295180108819738/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053276617} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_295180108819738/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053276617} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_295180108819738/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053276618} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_295180108819738/insights/post_impressions_organic/lifetime"},"emitted_at":1671053276618} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_295180108819738/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053276618} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_295180108819738/insights/post_impressions_viral/lifetime"},"emitted_at":1671053276619} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_295180108819738/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053276619} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":22}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_295180108819738/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053276619} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_295180108819738/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053276620} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_295180108819738/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053276620} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_295180108819738/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053276620} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_295180108819738/insights/post_engaged_users/lifetime"},"emitted_at":1671053276621} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_295180108819738/insights/post_negative_feedback/lifetime"},"emitted_at":1671053276621} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_295180108819738/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053276621} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_295180108819738/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053276622} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_295180108819738/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053276622} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_295180108819738/insights/post_engaged_fan/lifetime"},"emitted_at":1671053276622} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_295180108819738/insights/post_clicks/lifetime"},"emitted_at":1671053276623} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_295180108819738/insights/post_clicks_unique/lifetime"},"emitted_at":1671053276623} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_295180108819738/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053276623} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_295180108819738/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053276624} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_295180108819738/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053276624} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_294616752209407/insights/post_impressions/lifetime"},"emitted_at":1671053278009} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_294616752209407/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278010} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_294616752209407/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278010} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_294616752209407/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278011} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_294616752209407/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278011} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_294616752209407/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278012} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_294616752209407/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278013} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_294616752209407/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278013} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_294616752209407/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278014} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_294616752209407/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278014} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_294616752209407/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278015} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_294616752209407/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278015} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_294616752209407/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278015} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":24}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_294616752209407/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278016} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_294616752209407/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278016} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_294616752209407/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278017} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_294616752209407/insights/post_engaged_users/lifetime"},"emitted_at":1671053278017} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_294616752209407/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278018} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_294616752209407/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278018} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_294616752209407/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278019} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_294616752209407/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278019} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_294616752209407/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278020} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_294616752209407/insights/post_clicks/lifetime"},"emitted_at":1671053278020} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_294616752209407/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278021} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_294616752209407/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278021} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_294616752209407/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278022} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_294616752209407/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278022} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_294237932247289/insights/post_impressions/lifetime"},"emitted_at":1671053278022} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_294237932247289/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278023} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_294237932247289/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278023} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_294237932247289/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278024} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_294237932247289/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278024} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_294237932247289/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278025} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_294237932247289/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278025} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_294237932247289/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278025} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_294237932247289/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278026} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_294237932247289/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278026} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_294237932247289/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278027} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_294237932247289/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278027} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_294237932247289/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278028} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_294237932247289/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278028} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_294237932247289/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278028} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_294237932247289/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278029} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_294237932247289/insights/post_engaged_users/lifetime"},"emitted_at":1671053278029} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_294237932247289/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278030} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_294237932247289/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278030} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_294237932247289/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278031} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_294237932247289/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278031} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_294237932247289/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278032} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_294237932247289/insights/post_clicks/lifetime"},"emitted_at":1671053278032} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_294237932247289/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278032} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_294237932247289/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278033} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_294237932247289/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278033} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_294237932247289/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278034} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_292312062439876/insights/post_impressions/lifetime"},"emitted_at":1671053278034} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_292312062439876/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278035} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_292312062439876/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278035} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_292312062439876/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278036} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_292312062439876/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278036} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_292312062439876/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278037} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_292312062439876/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278037} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_292312062439876/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278037} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_292312062439876/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278038} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_292312062439876/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278038} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_292312062439876/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278039} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_292312062439876/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278039} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_292312062439876/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278040} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_292312062439876/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278040} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_292312062439876/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278041} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_292312062439876/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278041} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_292312062439876/insights/post_engaged_users/lifetime"},"emitted_at":1671053278041} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_292312062439876/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278042} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_292312062439876/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278042} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_292312062439876/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278043} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_292312062439876/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278043} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_292312062439876/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278043} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_292312062439876/insights/post_clicks/lifetime"},"emitted_at":1671053278044} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_292312062439876/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278044} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_292312062439876/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278045} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_292312062439876/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278045} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_292312062439876/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278045} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_291741545830261/insights/post_impressions/lifetime"},"emitted_at":1671053278046} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_291741545830261/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278046} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_291741545830261/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278047} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_291741545830261/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278047} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_291741545830261/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278048} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_291741545830261/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278048} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_291741545830261/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278049} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_291741545830261/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278049} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_291741545830261/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278050} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_291741545830261/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278050} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_291741545830261/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278050} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_291741545830261/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278051} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_291741545830261/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278051} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_291741545830261/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278051} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_291741545830261/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278052} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_291741545830261/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278052} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_291741545830261/insights/post_engaged_users/lifetime"},"emitted_at":1671053278053} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_291741545830261/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278053} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_291741545830261/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278053} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_291741545830261/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278054} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_291741545830261/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278054} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_291741545830261/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278055} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_291741545830261/insights/post_clicks/lifetime"},"emitted_at":1671053278055} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_291741545830261/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278055} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_291741545830261/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278056} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_291741545830261/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278056} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_291741545830261/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278056} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_291177295886686/insights/post_impressions/lifetime"},"emitted_at":1671053278057} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_291177295886686/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278057} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_291177295886686/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278058} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_291177295886686/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278058} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_291177295886686/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278058} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_291177295886686/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278059} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_291177295886686/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278059} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_291177295886686/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278059} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_291177295886686/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278060} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_291177295886686/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278060} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_291177295886686/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278060} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_291177295886686/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278061} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_291177295886686/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278061} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_291177295886686/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278061} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_291177295886686/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278062} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_291177295886686/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278062} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_291177295886686/insights/post_engaged_users/lifetime"},"emitted_at":1671053278063} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_291177295886686/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278063} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_291177295886686/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278063} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_291177295886686/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278064} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_291177295886686/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278064} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_291177295886686/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278064} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_291177295886686/insights/post_clicks/lifetime"},"emitted_at":1671053278065} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_291177295886686/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278065} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_291177295886686/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278065} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_291177295886686/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278066} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_291177295886686/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278066} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_290840509253698/insights/post_impressions/lifetime"},"emitted_at":1671053278067} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_290840509253698/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278067} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_290840509253698/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278067} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_290840509253698/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278068} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_290840509253698/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278068} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_290840509253698/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278068} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_290840509253698/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278069} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_290840509253698/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278069} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_290840509253698/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278069} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_290840509253698/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278070} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_290840509253698/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278070} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_290840509253698/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278070} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_290840509253698/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278071} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_290840509253698/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278071} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_290840509253698/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278071} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_290840509253698/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278072} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_290840509253698/insights/post_engaged_users/lifetime"},"emitted_at":1671053278072} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_290840509253698/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278072} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_290840509253698/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278073} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_290840509253698/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278073} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_290840509253698/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278073} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_290840509253698/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278074} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_290840509253698/insights/post_clicks/lifetime"},"emitted_at":1671053278074} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_290840509253698/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278074} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_290840509253698/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278075} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_290840509253698/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278075} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_290840509253698/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278075} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_290610629276686/insights/post_impressions/lifetime"},"emitted_at":1671053278076} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_290610629276686/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278076} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_290610629276686/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278076} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_290610629276686/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278077} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_290610629276686/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278077} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_290610629276686/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278077} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_290610629276686/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278078} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_290610629276686/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278078} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_290610629276686/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278078} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_290610629276686/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278079} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_290610629276686/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278079} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_290610629276686/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278080} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_290610629276686/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278080} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_290610629276686/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278080} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_290610629276686/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278081} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_290610629276686/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278081} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_290610629276686/insights/post_engaged_users/lifetime"},"emitted_at":1671053278081} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_290610629276686/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278082} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_290610629276686/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278082} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_290610629276686/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278082} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_290610629276686/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278083} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_290610629276686/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278083} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_290610629276686/insights/post_clicks/lifetime"},"emitted_at":1671053278083} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_290610629276686/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278084} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_290610629276686/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278084} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_290610629276686/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278084} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_290610629276686/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278085} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_290228222648260/insights/post_impressions/lifetime"},"emitted_at":1671053278085} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_290228222648260/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278085} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_290228222648260/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278086} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_290228222648260/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278086} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_290228222648260/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278086} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_290228222648260/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278087} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_290228222648260/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278087} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_290228222648260/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278087} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_290228222648260/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278088} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_290228222648260/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278088} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_290228222648260/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278088} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_290228222648260/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278089} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_290228222648260/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278089} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_290228222648260/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278089} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_290228222648260/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278090} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_290228222648260/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278090} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_290228222648260/insights/post_engaged_users/lifetime"},"emitted_at":1671053278091} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_290228222648260/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278091} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_290228222648260/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278091} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_290228222648260/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278092} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_290228222648260/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278092} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_290228222648260/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278092} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_290228222648260/insights/post_clicks/lifetime"},"emitted_at":1671053278093} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_290228222648260/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278093} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_290228222648260/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278093} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_290228222648260/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278094} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_290228222648260/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278094} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_864849901039858/insights/post_impressions/lifetime"},"emitted_at":1671053278094} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_864849901039858/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278095} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_864849901039858/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278095} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_864849901039858/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278095} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_864849901039858/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278096} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_864849901039858/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278096} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_864849901039858/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278096} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_864849901039858/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278097} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_864849901039858/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278097} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_864849901039858/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278097} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_864849901039858/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278098} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_864849901039858/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278098} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_864849901039858/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278098} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":29}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_864849901039858/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278099} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_864849901039858/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278099} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_864849901039858/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278099} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_864849901039858/insights/post_engaged_users/lifetime"},"emitted_at":1671053278100} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_864849901039858/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278100} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_864849901039858/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278100} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_864849901039858/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278101} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_864849901039858/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278101} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_864849901039858/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278101} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":4}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_864849901039858/insights/post_clicks/lifetime"},"emitted_at":1671053278102} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_864849901039858/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278102} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"video play":3,"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_864849901039858/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278102} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"video play":3,"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_864849901039858/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278103} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_864849901039858/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278103} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_288265116177904/insights/post_impressions/lifetime"},"emitted_at":1671053278104} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_288265116177904/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278104} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_288265116177904/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278104} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_288265116177904/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278105} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_288265116177904/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278105} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_288265116177904/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278105} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_288265116177904/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278106} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_288265116177904/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278106} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_288265116177904/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278106} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_288265116177904/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278107} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_288265116177904/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278107} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_288265116177904/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278107} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_288265116177904/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278108} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_288265116177904/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278108} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_288265116177904/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278108} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_288265116177904/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278109} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_288265116177904/insights/post_engaged_users/lifetime"},"emitted_at":1671053278109} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_288265116177904/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278109} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_288265116177904/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278110} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_288265116177904/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278110} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_288265116177904/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278110} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_288265116177904/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278111} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_288265116177904/insights/post_clicks/lifetime"},"emitted_at":1671053278111} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_288265116177904/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278111} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_288265116177904/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278112} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_288265116177904/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278112} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_288265116177904/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278112} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_287673642903718/insights/post_impressions/lifetime"},"emitted_at":1671053278113} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_287673642903718/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278113} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_287673642903718/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278113} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_287673642903718/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278114} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_287673642903718/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278114} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_287673642903718/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278114} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_287673642903718/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278115} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_287673642903718/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278115} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_287673642903718/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278115} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_287673642903718/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278116} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_287673642903718/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278116} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_287673642903718/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278116} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_287673642903718/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278117} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_287673642903718/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278117} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_287673642903718/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278118} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_287673642903718/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278118} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_287673642903718/insights/post_engaged_users/lifetime"},"emitted_at":1671053278118} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_287673642903718/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278119} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_287673642903718/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278119} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_287673642903718/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278119} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_287673642903718/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278120} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_287673642903718/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278120} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_287673642903718/insights/post_clicks/lifetime"},"emitted_at":1671053278120} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_287673642903718/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278121} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_287673642903718/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278121} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_287673642903718/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278122} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_287673642903718/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278122} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_287102386294177/insights/post_impressions/lifetime"},"emitted_at":1671053278122} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_287102386294177/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278123} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_287102386294177/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278123} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_287102386294177/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278123} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_287102386294177/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278124} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_287102386294177/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278124} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_287102386294177/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278124} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_287102386294177/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278125} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_287102386294177/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278125} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_287102386294177/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278126} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_287102386294177/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278126} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_287102386294177/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278127} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_287102386294177/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278127} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_287102386294177/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278128} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_287102386294177/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278128} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_287102386294177/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278128} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_287102386294177/insights/post_engaged_users/lifetime"},"emitted_at":1671053278129} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_287102386294177/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278129} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_287102386294177/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278129} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_287102386294177/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278130} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_287102386294177/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278130} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_287102386294177/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278131} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_287102386294177/insights/post_clicks/lifetime"},"emitted_at":1671053278131} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_287102386294177/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278131} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_287102386294177/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278132} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_287102386294177/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278132} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_287102386294177/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278132} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_286552149682534/insights/post_impressions/lifetime"},"emitted_at":1671053278133} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_286552149682534/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278133} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_286552149682534/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278134} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_286552149682534/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278134} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_286552149682534/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278134} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_286552149682534/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278135} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_286552149682534/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278135} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_286552149682534/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278135} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_286552149682534/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278136} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_286552149682534/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278136} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_286552149682534/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278136} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_286552149682534/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278137} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_286552149682534/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278137} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_286552149682534/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278137} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_286552149682534/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278138} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_286552149682534/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278138} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_286552149682534/insights/post_engaged_users/lifetime"},"emitted_at":1671053278138} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_286552149682534/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278139} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_286552149682534/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278139} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_286552149682534/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278140} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_286552149682534/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278140} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_286552149682534/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278140} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_286552149682534/insights/post_clicks/lifetime"},"emitted_at":1671053278141} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_286552149682534/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278141} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_286552149682534/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278141} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_286552149682534/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278142} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_286552149682534/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278142} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_286174083053674/insights/post_impressions/lifetime"},"emitted_at":1671053278142} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_286174083053674/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278143} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_286174083053674/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278143} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_286174083053674/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278143} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_286174083053674/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278144} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_286174083053674/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278144} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_286174083053674/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278144} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_286174083053674/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278145} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_286174083053674/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278145} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_286174083053674/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278146} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_286174083053674/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278146} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_286174083053674/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278146} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_286174083053674/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278147} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_286174083053674/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278147} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_286174083053674/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278147} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_286174083053674/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278148} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_286174083053674/insights/post_engaged_users/lifetime"},"emitted_at":1671053278148} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_286174083053674/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278148} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_286174083053674/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278149} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_286174083053674/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278149} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_286174083053674/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278149} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_286174083053674/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278150} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_286174083053674/insights/post_clicks/lifetime"},"emitted_at":1671053278150} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_286174083053674/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278151} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_286174083053674/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278151} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_286174083053674/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278151} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1,"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_286174083053674/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278152} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_285542296450186/insights/post_impressions/lifetime"},"emitted_at":1671053278152} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_285542296450186/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278152} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_285542296450186/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278153} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_285542296450186/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278153} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_285542296450186/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278153} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_285542296450186/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278154} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_285542296450186/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278154} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_285542296450186/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278154} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_285542296450186/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278155} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_285542296450186/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278155} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_285542296450186/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278155} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_285542296450186/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278156} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_285542296450186/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278156} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_285542296450186/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278156} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_285542296450186/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278157} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_285542296450186/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278157} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_285542296450186/insights/post_engaged_users/lifetime"},"emitted_at":1671053278157} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_285542296450186/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278158} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_285542296450186/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278158} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_285542296450186/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278158} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_285542296450186/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278159} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_285542296450186/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278159} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_285542296450186/insights/post_clicks/lifetime"},"emitted_at":1671053278159} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_285542296450186/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278160} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_285542296450186/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278160} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_285542296450186/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278160} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_285542296450186/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278161} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_284285683242514/insights/post_impressions/lifetime"},"emitted_at":1671053278161} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_284285683242514/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278161} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_284285683242514/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278162} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_284285683242514/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278162} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_284285683242514/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278163} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_284285683242514/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278163} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_284285683242514/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278164} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_284285683242514/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278164} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_284285683242514/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278164} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_284285683242514/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278165} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_284285683242514/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278165} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_284285683242514/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278165} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_284285683242514/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278166} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_284285683242514/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278166} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_284285683242514/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278166} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_284285683242514/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278167} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_284285683242514/insights/post_engaged_users/lifetime"},"emitted_at":1671053278167} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_284285683242514/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278167} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_284285683242514/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278168} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_284285683242514/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278168} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_284285683242514/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278168} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_284285683242514/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278169} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_284285683242514/insights/post_clicks/lifetime"},"emitted_at":1671053278169} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_284285683242514/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278169} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_284285683242514/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278170} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_284285683242514/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278170} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_284285683242514/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278170} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_283691593301923/insights/post_impressions/lifetime"},"emitted_at":1671053278171} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_283691593301923/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278171} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_283691593301923/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278171} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_283691593301923/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278172} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_283691593301923/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278172} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_283691593301923/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278172} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_283691593301923/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278173} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_283691593301923/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278173} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_283691593301923/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278173} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_283691593301923/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278174} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_283691593301923/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278174} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_283691593301923/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278174} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_283691593301923/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278175} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_283691593301923/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278175} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_283691593301923/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278175} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_283691593301923/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278176} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_283691593301923/insights/post_engaged_users/lifetime"},"emitted_at":1671053278176} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_283691593301923/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278177} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_283691593301923/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278177} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_283691593301923/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278177} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_283691593301923/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278178} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_283691593301923/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278178} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_283691593301923/insights/post_clicks/lifetime"},"emitted_at":1671053278179} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_283691593301923/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278179} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_283691593301923/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278179} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_283691593301923/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278180} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_283691593301923/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278180} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_283119036692512/insights/post_impressions/lifetime"},"emitted_at":1671053278180} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_283119036692512/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278181} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_283119036692512/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278181} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_283119036692512/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278181} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_283119036692512/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278182} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_283119036692512/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278182} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_283119036692512/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278183} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_283119036692512/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278183} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_283119036692512/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278183} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_283119036692512/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278184} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_283119036692512/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278184} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_283119036692512/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278184} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_283119036692512/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278185} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_283119036692512/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278185} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_283119036692512/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278185} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_283119036692512/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278186} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_283119036692512/insights/post_engaged_users/lifetime"},"emitted_at":1671053278186} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_283119036692512/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278186} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_283119036692512/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278187} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_283119036692512/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278187} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_283119036692512/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278187} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_283119036692512/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278188} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_283119036692512/insights/post_clicks/lifetime"},"emitted_at":1671053278188} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_283119036692512/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278188} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_283119036692512/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278189} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_283119036692512/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278189} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_283119036692512/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278189} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_282540276750388/insights/post_impressions/lifetime"},"emitted_at":1671053278190} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_282540276750388/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278190} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_282540276750388/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278190} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_282540276750388/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278191} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_282540276750388/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278191} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_282540276750388/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278191} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_282540276750388/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278192} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_282540276750388/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278192} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_282540276750388/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278192} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_282540276750388/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278193} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_282540276750388/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278193} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_282540276750388/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278193} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_282540276750388/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278194} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_282540276750388/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278194} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_282540276750388/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278194} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_282540276750388/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278195} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_282540276750388/insights/post_engaged_users/lifetime"},"emitted_at":1671053278195} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_282540276750388/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278195} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_282540276750388/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278196} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_282540276750388/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278196} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_282540276750388/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278196} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_282540276750388/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278197} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_282540276750388/insights/post_clicks/lifetime"},"emitted_at":1671053278197} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_282540276750388/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278197} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_282540276750388/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278198} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_282540276750388/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278198} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_282540276750388/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278198} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_282166100121139/insights/post_impressions/lifetime"},"emitted_at":1671053278199} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_282166100121139/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278199} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_282166100121139/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278199} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_282166100121139/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278200} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_282166100121139/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278200} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_282166100121139/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278200} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_282166100121139/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278201} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_282166100121139/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278201} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_282166100121139/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278201} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_282166100121139/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278202} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_282166100121139/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278202} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_282166100121139/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278203} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_282166100121139/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278203} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_282166100121139/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278203} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_282166100121139/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278204} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_282166100121139/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278204} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_282166100121139/insights/post_engaged_users/lifetime"},"emitted_at":1671053278204} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_282166100121139/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278205} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_282166100121139/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278205} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_282166100121139/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278205} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_282166100121139/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278206} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_282166100121139/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278206} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_282166100121139/insights/post_clicks/lifetime"},"emitted_at":1671053278206} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_282166100121139/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278207} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_282166100121139/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278207} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_282166100121139/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278207} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2,"love":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_282166100121139/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278208} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_280221646982251/insights/post_impressions/lifetime"},"emitted_at":1671053278208} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_280221646982251/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278208} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_280221646982251/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278209} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_280221646982251/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278209} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_280221646982251/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278209} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_280221646982251/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278210} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_280221646982251/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278210} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_280221646982251/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278211} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_280221646982251/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278211} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_280221646982251/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278211} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_280221646982251/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278212} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_280221646982251/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278212} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_280221646982251/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278212} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_280221646982251/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278213} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_280221646982251/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278213} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_280221646982251/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278213} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_280221646982251/insights/post_engaged_users/lifetime"},"emitted_at":1671053278214} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_280221646982251/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278214} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_280221646982251/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278214} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_280221646982251/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278215} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_280221646982251/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278215} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_280221646982251/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278215} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_280221646982251/insights/post_clicks/lifetime"},"emitted_at":1671053278216} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_280221646982251/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278216} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_280221646982251/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278216} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_280221646982251/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278217} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_280221646982251/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278217} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_279619703709112/insights/post_impressions/lifetime"},"emitted_at":1671053278217} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_279619703709112/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278218} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_279619703709112/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278218} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_279619703709112/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278218} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_279619703709112/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278219} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_279619703709112/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278219} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_279619703709112/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278219} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_279619703709112/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278220} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_279619703709112/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278220} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_279619703709112/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278220} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_279619703709112/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278221} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_279619703709112/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278221} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_279619703709112/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278222} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_279619703709112/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278222} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_279619703709112/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278222} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_279619703709112/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278223} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_279619703709112/insights/post_engaged_users/lifetime"},"emitted_at":1671053278223} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_279619703709112/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278223} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_279619703709112/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278224} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_279619703709112/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278224} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_279619703709112/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278224} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_279619703709112/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278225} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_279619703709112/insights/post_clicks/lifetime"},"emitted_at":1671053278225} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_279619703709112/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278225} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_279619703709112/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278226} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_279619703709112/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278226} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_279619703709112/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278226} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_279062667098149/insights/post_impressions/lifetime"},"emitted_at":1671053278227} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_279062667098149/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278227} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_279062667098149/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278227} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_279062667098149/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278228} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_279062667098149/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278228} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_279062667098149/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278228} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_279062667098149/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278229} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_279062667098149/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278229} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_279062667098149/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278229} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_279062667098149/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278230} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_279062667098149/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278230} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_279062667098149/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278230} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_279062667098149/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278231} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_279062667098149/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278231} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_279062667098149/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278231} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_279062667098149/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278232} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_279062667098149/insights/post_engaged_users/lifetime"},"emitted_at":1671053278232} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_279062667098149/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278232} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_279062667098149/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278233} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_279062667098149/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278233} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_279062667098149/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278233} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_279062667098149/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278234} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_279062667098149/insights/post_clicks/lifetime"},"emitted_at":1671053278234} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_279062667098149/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278234} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_279062667098149/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278235} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_279062667098149/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278235} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_279062667098149/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278235} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_278753573795725/insights/post_impressions/lifetime"},"emitted_at":1671053278236} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_278753573795725/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278236} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_278753573795725/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278236} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_278753573795725/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278237} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_278753573795725/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278237} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_278753573795725/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278237} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_278753573795725/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278238} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_278753573795725/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278238} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_278753573795725/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278238} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_278753573795725/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278239} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_278753573795725/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278239} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_278753573795725/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278239} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_278753573795725/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278240} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_278753573795725/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278240} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_278753573795725/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278240} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_278753573795725/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278241} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_278753573795725/insights/post_engaged_users/lifetime"},"emitted_at":1671053278241} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_278753573795725/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278241} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_278753573795725/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278242} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_278753573795725/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278242} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_278753573795725/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278242} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_278753573795725/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278243} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_278753573795725/insights/post_clicks/lifetime"},"emitted_at":1671053278243} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_278753573795725/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278243} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_278753573795725/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278244} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_278753573795725/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278244} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_278753573795725/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278244} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_278467723824310/insights/post_impressions/lifetime"},"emitted_at":1671053278245} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_278467723824310/insights/post_impressions_unique/lifetime"},"emitted_at":1671053278245} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_278467723824310/insights/post_impressions_paid/lifetime"},"emitted_at":1671053278245} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_278467723824310/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053278246} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_278467723824310/insights/post_impressions_fan/lifetime"},"emitted_at":1671053278246} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_278467723824310/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053278246} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_278467723824310/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053278247} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_278467723824310/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053278247} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_278467723824310/insights/post_impressions_organic/lifetime"},"emitted_at":1671053278247} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_278467723824310/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053278248} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_278467723824310/insights/post_impressions_viral/lifetime"},"emitted_at":1671053278248} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_278467723824310/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053278248} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_278467723824310/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053278249} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_278467723824310/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053278249} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_278467723824310/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053278249} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_278467723824310/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053278250} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_278467723824310/insights/post_engaged_users/lifetime"},"emitted_at":1671053278250} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_278467723824310/insights/post_negative_feedback/lifetime"},"emitted_at":1671053278250} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_278467723824310/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053278251} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_278467723824310/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053278251} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_278467723824310/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053278251} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_278467723824310/insights/post_engaged_fan/lifetime"},"emitted_at":1671053278252} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_278467723824310/insights/post_clicks/lifetime"},"emitted_at":1671053278252} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_278467723824310/insights/post_clicks_unique/lifetime"},"emitted_at":1671053278252} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_278467723824310/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053278253} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_278467723824310/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053278253} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_278467723824310/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053278253} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_278085550529194/insights/post_impressions/lifetime"},"emitted_at":1671053279993} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_278085550529194/insights/post_impressions_unique/lifetime"},"emitted_at":1671053279993} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_278085550529194/insights/post_impressions_paid/lifetime"},"emitted_at":1671053279994} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_278085550529194/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053279995} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_278085550529194/insights/post_impressions_fan/lifetime"},"emitted_at":1671053279995} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_278085550529194/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053279996} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_278085550529194/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053279996} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_278085550529194/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053279997} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_278085550529194/insights/post_impressions_organic/lifetime"},"emitted_at":1671053279998} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_278085550529194/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053279998} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_278085550529194/insights/post_impressions_viral/lifetime"},"emitted_at":1671053279999} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_278085550529194/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053279999} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_278085550529194/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280000} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_278085550529194/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280000} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_278085550529194/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280001} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_278085550529194/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280001} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_278085550529194/insights/post_engaged_users/lifetime"},"emitted_at":1671053280002} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_278085550529194/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280002} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_278085550529194/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280003} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_278085550529194/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280003} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_278085550529194/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280004} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_278085550529194/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280004} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_278085550529194/insights/post_clicks/lifetime"},"emitted_at":1671053280005} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_278085550529194/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280005} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_278085550529194/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280006} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_278085550529194/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280006} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_278085550529194/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280006} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_276148414056241/insights/post_impressions/lifetime"},"emitted_at":1671053280007} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_276148414056241/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280007} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_276148414056241/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280008} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_276148414056241/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280008} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_276148414056241/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280009} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_276148414056241/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280009} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_276148414056241/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280009} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_276148414056241/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280010} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_276148414056241/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280011} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_276148414056241/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280011} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_276148414056241/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280012} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_276148414056241/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280012} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_276148414056241/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280013} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_276148414056241/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280013} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_276148414056241/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280014} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_276148414056241/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280014} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_276148414056241/insights/post_engaged_users/lifetime"},"emitted_at":1671053280015} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_276148414056241/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280015} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_276148414056241/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280015} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_276148414056241/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280016} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_276148414056241/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280016} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_276148414056241/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280016} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_276148414056241/insights/post_clicks/lifetime"},"emitted_at":1671053280017} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_276148414056241/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280017} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_276148414056241/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280017} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_276148414056241/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280018} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_276148414056241/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280018} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_275573170780432/insights/post_impressions/lifetime"},"emitted_at":1671053280019} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_275573170780432/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280019} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_275573170780432/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280019} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_275573170780432/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280020} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_275573170780432/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280021} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_275573170780432/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280021} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_275573170780432/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280022} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_275573170780432/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280022} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_275573170780432/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280022} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_275573170780432/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280023} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_275573170780432/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280023} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_275573170780432/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280024} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_275573170780432/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280024} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_275573170780432/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280024} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_275573170780432/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280025} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_275573170780432/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280025} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_275573170780432/insights/post_engaged_users/lifetime"},"emitted_at":1671053280026} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_275573170780432/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280026} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_275573170780432/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280026} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_275573170780432/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280027} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_275573170780432/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280027} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_275573170780432/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280028} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_275573170780432/insights/post_clicks/lifetime"},"emitted_at":1671053280028} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_275573170780432/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280029} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_275573170780432/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280029} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_275573170780432/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280030} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_275573170780432/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280030} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_274987297505686/insights/post_impressions/lifetime"},"emitted_at":1671053280031} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_274987297505686/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280031} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_274987297505686/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280032} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_274987297505686/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280032} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_274987297505686/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280032} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_274987297505686/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280033} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_274987297505686/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280033} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_274987297505686/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280034} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_274987297505686/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280034} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_274987297505686/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280034} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_274987297505686/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280035} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_274987297505686/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280035} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_274987297505686/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280035} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_274987297505686/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280036} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_274987297505686/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280036} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_274987297505686/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280036} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_274987297505686/insights/post_engaged_users/lifetime"},"emitted_at":1671053280037} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_274987297505686/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280037} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_274987297505686/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280037} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_274987297505686/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280038} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_274987297505686/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280038} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_274987297505686/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280038} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_274987297505686/insights/post_clicks/lifetime"},"emitted_at":1671053280039} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_274987297505686/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280039} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_274987297505686/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280039} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_274987297505686/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280040} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_274987297505686/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280040} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_274402500897499/insights/post_impressions/lifetime"},"emitted_at":1671053280040} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_274402500897499/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280041} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_274402500897499/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280041} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_274402500897499/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280041} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_274402500897499/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280042} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_274402500897499/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280042} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_274402500897499/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280043} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_274402500897499/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280043} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_274402500897499/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280043} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_274402500897499/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280044} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_274402500897499/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280044} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_274402500897499/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280045} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_274402500897499/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280045} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_274402500897499/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280045} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_274402500897499/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280046} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_274402500897499/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280046} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_274402500897499/insights/post_engaged_users/lifetime"},"emitted_at":1671053280046} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_274402500897499/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280047} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_274402500897499/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280047} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_274402500897499/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280047} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_274402500897499/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280048} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_274402500897499/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280048} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_274402500897499/insights/post_clicks/lifetime"},"emitted_at":1671053280049} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_274402500897499/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280049} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_274402500897499/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280049} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_274402500897499/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280050} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_274402500897499/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280050} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_274021190935630/insights/post_impressions/lifetime"},"emitted_at":1671053280050} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_274021190935630/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280051} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_274021190935630/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280051} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_274021190935630/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280051} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_274021190935630/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280052} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_274021190935630/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280052} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_274021190935630/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280052} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_274021190935630/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280053} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_274021190935630/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280053} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_274021190935630/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280053} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_274021190935630/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280054} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_274021190935630/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280054} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_274021190935630/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280055} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_274021190935630/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280055} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_274021190935630/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280055} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_274021190935630/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280056} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_274021190935630/insights/post_engaged_users/lifetime"},"emitted_at":1671053280056} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_274021190935630/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280056} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_274021190935630/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280057} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_274021190935630/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280057} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_274021190935630/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280058} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_274021190935630/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280058} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_274021190935630/insights/post_clicks/lifetime"},"emitted_at":1671053280058} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_274021190935630/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280059} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_274021190935630/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280059} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_274021190935630/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280060} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_274021190935630/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280060} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_272121887792227/insights/post_impressions/lifetime"},"emitted_at":1671053280060} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_272121887792227/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280061} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_272121887792227/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280061} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_272121887792227/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280062} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_272121887792227/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280062} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_272121887792227/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280062} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_272121887792227/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280063} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_272121887792227/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280063} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_272121887792227/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280063} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_272121887792227/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280064} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_272121887792227/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280064} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_272121887792227/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280064} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_272121887792227/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280065} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_272121887792227/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280065} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_272121887792227/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280065} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_272121887792227/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280066} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_272121887792227/insights/post_engaged_users/lifetime"},"emitted_at":1671053280066} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_272121887792227/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280067} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_272121887792227/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280067} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_272121887792227/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280067} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_272121887792227/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280068} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_272121887792227/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280068} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_272121887792227/insights/post_clicks/lifetime"},"emitted_at":1671053280068} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_272121887792227/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280069} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_272121887792227/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280069} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_272121887792227/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280069} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_272121887792227/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280070} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_271558137848602/insights/post_impressions/lifetime"},"emitted_at":1671053280070} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_271558137848602/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280071} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_271558137848602/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280071} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_271558137848602/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280071} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_271558137848602/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280072} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_271558137848602/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280072} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_271558137848602/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280072} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_271558137848602/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280073} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_271558137848602/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280073} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_271558137848602/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280073} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_271558137848602/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280074} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_271558137848602/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280074} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_271558137848602/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280074} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_271558137848602/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280075} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_271558137848602/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280075} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_271558137848602/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280075} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_271558137848602/insights/post_engaged_users/lifetime"},"emitted_at":1671053280076} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_271558137848602/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280076} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_271558137848602/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280076} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_271558137848602/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280077} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_271558137848602/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280077} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_271558137848602/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280077} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_271558137848602/insights/post_clicks/lifetime"},"emitted_at":1671053280078} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_271558137848602/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280078} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_271558137848602/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280078} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_271558137848602/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280079} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_271558137848602/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280079} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_270988001238949/insights/post_impressions/lifetime"},"emitted_at":1671053280079} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_270988001238949/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280080} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_270988001238949/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280080} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_270988001238949/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280080} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_270988001238949/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280081} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_270988001238949/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280081} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_270988001238949/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280081} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_270988001238949/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280082} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_270988001238949/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280082} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_270988001238949/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280082} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_270988001238949/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280083} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_270988001238949/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280083} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_270988001238949/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280083} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_270988001238949/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280084} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_270988001238949/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280084} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_270988001238949/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280084} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_270988001238949/insights/post_engaged_users/lifetime"},"emitted_at":1671053280085} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_270988001238949/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280085} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_270988001238949/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280085} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_270988001238949/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280086} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_270988001238949/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280086} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_270988001238949/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280086} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_270988001238949/insights/post_clicks/lifetime"},"emitted_at":1671053280087} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_270988001238949/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280087} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_270988001238949/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280087} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_270988001238949/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280088} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_270988001238949/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280088} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_270370011300748/insights/post_impressions/lifetime"},"emitted_at":1671053280088} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_270370011300748/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280089} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_270370011300748/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280089} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_270370011300748/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280090} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_270370011300748/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280090} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_270370011300748/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280090} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_270370011300748/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280091} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_270370011300748/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280091} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_270370011300748/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280091} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_270370011300748/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280092} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_270370011300748/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280092} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_270370011300748/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280092} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_270370011300748/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280093} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_270370011300748/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280093} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_270370011300748/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280094} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_270370011300748/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280094} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_270370011300748/insights/post_engaged_users/lifetime"},"emitted_at":1671053280094} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_270370011300748/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280095} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_270370011300748/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280095} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_270370011300748/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280095} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_270370011300748/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280096} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_270370011300748/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280096} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_270370011300748/insights/post_clicks/lifetime"},"emitted_at":1671053280096} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_270370011300748/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280097} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_270370011300748/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280097} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_270370011300748/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280097} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_270370011300748/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280098} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_269990231338726/insights/post_impressions/lifetime"},"emitted_at":1671053280098} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_269990231338726/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280098} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_269990231338726/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280099} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_269990231338726/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280099} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_269990231338726/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280099} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_269990231338726/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280100} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_269990231338726/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280100} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_269990231338726/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280100} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_269990231338726/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280101} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_269990231338726/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280101} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_269990231338726/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280101} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_269990231338726/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280102} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_269990231338726/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280102} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_269990231338726/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280102} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_269990231338726/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280103} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_269990231338726/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280103} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_269990231338726/insights/post_engaged_users/lifetime"},"emitted_at":1671053280103} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_269990231338726/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280104} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_269990231338726/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280104} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_269990231338726/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280104} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_269990231338726/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280105} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_269990231338726/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280105} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_269990231338726/insights/post_clicks/lifetime"},"emitted_at":1671053280105} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_269990231338726/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280106} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_269990231338726/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280106} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_269990231338726/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280106} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_269990231338726/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280107} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_267920844878998/insights/post_impressions/lifetime"},"emitted_at":1671053280107} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_267920844878998/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280107} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_267920844878998/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280108} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_267920844878998/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280108} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_267920844878998/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280108} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_267920844878998/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280109} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_267920844878998/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280109} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_267920844878998/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280109} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_267920844878998/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280110} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_267920844878998/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280110} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_267920844878998/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280110} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_267920844878998/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280111} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_267920844878998/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280111} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_267920844878998/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280111} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_267920844878998/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280112} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_267920844878998/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280112} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_267920844878998/insights/post_engaged_users/lifetime"},"emitted_at":1671053280112} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_267920844878998/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280113} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_267920844878998/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280113} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_267920844878998/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280113} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_267920844878998/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280114} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_267920844878998/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280114} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_267920844878998/insights/post_clicks/lifetime"},"emitted_at":1671053280114} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_267920844878998/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280115} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_267920844878998/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280115} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_267920844878998/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280115} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_267920844878998/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280116} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_267328468271569/insights/post_impressions/lifetime"},"emitted_at":1671053280116} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_267328468271569/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280116} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_267328468271569/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280117} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_267328468271569/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280117} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_267328468271569/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280117} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_267328468271569/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280118} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_267328468271569/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280118} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_267328468271569/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280118} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_267328468271569/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280119} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_267328468271569/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280119} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_267328468271569/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280119} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_267328468271569/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280120} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_267328468271569/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280120} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_267328468271569/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280120} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_267328468271569/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280121} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_267328468271569/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280121} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_267328468271569/insights/post_engaged_users/lifetime"},"emitted_at":1671053280121} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_267328468271569/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280122} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_267328468271569/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280122} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_267328468271569/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280122} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_267328468271569/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280123} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_267328468271569/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280123} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_267328468271569/insights/post_clicks/lifetime"},"emitted_at":1671053280123} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_267328468271569/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280124} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_267328468271569/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280124} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_267328468271569/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280124} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_267328468271569/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280125} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_266874854983597/insights/post_impressions/lifetime"},"emitted_at":1671053280125} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_266874854983597/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280125} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_266874854983597/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280126} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_266874854983597/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280126} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_266874854983597/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280126} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_266874854983597/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280127} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_266874854983597/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280127} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_266874854983597/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280127} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_266874854983597/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280128} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_266874854983597/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280128} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_266874854983597/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280128} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_266874854983597/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280129} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_266874854983597/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280129} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_266874854983597/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280129} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_266874854983597/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280130} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_266874854983597/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280130} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_266874854983597/insights/post_engaged_users/lifetime"},"emitted_at":1671053280130} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_266874854983597/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280131} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_266874854983597/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280131} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_266874854983597/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280131} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_266874854983597/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280132} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_266874854983597/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280132} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_266874854983597/insights/post_clicks/lifetime"},"emitted_at":1671053280132} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_266874854983597/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280133} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_266874854983597/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280133} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_266874854983597/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280133} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_266874854983597/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280134} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_266712038333212/insights/post_impressions/lifetime"},"emitted_at":1671053280134} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_266712038333212/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280134} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_266712038333212/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280135} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_266712038333212/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280135} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_266712038333212/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280135} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_266712038333212/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280136} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_266712038333212/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280136} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_266712038333212/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280137} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_266712038333212/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280137} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_266712038333212/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280137} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_266712038333212/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280138} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_266712038333212/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280138} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_266712038333212/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280138} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_266712038333212/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280139} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_266712038333212/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280139} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_266712038333212/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280139} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_266712038333212/insights/post_engaged_users/lifetime"},"emitted_at":1671053280140} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_266712038333212/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280140} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_266712038333212/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280140} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_266712038333212/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280141} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_266712038333212/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280141} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_266712038333212/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280141} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_266712038333212/insights/post_clicks/lifetime"},"emitted_at":1671053280142} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_266712038333212/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280142} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_266712038333212/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280142} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_266712038333212/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280143} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_266712038333212/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280143} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_266131211724628/insights/post_impressions/lifetime"},"emitted_at":1671053280144} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_266131211724628/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280144} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_266131211724628/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280144} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_266131211724628/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280145} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_266131211724628/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280145} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_266131211724628/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280145} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_266131211724628/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280146} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_266131211724628/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280146} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_266131211724628/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280146} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_266131211724628/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280147} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_266131211724628/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280147} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_266131211724628/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280147} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_266131211724628/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280148} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_266131211724628/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280148} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_266131211724628/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280148} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_266131211724628/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280149} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_266131211724628/insights/post_engaged_users/lifetime"},"emitted_at":1671053280149} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_266131211724628/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280149} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_266131211724628/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280150} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_266131211724628/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280150} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_266131211724628/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280150} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_266131211724628/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280151} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_266131211724628/insights/post_clicks/lifetime"},"emitted_at":1671053280151} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_266131211724628/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280151} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_266131211724628/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280152} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_266131211724628/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280152} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_266131211724628/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280152} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_265726201765129/insights/post_impressions/lifetime"},"emitted_at":1671053280153} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_265726201765129/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280153} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_265726201765129/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280153} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_265726201765129/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280154} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_265726201765129/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280154} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_265726201765129/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280154} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_265726201765129/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280155} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_265726201765129/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280155} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_265726201765129/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280155} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_265726201765129/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280156} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_265726201765129/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280156} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_265726201765129/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280157} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_265726201765129/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280157} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_265726201765129/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280158} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_265726201765129/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280158} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_265726201765129/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280158} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_265726201765129/insights/post_engaged_users/lifetime"},"emitted_at":1671053280159} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_265726201765129/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280159} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_265726201765129/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280160} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_265726201765129/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280160} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_265726201765129/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280160} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_265726201765129/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280161} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_265726201765129/insights/post_clicks/lifetime"},"emitted_at":1671053280161} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_265726201765129/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280161} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_265726201765129/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280162} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_265726201765129/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280162} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_265726201765129/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280162} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_263816225289460/insights/post_impressions/lifetime"},"emitted_at":1671053280163} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_263816225289460/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280163} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_263816225289460/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280163} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_263816225289460/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280164} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_263816225289460/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280164} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_263816225289460/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280164} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_263816225289460/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280165} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_263816225289460/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280165} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_263816225289460/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280166} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_263816225289460/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280166} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_263816225289460/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280166} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_263816225289460/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280167} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_263816225289460/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280167} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_263816225289460/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280167} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_263816225289460/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280168} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_263816225289460/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280168} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_263816225289460/insights/post_engaged_users/lifetime"},"emitted_at":1671053280168} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_263816225289460/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280169} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_263816225289460/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280169} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_263816225289460/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280169} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_263816225289460/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280170} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_263816225289460/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280170} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_263816225289460/insights/post_clicks/lifetime"},"emitted_at":1671053280170} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_263816225289460/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280171} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_263816225289460/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280171} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_263816225289460/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280171} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_263816225289460/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280172} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_263153415355741/insights/post_impressions/lifetime"},"emitted_at":1671053280172} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_263153415355741/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280172} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_263153415355741/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280173} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_263153415355741/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280173} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_263153415355741/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280173} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_263153415355741/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280174} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_263153415355741/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280174} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_263153415355741/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280174} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_263153415355741/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280175} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_263153415355741/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280176} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_263153415355741/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280176} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_263153415355741/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280177} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_263153415355741/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280177} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_263153415355741/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280177} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_263153415355741/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280178} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_263153415355741/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280178} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_263153415355741/insights/post_engaged_users/lifetime"},"emitted_at":1671053280178} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_263153415355741/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280179} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_263153415355741/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280179} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_263153415355741/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280179} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_263153415355741/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280180} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_263153415355741/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280180} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_263153415355741/insights/post_clicks/lifetime"},"emitted_at":1671053280180} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_263153415355741/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280181} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_263153415355741/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280181} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_263153415355741/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280181} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_263153415355741/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280182} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_262544912083258/insights/post_impressions/lifetime"},"emitted_at":1671053280182} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_262544912083258/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280183} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_262544912083258/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280183} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_262544912083258/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280183} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_262544912083258/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280184} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_262544912083258/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280184} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_262544912083258/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280184} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_262544912083258/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280185} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_262544912083258/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280185} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_262544912083258/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280185} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_262544912083258/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280186} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_262544912083258/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280186} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_262544912083258/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280186} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_262544912083258/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280187} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_262544912083258/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280187} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_262544912083258/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280188} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_262544912083258/insights/post_engaged_users/lifetime"},"emitted_at":1671053280188} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_262544912083258/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280188} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_262544912083258/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280189} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_262544912083258/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280189} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_262544912083258/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280189} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_262544912083258/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280190} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_262544912083258/insights/post_clicks/lifetime"},"emitted_at":1671053280190} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_262544912083258/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280190} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_262544912083258/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280191} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_262544912083258/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280191} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_262544912083258/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280191} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_261914725479610/insights/post_impressions/lifetime"},"emitted_at":1671053280192} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_261914725479610/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280192} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_261914725479610/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280192} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_261914725479610/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280193} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_261914725479610/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280193} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_261914725479610/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280193} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_261914725479610/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280194} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_261914725479610/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280194} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_261914725479610/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280194} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_261914725479610/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280195} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_261914725479610/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280195} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_261914725479610/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280195} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_261914725479610/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280195} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_261914725479610/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280196} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_261914725479610/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280196} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_261914725479610/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280196} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_261914725479610/insights/post_engaged_users/lifetime"},"emitted_at":1671053280197} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_261914725479610/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280197} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_261914725479610/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280197} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_261914725479610/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280198} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_261914725479610/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280198} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_261914725479610/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280198} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_261914725479610/insights/post_clicks/lifetime"},"emitted_at":1671053280199} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_261914725479610/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280199} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_261914725479610/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280199} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_261914725479610/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280200} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_261914725479610/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280200} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_261514475519635/insights/post_impressions/lifetime"},"emitted_at":1671053280200} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_261514475519635/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280201} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_261514475519635/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280201} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_261514475519635/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280201} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_261514475519635/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280202} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_261514475519635/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280202} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_261514475519635/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280202} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_261514475519635/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280203} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_261514475519635/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280203} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_261514475519635/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280203} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_261514475519635/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280204} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_261514475519635/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280204} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_261514475519635/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280205} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_261514475519635/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280205} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_261514475519635/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280205} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_261514475519635/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280206} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_261514475519635/insights/post_engaged_users/lifetime"},"emitted_at":1671053280206} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_261514475519635/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280206} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_261514475519635/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280207} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_261514475519635/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280207} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_261514475519635/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280207} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_261514475519635/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280208} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_261514475519635/insights/post_clicks/lifetime"},"emitted_at":1671053280208} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_261514475519635/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280208} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_261514475519635/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280209} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_261514475519635/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280209} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_261514475519635/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280209} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_259552055715877/insights/post_impressions/lifetime"},"emitted_at":1671053280210} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_259552055715877/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280210} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_259552055715877/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280210} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_259552055715877/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280211} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_259552055715877/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280211} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_259552055715877/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280211} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_259552055715877/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280212} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_259552055715877/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280212} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_259552055715877/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280212} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_259552055715877/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280212} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_259552055715877/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280213} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_259552055715877/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280213} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_259552055715877/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280213} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_259552055715877/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280214} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_259552055715877/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280214} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_259552055715877/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280214} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_259552055715877/insights/post_engaged_users/lifetime"},"emitted_at":1671053280215} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_259552055715877/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280215} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_259552055715877/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280215} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_259552055715877/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280216} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_259552055715877/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280216} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_259552055715877/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280216} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_259552055715877/insights/post_clicks/lifetime"},"emitted_at":1671053280217} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_259552055715877/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280217} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_259552055715877/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280217} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_259552055715877/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280218} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_259552055715877/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280218} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_258991222438627/insights/post_impressions/lifetime"},"emitted_at":1671053280218} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_258991222438627/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280219} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_258991222438627/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280219} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_258991222438627/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280219} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_258991222438627/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280220} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_258991222438627/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280220} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_258991222438627/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280220} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_258991222438627/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280221} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_258991222438627/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280221} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_258991222438627/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280221} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_258991222438627/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280222} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_258991222438627/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280222} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_258991222438627/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280222} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_258991222438627/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280223} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_258991222438627/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280223} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_258991222438627/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280223} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_258991222438627/insights/post_engaged_users/lifetime"},"emitted_at":1671053280224} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_258991222438627/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280224} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_258991222438627/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280224} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_258991222438627/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280225} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_258991222438627/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280225} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_258991222438627/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280225} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_258991222438627/insights/post_clicks/lifetime"},"emitted_at":1671053280226} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_258991222438627/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280226} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_258991222438627/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280226} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_258991222438627/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280227} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_258991222438627/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280227} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_258402532497496/insights/post_impressions/lifetime"},"emitted_at":1671053280228} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_258402532497496/insights/post_impressions_unique/lifetime"},"emitted_at":1671053280228} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_258402532497496/insights/post_impressions_paid/lifetime"},"emitted_at":1671053280228} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_258402532497496/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053280229} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_258402532497496/insights/post_impressions_fan/lifetime"},"emitted_at":1671053280229} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_258402532497496/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053280229} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_258402532497496/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053280230} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_258402532497496/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053280230} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_258402532497496/insights/post_impressions_organic/lifetime"},"emitted_at":1671053280230} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_258402532497496/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053280231} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_258402532497496/insights/post_impressions_viral/lifetime"},"emitted_at":1671053280231} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_258402532497496/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053280231} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_258402532497496/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053280232} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_258402532497496/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053280232} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_258402532497496/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053280232} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_258402532497496/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053280233} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_258402532497496/insights/post_engaged_users/lifetime"},"emitted_at":1671053280233} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_258402532497496/insights/post_negative_feedback/lifetime"},"emitted_at":1671053280233} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_258402532497496/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053280234} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_258402532497496/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053280234} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_258402532497496/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053280234} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_258402532497496/insights/post_engaged_fan/lifetime"},"emitted_at":1671053280235} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_258402532497496/insights/post_clicks/lifetime"},"emitted_at":1671053280235} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_258402532497496/insights/post_clicks_unique/lifetime"},"emitted_at":1671053280235} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_258402532497496/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053280236} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_258402532497496/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053280236} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_258402532497496/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053280236} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_257831972554552/insights/post_impressions/lifetime"},"emitted_at":1671053281680} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_257831972554552/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281681} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_257831972554552/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281682} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_257831972554552/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281683} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_257831972554552/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281683} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_257831972554552/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281684} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_257831972554552/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281685} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_257831972554552/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281685} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_257831972554552/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281686} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_257831972554552/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281687} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_257831972554552/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281687} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_257831972554552/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281688} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_257831972554552/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281689} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_257831972554552/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281689} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_257831972554552/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281690} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_257831972554552/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281690} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_257831972554552/insights/post_engaged_users/lifetime"},"emitted_at":1671053281691} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_257831972554552/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281692} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_257831972554552/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281692} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_257831972554552/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281693} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_257831972554552/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281694} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_257831972554552/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281694} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_257831972554552/insights/post_clicks/lifetime"},"emitted_at":1671053281695} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_257831972554552/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281695} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_257831972554552/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281696} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_257831972554552/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281697} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_257831972554552/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281697} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_257438195927263/insights/post_impressions/lifetime"},"emitted_at":1671053281698} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_257438195927263/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281698} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_257438195927263/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281699} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_257438195927263/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281699} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_257438195927263/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281700} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_257438195927263/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281700} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_257438195927263/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281701} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_257438195927263/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281701} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_257438195927263/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281702} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_257438195927263/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281702} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_257438195927263/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281703} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_257438195927263/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281703} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_257438195927263/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281704} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_257438195927263/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281704} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_257438195927263/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281705} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_257438195927263/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281705} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_257438195927263/insights/post_engaged_users/lifetime"},"emitted_at":1671053281706} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_257438195927263/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281706} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_257438195927263/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281707} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_257438195927263/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281707} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_257438195927263/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281708} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_257438195927263/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281708} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_257438195927263/insights/post_clicks/lifetime"},"emitted_at":1671053281709} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_257438195927263/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281709} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_257438195927263/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281709} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_257438195927263/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281710} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_257438195927263/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281710} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_255539839450432/insights/post_impressions/lifetime"},"emitted_at":1671053281711} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_255539839450432/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281711} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_255539839450432/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281712} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_255539839450432/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281712} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_255539839450432/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281713} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_255539839450432/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281713} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_255539839450432/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281713} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_255539839450432/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281714} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_255539839450432/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281714} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_255539839450432/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281715} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_255539839450432/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281715} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_255539839450432/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281716} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_255539839450432/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281716} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_255539839450432/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281717} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_255539839450432/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281717} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_255539839450432/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281717} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_255539839450432/insights/post_engaged_users/lifetime"},"emitted_at":1671053281718} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_255539839450432/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281718} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_255539839450432/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281719} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_255539839450432/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281719} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_255539839450432/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281719} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_255539839450432/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281720} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_255539839450432/insights/post_clicks/lifetime"},"emitted_at":1671053281720} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_255539839450432/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281721} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_255539839450432/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281721} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_255539839450432/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281721} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_255539839450432/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281722} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_254941622843587/insights/post_impressions/lifetime"},"emitted_at":1671053281722} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_254941622843587/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281722} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_254941622843587/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281723} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_254941622843587/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281723} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_254941622843587/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281724} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_254941622843587/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281724} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_254941622843587/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281725} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_254941622843587/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281725} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_254941622843587/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281726} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_254941622843587/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281726} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_254941622843587/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281726} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_254941622843587/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281727} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_254941622843587/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281727} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_254941622843587/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281728} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_254941622843587/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281728} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_254941622843587/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281728} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_254941622843587/insights/post_engaged_users/lifetime"},"emitted_at":1671053281729} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_254941622843587/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281729} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_254941622843587/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281729} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_254941622843587/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281730} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_254941622843587/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281730} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_254941622843587/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281731} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_254941622843587/insights/post_clicks/lifetime"},"emitted_at":1671053281731} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_254941622843587/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281731} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_254941622843587/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281732} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_254941622843587/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281732} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_254941622843587/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281732} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_254335299570886/insights/post_impressions/lifetime"},"emitted_at":1671053281733} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_254335299570886/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281733} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_254335299570886/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281733} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_254335299570886/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281734} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_254335299570886/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281734} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_254335299570886/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281735} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_254335299570886/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281735} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_254335299570886/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281736} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_254335299570886/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281736} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_254335299570886/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281736} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_254335299570886/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281737} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_254335299570886/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281737} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_254335299570886/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281737} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_254335299570886/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281738} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_254335299570886/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281738} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_254335299570886/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281738} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_254335299570886/insights/post_engaged_users/lifetime"},"emitted_at":1671053281739} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_254335299570886/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281739} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_254335299570886/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281739} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_254335299570886/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281740} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_254335299570886/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281740} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_254335299570886/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281740} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_254335299570886/insights/post_clicks/lifetime"},"emitted_at":1671053281741} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_254335299570886/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281741} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_254335299570886/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281741} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_254335299570886/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281742} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_254335299570886/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281742} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_253819956289087/insights/post_impressions/lifetime"},"emitted_at":1671053281742} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_253819956289087/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281743} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_253819956289087/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281743} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_253819956289087/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281744} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_253819956289087/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281744} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_253819956289087/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281744} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_253819956289087/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281745} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_253819956289087/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281745} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_253819956289087/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281745} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_253819956289087/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281746} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_253819956289087/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281746} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_253819956289087/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281747} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":26}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_253819956289087/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281747} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":25}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_253819956289087/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281747} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_253819956289087/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281748} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_253819956289087/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281748} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_253819956289087/insights/post_engaged_users/lifetime"},"emitted_at":1671053281748} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_253819956289087/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281749} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_253819956289087/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281749} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_253819956289087/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281749} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_253819956289087/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281750} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_253819956289087/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281750} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_253819956289087/insights/post_clicks/lifetime"},"emitted_at":1671053281750} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_253819956289087/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281751} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_253819956289087/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281751} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_253819956289087/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281751} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_253819956289087/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281752} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_253753339629082/insights/post_impressions/lifetime"},"emitted_at":1671053281752} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_253753339629082/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281752} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_253753339629082/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281753} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_253753339629082/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281753} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_253753339629082/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281753} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_253753339629082/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281754} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_253753339629082/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281754} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_253753339629082/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281755} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_253753339629082/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281755} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_253753339629082/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281756} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_253753339629082/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281756} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_253753339629082/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281756} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_253753339629082/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281757} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_253753339629082/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281758} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_253753339629082/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281758} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_253753339629082/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281758} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_253753339629082/insights/post_engaged_users/lifetime"},"emitted_at":1671053281759} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_253753339629082/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281759} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_253753339629082/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281759} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_253753339629082/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281760} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_253753339629082/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281760} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_253753339629082/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281760} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_253753339629082/insights/post_clicks/lifetime"},"emitted_at":1671053281761} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_253753339629082/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281761} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_253753339629082/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281761} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_253753339629082/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281762} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_253753339629082/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281762} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_253466096324473/insights/post_impressions/lifetime"},"emitted_at":1671053281762} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_253466096324473/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281763} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_253466096324473/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281763} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_253466096324473/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281763} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_253466096324473/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281764} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_253466096324473/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281764} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_253466096324473/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281764} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_253466096324473/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281765} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_253466096324473/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281765} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_253466096324473/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281766} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_253466096324473/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281766} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_253466096324473/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281766} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_253466096324473/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281767} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_253466096324473/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281767} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_253466096324473/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281767} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_253466096324473/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281768} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_253466096324473/insights/post_engaged_users/lifetime"},"emitted_at":1671053281768} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_253466096324473/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281769} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_253466096324473/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281769} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_253466096324473/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281769} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_253466096324473/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281770} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_253466096324473/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281770} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_253466096324473/insights/post_clicks/lifetime"},"emitted_at":1671053281770} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_253466096324473/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281771} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_253466096324473/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281771} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_253466096324473/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281771} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_253466096324473/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281772} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_253376709666745/insights/post_impressions/lifetime"},"emitted_at":1671053281772} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_253376709666745/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281772} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_253376709666745/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281772} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_253376709666745/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281773} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_253376709666745/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281773} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_253376709666745/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281773} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_253376709666745/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281774} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_253376709666745/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281774} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_253376709666745/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281775} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_253376709666745/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281775} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_253376709666745/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281776} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_253376709666745/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281776} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_253376709666745/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281776} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_253376709666745/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281777} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_253376709666745/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281777} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_253376709666745/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281777} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_253376709666745/insights/post_engaged_users/lifetime"},"emitted_at":1671053281778} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_253376709666745/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281778} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_253376709666745/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281778} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_253376709666745/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281779} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_253376709666745/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281779} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_253376709666745/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281780} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_253376709666745/insights/post_clicks/lifetime"},"emitted_at":1671053281780} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_253376709666745/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281780} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_253376709666745/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281781} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_253376709666745/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281781} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_253376709666745/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281781} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_251477666523316/insights/post_impressions/lifetime"},"emitted_at":1671053281782} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_251477666523316/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281782} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_251477666523316/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281782} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_251477666523316/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281783} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_251477666523316/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281783} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_251477666523316/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281783} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_251477666523316/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281784} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_251477666523316/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281784} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_251477666523316/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281784} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_251477666523316/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281785} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_251477666523316/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281785} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_251477666523316/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281785} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_251477666523316/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281786} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_251477666523316/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281786} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_251477666523316/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281786} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_251477666523316/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281787} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_251477666523316/insights/post_engaged_users/lifetime"},"emitted_at":1671053281787} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_251477666523316/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281787} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_251477666523316/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281788} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_251477666523316/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281788} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_251477666523316/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281788} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_251477666523316/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281789} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_251477666523316/insights/post_clicks/lifetime"},"emitted_at":1671053281789} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_251477666523316/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281789} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_251477666523316/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281790} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_251477666523316/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281790} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_251477666523316/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281791} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_250898103247939/insights/post_impressions/lifetime"},"emitted_at":1671053281791} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_250898103247939/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281791} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_250898103247939/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281792} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_250898103247939/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281792} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_250898103247939/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281793} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_250898103247939/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281793} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_250898103247939/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281794} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_250898103247939/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281794} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_250898103247939/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281794} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_250898103247939/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281795} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_250898103247939/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281795} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_250898103247939/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281795} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_250898103247939/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281796} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":18}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_250898103247939/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281796} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_250898103247939/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281797} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_250898103247939/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281797} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_250898103247939/insights/post_engaged_users/lifetime"},"emitted_at":1671053281797} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_250898103247939/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281798} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_250898103247939/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281798} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_250898103247939/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281799} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_250898103247939/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281799} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_250898103247939/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281799} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_250898103247939/insights/post_clicks/lifetime"},"emitted_at":1671053281800} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_250898103247939/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281800} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_250898103247939/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281800} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_250898103247939/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281801} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_250898103247939/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281801} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_250315856639497/insights/post_impressions/lifetime"},"emitted_at":1671053281802} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_250315856639497/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281802} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_250315856639497/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281803} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_250315856639497/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281803} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_250315856639497/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281803} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_250315856639497/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281804} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_250315856639497/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281804} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_250315856639497/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281804} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_250315856639497/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281805} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_250315856639497/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281805} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_250315856639497/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281805} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_250315856639497/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281806} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_250315856639497/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281806} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":16}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_250315856639497/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281806} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_250315856639497/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281807} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_250315856639497/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281807} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_250315856639497/insights/post_engaged_users/lifetime"},"emitted_at":1671053281808} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_250315856639497/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281808} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_250315856639497/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281808} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_250315856639497/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281809} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_250315856639497/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281809} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_250315856639497/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281809} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_250315856639497/insights/post_clicks/lifetime"},"emitted_at":1671053281810} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_250315856639497/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281810} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_250315856639497/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281810} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_250315856639497/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281811} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_250315856639497/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281811} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_249922550012161/insights/post_impressions/lifetime"},"emitted_at":1671053281811} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_249922550012161/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281812} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_249922550012161/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281812} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_249922550012161/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281812} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_249922550012161/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281813} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_249922550012161/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281813} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_249922550012161/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281813} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_249922550012161/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281814} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_249922550012161/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281814} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_249922550012161/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281814} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_249922550012161/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281815} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_249922550012161/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281815} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_249922550012161/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281815} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_249922550012161/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281816} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_249922550012161/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281816} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_249922550012161/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281816} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_249922550012161/insights/post_engaged_users/lifetime"},"emitted_at":1671053281817} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_249922550012161/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281817} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_249922550012161/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281818} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_249922550012161/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281818} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_249922550012161/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281818} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_249922550012161/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281819} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_249922550012161/insights/post_clicks/lifetime"},"emitted_at":1671053281819} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_249922550012161/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281819} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_249922550012161/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281820} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_249922550012161/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281820} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_249922550012161/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281820} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_249746550029761/insights/post_impressions/lifetime"},"emitted_at":1671053281821} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_249746550029761/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281821} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_249746550029761/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281821} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_249746550029761/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281822} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_249746550029761/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281822} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_249746550029761/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281823} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_249746550029761/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281823} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_249746550029761/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281823} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_249746550029761/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281824} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_249746550029761/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281824} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_249746550029761/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281824} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_249746550029761/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281825} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_249746550029761/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281825} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_249746550029761/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281825} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_249746550029761/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281826} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_249746550029761/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281826} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_249746550029761/insights/post_engaged_users/lifetime"},"emitted_at":1671053281826} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_249746550029761/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281827} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_249746550029761/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281827} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_249746550029761/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281827} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_249746550029761/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281828} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_249746550029761/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281828} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_249746550029761/insights/post_clicks/lifetime"},"emitted_at":1671053281828} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_249746550029761/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281829} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_249746550029761/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281829} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_249746550029761/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281829} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_249746550029761/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281830} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_249378760066540/insights/post_impressions/lifetime"},"emitted_at":1671053281830} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_249378760066540/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281830} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_249378760066540/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281831} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_249378760066540/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281831} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_249378760066540/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281831} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_249378760066540/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281832} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_249378760066540/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281832} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_249378760066540/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281832} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_249378760066540/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281833} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_249378760066540/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281833} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_249378760066540/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281833} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_249378760066540/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281834} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_249378760066540/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281834} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_249378760066540/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281834} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_249378760066540/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281835} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_249378760066540/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281835} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_249378760066540/insights/post_engaged_users/lifetime"},"emitted_at":1671053281835} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_249378760066540/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281836} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_249378760066540/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281836} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_249378760066540/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281837} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_249378760066540/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281837} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_249378760066540/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281838} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_249378760066540/insights/post_clicks/lifetime"},"emitted_at":1671053281838} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_249378760066540/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281838} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_249378760066540/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281839} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_249378760066540/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281839} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_249378760066540/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281839} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_247526940251722/insights/post_impressions/lifetime"},"emitted_at":1671053281840} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_247526940251722/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281840} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_247526940251722/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281840} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_247526940251722/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281841} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_247526940251722/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281841} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_247526940251722/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281842} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_247526940251722/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281842} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_247526940251722/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281842} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_247526940251722/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281843} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_247526940251722/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281843} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_247526940251722/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281843} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_247526940251722/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281844} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_247526940251722/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281844} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_247526940251722/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281844} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_247526940251722/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281845} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_247526940251722/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281845} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_247526940251722/insights/post_engaged_users/lifetime"},"emitted_at":1671053281845} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_247526940251722/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281846} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_247526940251722/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281846} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_247526940251722/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281847} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_247526940251722/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281847} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_247526940251722/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281847} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_247526940251722/insights/post_clicks/lifetime"},"emitted_at":1671053281848} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_247526940251722/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281848} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_247526940251722/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281849} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_247526940251722/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281849} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_247526940251722/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281849} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_246948243642925/insights/post_impressions/lifetime"},"emitted_at":1671053281850} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_246948243642925/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281850} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_246948243642925/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281850} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_246948243642925/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281851} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_246948243642925/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281851} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_246948243642925/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281851} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_246948243642925/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281852} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_246948243642925/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281852} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_246948243642925/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281852} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_246948243642925/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281853} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_246948243642925/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281853} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_246948243642925/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281853} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_246948243642925/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281854} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_246948243642925/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281854} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_246948243642925/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281854} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_246948243642925/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281855} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_246948243642925/insights/post_engaged_users/lifetime"},"emitted_at":1671053281855} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_246948243642925/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281855} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_246948243642925/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281856} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_246948243642925/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281856} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_246948243642925/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281857} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_246948243642925/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281857} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_246948243642925/insights/post_clicks/lifetime"},"emitted_at":1671053281857} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_246948243642925/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281858} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_246948243642925/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281858} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_246948243642925/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281858} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_246948243642925/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281859} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_246379447033138/insights/post_impressions/lifetime"},"emitted_at":1671053281859} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_246379447033138/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281859} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_246379447033138/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281860} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_246379447033138/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281860} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_246379447033138/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281860} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_246379447033138/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281861} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_246379447033138/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281861} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_246379447033138/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281861} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_246379447033138/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281862} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_246379447033138/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281862} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_246379447033138/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281863} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_246379447033138/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281863} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_246379447033138/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281863} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_246379447033138/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281864} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_246379447033138/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281864} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_246379447033138/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281864} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_246379447033138/insights/post_engaged_users/lifetime"},"emitted_at":1671053281865} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_246379447033138/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281865} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_246379447033138/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281865} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_246379447033138/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281866} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_246379447033138/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281866} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_246379447033138/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281866} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_246379447033138/insights/post_clicks/lifetime"},"emitted_at":1671053281867} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_246379447033138/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281867} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_246379447033138/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281867} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_246379447033138/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281868} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_246379447033138/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281868} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_245336090470807/insights/post_impressions/lifetime"},"emitted_at":1671053281868} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_245336090470807/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281869} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_245336090470807/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281869} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_245336090470807/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281869} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_245336090470807/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281870} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_245336090470807/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281870} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_245336090470807/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281871} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_245336090470807/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281871} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_245336090470807/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281871} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_245336090470807/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281872} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_245336090470807/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281872} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_245336090470807/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281872} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_245336090470807/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281873} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_245336090470807/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281873} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_245336090470807/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281874} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_245336090470807/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281874} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_245336090470807/insights/post_engaged_users/lifetime"},"emitted_at":1671053281874} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_245336090470807/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281875} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_245336090470807/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281875} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_245336090470807/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281875} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_245336090470807/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281876} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_245336090470807/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281876} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_245336090470807/insights/post_clicks/lifetime"},"emitted_at":1671053281876} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_245336090470807/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281877} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_245336090470807/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281877} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_245336090470807/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281877} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_245336090470807/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281878} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_243403453997404/insights/post_impressions/lifetime"},"emitted_at":1671053281878} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_243403453997404/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281878} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_243403453997404/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281879} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_243403453997404/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281879} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_243403453997404/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281880} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_243403453997404/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281880} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_243403453997404/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281880} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_243403453997404/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281881} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_243403453997404/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281881} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_243403453997404/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281881} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_243403453997404/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281882} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_243403453997404/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281882} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_243403453997404/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281882} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_243403453997404/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281883} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_243403453997404/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281883} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_243403453997404/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281883} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_243403453997404/insights/post_engaged_users/lifetime"},"emitted_at":1671053281884} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_243403453997404/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281884} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_243403453997404/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281884} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_243403453997404/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281885} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_243403453997404/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281885} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_243403453997404/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281885} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_243403453997404/insights/post_clicks/lifetime"},"emitted_at":1671053281886} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_243403453997404/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281886} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_243403453997404/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281886} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_243403453997404/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281887} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_243403453997404/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281887} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_242844180719998/insights/post_impressions/lifetime"},"emitted_at":1671053281887} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_242844180719998/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281888} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_242844180719998/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281888} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_242844180719998/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281888} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_242844180719998/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281889} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_242844180719998/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281889} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_242844180719998/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281890} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_242844180719998/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281890} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_242844180719998/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281891} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_242844180719998/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281891} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_242844180719998/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281891} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_242844180719998/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281892} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_242844180719998/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281892} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_242844180719998/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281892} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_242844180719998/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281893} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_242844180719998/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281893} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_242844180719998/insights/post_engaged_users/lifetime"},"emitted_at":1671053281893} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_242844180719998/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281894} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_242844180719998/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281894} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_242844180719998/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281894} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_242844180719998/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281895} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_242844180719998/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281895} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_242844180719998/insights/post_clicks/lifetime"},"emitted_at":1671053281895} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_242844180719998/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281896} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_242844180719998/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281896} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_242844180719998/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281896} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_242844180719998/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281897} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_242279687443114/insights/post_impressions/lifetime"},"emitted_at":1671053281897} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_242279687443114/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281897} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_242279687443114/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281897} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_242279687443114/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281898} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_242279687443114/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281898} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_242279687443114/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281898} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_242279687443114/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281899} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_242279687443114/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281899} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_242279687443114/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281900} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_242279687443114/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281900} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_242279687443114/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281900} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_242279687443114/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281901} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_242279687443114/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281901} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_242279687443114/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281902} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_242279687443114/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281902} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_242279687443114/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281902} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_242279687443114/insights/post_engaged_users/lifetime"},"emitted_at":1671053281903} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_242279687443114/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281903} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_242279687443114/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281903} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_242279687443114/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281904} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_242279687443114/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281904} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_242279687443114/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281904} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_242279687443114/insights/post_clicks/lifetime"},"emitted_at":1671053281905} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_242279687443114/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281905} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_242279687443114/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281905} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_242279687443114/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281906} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_242279687443114/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281906} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_235571798113903/insights/post_impressions/lifetime"},"emitted_at":1671053281906} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_235571798113903/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281907} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_235571798113903/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281907} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_235571798113903/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281908} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_235571798113903/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281908} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_235571798113903/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281908} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_235571798113903/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281909} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_235571798113903/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281909} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_235571798113903/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281910} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_235571798113903/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281910} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_235571798113903/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281910} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_235571798113903/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281911} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":21}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_235571798113903/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281911} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":20}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_235571798113903/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281911} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_235571798113903/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281912} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_235571798113903/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281912} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_235571798113903/insights/post_engaged_users/lifetime"},"emitted_at":1671053281912} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_235571798113903/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281913} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_235571798113903/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281913} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_235571798113903/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281913} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_235571798113903/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281914} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_235571798113903/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281914} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_235571798113903/insights/post_clicks/lifetime"},"emitted_at":1671053281914} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_235571798113903/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281915} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_235571798113903/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281915} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_235571798113903/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281916} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_235571798113903/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281916} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_235012344836515/insights/post_impressions/lifetime"},"emitted_at":1671053281916} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_235012344836515/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281917} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_235012344836515/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281917} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_235012344836515/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281917} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_235012344836515/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281918} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":9}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_235012344836515/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281918} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_235012344836515/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281918} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_235012344836515/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281919} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_235012344836515/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281919} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_235012344836515/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281919} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_235012344836515/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281920} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_235012344836515/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281920} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_235012344836515/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281920} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":17}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_235012344836515/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281921} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_235012344836515/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281921} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_235012344836515/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281921} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_235012344836515/insights/post_engaged_users/lifetime"},"emitted_at":1671053281922} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_235012344836515/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281922} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_235012344836515/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281922} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_235012344836515/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281923} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_235012344836515/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281923} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_235012344836515/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281923} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_235012344836515/insights/post_clicks/lifetime"},"emitted_at":1671053281924} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_235012344836515/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281924} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1,"photo view":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_235012344836515/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281924} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1,"photo view":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_235012344836515/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281925} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_235012344836515/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281925} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_233968658274217/insights/post_impressions/lifetime"},"emitted_at":1671053281926} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_233968658274217/insights/post_impressions_unique/lifetime"},"emitted_at":1671053281926} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_233968658274217/insights/post_impressions_paid/lifetime"},"emitted_at":1671053281927} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_233968658274217/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053281927} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_233968658274217/insights/post_impressions_fan/lifetime"},"emitted_at":1671053281927} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_233968658274217/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053281928} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_233968658274217/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053281928} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_233968658274217/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053281929} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_233968658274217/insights/post_impressions_organic/lifetime"},"emitted_at":1671053281929} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_233968658274217/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053281929} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_233968658274217/insights/post_impressions_viral/lifetime"},"emitted_at":1671053281930} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_233968658274217/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053281930} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_233968658274217/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053281930} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":19}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_233968658274217/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053281931} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_233968658274217/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053281931} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_233968658274217/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053281932} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_233968658274217/insights/post_engaged_users/lifetime"},"emitted_at":1671053281932} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_233968658274217/insights/post_negative_feedback/lifetime"},"emitted_at":1671053281932} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_233968658274217/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053281933} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_233968658274217/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053281933} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_233968658274217/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053281933} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":4}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_233968658274217/insights/post_engaged_fan/lifetime"},"emitted_at":1671053281934} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_233968658274217/insights/post_clicks/lifetime"},"emitted_at":1671053281934} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_233968658274217/insights/post_clicks_unique/lifetime"},"emitted_at":1671053281934} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":2,"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_233968658274217/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053281935} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":2,"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_233968658274217/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053281935} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_233968658274217/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053281936} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_233894124948337/insights/post_impressions/lifetime"},"emitted_at":1671053283340} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_233894124948337/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283341} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_233894124948337/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283342} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_233894124948337/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283342} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_233894124948337/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283343} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_233894124948337/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283343} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_233894124948337/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283344} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_233894124948337/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283345} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_233894124948337/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283345} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_233894124948337/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283346} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_233894124948337/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283347} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_233894124948337/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283347} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_233894124948337/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283348} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_233894124948337/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283349} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_233894124948337/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283349} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_233894124948337/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283350} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_233894124948337/insights/post_engaged_users/lifetime"},"emitted_at":1671053283350} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_233894124948337/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283351} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_233894124948337/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283352} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_233894124948337/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283352} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_233894124948337/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283353} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_233894124948337/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283354} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_233894124948337/insights/post_clicks/lifetime"},"emitted_at":1671053283355} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_233894124948337/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283356} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_233894124948337/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283356} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_233894124948337/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283357} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_233894124948337/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283358} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_233539814983768/insights/post_impressions/lifetime"},"emitted_at":1671053283358} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_233539814983768/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283359} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_233539814983768/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283359} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_233539814983768/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283360} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_233539814983768/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283360} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_233539814983768/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283360} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_233539814983768/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283361} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_233539814983768/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283362} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_233539814983768/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283363} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_233539814983768/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283363} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_233539814983768/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283364} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_233539814983768/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283365} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_233539814983768/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283366} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_233539814983768/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283366} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_233539814983768/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283367} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_233539814983768/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283367} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_233539814983768/insights/post_engaged_users/lifetime"},"emitted_at":1671053283368} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_233539814983768/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283369} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_233539814983768/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283369} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_233539814983768/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283370} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_233539814983768/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283370} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_233539814983768/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283371} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_233539814983768/insights/post_clicks/lifetime"},"emitted_at":1671053283371} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_233539814983768/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283372} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_233539814983768/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283372} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_233539814983768/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283373} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1,"wow":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_233539814983768/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283373} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_233506234987126/insights/post_impressions/lifetime"},"emitted_at":1671053283374} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_233506234987126/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283374} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_233506234987126/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283375} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_233506234987126/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283375} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_233506234987126/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283376} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_233506234987126/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283376} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_233506234987126/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283377} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_233506234987126/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283377} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_233506234987126/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283378} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_233506234987126/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283378} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_233506234987126/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283379} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_233506234987126/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283379} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_233506234987126/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283380} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_233506234987126/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283380} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_233506234987126/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283381} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_233506234987126/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283381} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_233506234987126/insights/post_engaged_users/lifetime"},"emitted_at":1671053283382} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_233506234987126/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283382} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_233506234987126/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283383} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_233506234987126/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283383} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_233506234987126/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283383} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_233506234987126/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283384} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_233506234987126/insights/post_clicks/lifetime"},"emitted_at":1671053283384} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_233506234987126/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283385} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_233506234987126/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283385} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_233506234987126/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283386} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_233506234987126/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283386} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_231542785183471/insights/post_impressions/lifetime"},"emitted_at":1671053283387} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_231542785183471/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283387} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_231542785183471/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283387} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_231542785183471/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283388} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_231542785183471/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283388} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_231542785183471/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283389} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_231542785183471/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283389} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_231542785183471/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283389} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_231542785183471/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283390} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_231542785183471/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283390} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_231542785183471/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283391} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_231542785183471/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283391} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_231542785183471/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283391} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_231542785183471/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283392} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_231542785183471/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283392} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_231542785183471/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283393} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_231542785183471/insights/post_engaged_users/lifetime"},"emitted_at":1671053283393} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_231542785183471/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283394} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_231542785183471/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283394} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_231542785183471/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283395} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_231542785183471/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283395} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_231542785183471/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283396} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_231542785183471/insights/post_clicks/lifetime"},"emitted_at":1671053283396} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_231542785183471/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283396} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_231542785183471/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283397} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_231542785183471/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283397} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_231542785183471/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283397} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_230350345302715/insights/post_impressions/lifetime"},"emitted_at":1671053283398} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_230350345302715/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283398} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_230350345302715/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283399} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_230350345302715/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283399} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_230350345302715/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283399} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_230350345302715/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283400} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_230350345302715/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283400} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_230350345302715/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283400} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_230350345302715/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283401} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_230350345302715/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283401} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_230350345302715/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283402} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_230350345302715/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283402} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_230350345302715/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283402} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_230350345302715/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283403} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_230350345302715/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283403} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_230350345302715/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283403} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_230350345302715/insights/post_engaged_users/lifetime"},"emitted_at":1671053283404} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_230350345302715/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283404} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_230350345302715/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283404} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_230350345302715/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283405} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_230350345302715/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283405} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_230350345302715/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283406} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_230350345302715/insights/post_clicks/lifetime"},"emitted_at":1671053283406} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_230350345302715/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283406} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_230350345302715/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283407} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_230350345302715/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283407} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_230350345302715/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283407} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_229804532023963/insights/post_impressions/lifetime"},"emitted_at":1671053283408} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_229804532023963/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283408} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_229804532023963/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283408} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_229804532023963/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283409} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_229804532023963/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283409} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_229804532023963/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283409} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_229804532023963/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283410} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_229804532023963/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283410} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_229804532023963/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283410} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_229804532023963/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283411} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_229804532023963/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283411} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_229804532023963/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283412} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_229804532023963/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283412} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":11}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_229804532023963/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283412} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_229804532023963/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283413} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_229804532023963/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283413} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_229804532023963/insights/post_engaged_users/lifetime"},"emitted_at":1671053283413} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_229804532023963/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283414} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_229804532023963/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283414} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_229804532023963/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283414} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_229804532023963/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283415} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_229804532023963/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283415} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_229804532023963/insights/post_clicks/lifetime"},"emitted_at":1671053283415} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_229804532023963/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283416} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_229804532023963/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283416} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_229804532023963/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283416} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_229804532023963/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283417} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_229429048728178/insights/post_impressions/lifetime"},"emitted_at":1671053283417} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_229429048728178/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283417} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_229429048728178/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283418} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_229429048728178/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283418} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_229429048728178/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283418} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_229429048728178/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283419} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_229429048728178/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283419} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_229429048728178/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283419} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_229429048728178/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283420} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_229429048728178/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283420} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_229429048728178/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283421} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_229429048728178/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283421} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_229429048728178/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283421} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_229429048728178/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283422} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_229429048728178/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283422} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_229429048728178/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283422} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_229429048728178/insights/post_engaged_users/lifetime"},"emitted_at":1671053283423} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_229429048728178/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283423} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_229429048728178/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283423} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_229429048728178/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283424} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_229429048728178/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283424} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_229429048728178/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283424} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_229429048728178/insights/post_clicks/lifetime"},"emitted_at":1671053283425} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_229429048728178/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283425} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_229429048728178/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283425} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_229429048728178/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283426} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_229429048728178/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283426} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_227447568926326/insights/post_impressions/lifetime"},"emitted_at":1671053283426} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_227447568926326/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283427} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_227447568926326/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283427} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_227447568926326/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283427} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_227447568926326/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283428} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_227447568926326/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283428} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_227447568926326/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283428} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_227447568926326/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283429} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_227447568926326/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283429} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_227447568926326/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283429} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_227447568926326/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283430} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_227447568926326/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283430} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_227447568926326/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283430} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":10}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_227447568926326/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283431} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_227447568926326/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283431} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_227447568926326/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283431} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_227447568926326/insights/post_engaged_users/lifetime"},"emitted_at":1671053283432} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_227447568926326/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283432} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_227447568926326/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283432} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_227447568926326/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283433} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_227447568926326/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283433} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":2}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_227447568926326/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283433} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_227447568926326/insights/post_clicks/lifetime"},"emitted_at":1671053283434} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_227447568926326/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283434} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_227447568926326/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283434} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_227447568926326/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283435} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_227447568926326/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283435} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_225726795765070/insights/post_impressions/lifetime"},"emitted_at":1671053283435} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_225726795765070/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283436} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_225726795765070/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283436} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_225726795765070/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283436} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":8}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_225726795765070/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283437} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":7}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_225726795765070/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283437} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_225726795765070/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283437} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_225726795765070/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283438} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_225726795765070/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283438} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_225726795765070/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283438} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_225726795765070/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283439} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_225726795765070/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283439} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":14}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_225726795765070/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283439} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_225726795765070/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283440} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_225726795765070/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283440} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_225726795765070/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283440} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_225726795765070/insights/post_engaged_users/lifetime"},"emitted_at":1671053283441} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_225726795765070/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283441} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_225726795765070/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283441} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_225726795765070/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283442} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_225726795765070/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283442} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_225726795765070/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283442} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_225726795765070/insights/post_clicks/lifetime"},"emitted_at":1671053283443} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_225726795765070/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283443} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_225726795765070/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283443} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_225726795765070/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283444} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_225726795765070/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283444} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_225326472471769/insights/post_impressions/lifetime"},"emitted_at":1671053283444} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_225326472471769/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283445} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_225326472471769/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283445} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_225326472471769/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283445} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_225326472471769/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283446} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_225326472471769/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283446} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_225326472471769/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283447} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_225326472471769/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283447} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_225326472471769/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283447} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_225326472471769/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283448} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_225326472471769/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283448} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_225326472471769/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283448} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_225326472471769/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283449} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":12}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_225326472471769/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283449} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_225326472471769/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283449} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_225326472471769/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283450} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":3}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_225326472471769/insights/post_engaged_users/lifetime"},"emitted_at":1671053283450} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_225326472471769/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283450} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_225326472471769/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283451} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_225326472471769/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283451} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_225326472471769/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283451} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_225326472471769/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283452} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_225326472471769/insights/post_clicks/lifetime"},"emitted_at":1671053283452} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_225326472471769/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283452} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_225326472471769/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283453} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_225326472471769/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283453} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1,"wow":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_225326472471769/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283454} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_223333136004436/insights/post_impressions/lifetime"},"emitted_at":1671053283454} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_223333136004436/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283454} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_223333136004436/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283455} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_223333136004436/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283455} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_223333136004436/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283455} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_223333136004436/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283456} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_223333136004436/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283456} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_223333136004436/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283456} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_223333136004436/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283457} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_223333136004436/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283457} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_223333136004436/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283458} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_223333136004436/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283458} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_223333136004436/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283458} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_223333136004436/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283459} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_223333136004436/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283459} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_223333136004436/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283459} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":4}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_223333136004436/insights/post_engaged_users/lifetime"},"emitted_at":1671053283460} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_223333136004436/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283460} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_223333136004436/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283460} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_223333136004436/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283461} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_223333136004436/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283461} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_223333136004436/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283462} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":4}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_223333136004436/insights/post_clicks/lifetime"},"emitted_at":1671053283462} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_223333136004436/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283462} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":4}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_223333136004436/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283463} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":4}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_223333136004436/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283463} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_223333136004436/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283463} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_222724582731958/insights/post_impressions/lifetime"},"emitted_at":1671053283464} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_222724582731958/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283464} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_222724582731958/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283465} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_222724582731958/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283465} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_222724582731958/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283466} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_222724582731958/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283466} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_222724582731958/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283466} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_222724582731958/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283467} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_222724582731958/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283467} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_222724582731958/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283468} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_222724582731958/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283468} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_222724582731958/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283468} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_222724582731958/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283469} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":13}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_222724582731958/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283469} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_222724582731958/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283469} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_222724582731958/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283470} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_222724582731958/insights/post_engaged_users/lifetime"},"emitted_at":1671053283470} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_222724582731958/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283470} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_222724582731958/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283471} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_222724582731958/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283471} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_222724582731958/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283471} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_222724582731958/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283472} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_222724582731958/insights/post_clicks/lifetime"},"emitted_at":1671053283472} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_222724582731958/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283472} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_222724582731958/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283473} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_222724582731958/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283473} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_222724582731958/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283474} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_217786419892441/insights/post_impressions/lifetime"},"emitted_at":1671053283474} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_217786419892441/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283475} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_217786419892441/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283475} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_217786419892441/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283476} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_217786419892441/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283476} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_217786419892441/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283476} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_217786419892441/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283477} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_217786419892441/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283477} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_217786419892441/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283477} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_217786419892441/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283478} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_217786419892441/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283478} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_217786419892441/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283479} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_217786419892441/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283479} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_217786419892441/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283479} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_217786419892441/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283480} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_217786419892441/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283480} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_217786419892441/insights/post_engaged_users/lifetime"},"emitted_at":1671053283480} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_217786419892441/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283481} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_217786419892441/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283481} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_217786419892441/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283481} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_217786419892441/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283482} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_217786419892441/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283482} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_217786419892441/insights/post_clicks/lifetime"},"emitted_at":1671053283483} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_217786419892441/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283483} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_217786419892441/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283483} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_217786419892441/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283484} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_217786419892441/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283484} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_217180893286327/insights/post_impressions/lifetime"},"emitted_at":1671053283484} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_217180893286327/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283485} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_217180893286327/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283485} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_217180893286327/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283485} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_217180893286327/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283486} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_217180893286327/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283486} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_217180893286327/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283486} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_217180893286327/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283487} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_217180893286327/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283487} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_217180893286327/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283488} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_217180893286327/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283488} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_217180893286327/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283488} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_217180893286327/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283489} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_217180893286327/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283489} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_217180893286327/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283489} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_217180893286327/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283490} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_217180893286327/insights/post_engaged_users/lifetime"},"emitted_at":1671053283490} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_217180893286327/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283490} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_217180893286327/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283491} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_217180893286327/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283491} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_217180893286327/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283492} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_217180893286327/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283492} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_217180893286327/insights/post_clicks/lifetime"},"emitted_at":1671053283492} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_217180893286327/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283493} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_217180893286327/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283493} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_217180893286327/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283495} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_217180893286327/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283496} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_216748669996216/insights/post_impressions/lifetime"},"emitted_at":1671053283496} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_216748669996216/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283497} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_216748669996216/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283497} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_216748669996216/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283497} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_216748669996216/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283498} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_216748669996216/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283498} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_216748669996216/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283499} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_216748669996216/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283499} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_216748669996216/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283499} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_216748669996216/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283500} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_216748669996216/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283500} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_216748669996216/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283500} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_216748669996216/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283501} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_216748669996216/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283501} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_216748669996216/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283501} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_216748669996216/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283502} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_216748669996216/insights/post_engaged_users/lifetime"},"emitted_at":1671053283502} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_216748669996216/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283502} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_216748669996216/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283503} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_216748669996216/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283503} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_216748669996216/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283503} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_216748669996216/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283504} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_216748669996216/insights/post_clicks/lifetime"},"emitted_at":1671053283504} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_216748669996216/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283505} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_216748669996216/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283505} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_216748669996216/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283505} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_216748669996216/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283506} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_213416820329401/insights/post_impressions/lifetime"},"emitted_at":1671053283506} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_213416820329401/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283506} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_213416820329401/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283507} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_213416820329401/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283507} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_213416820329401/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283508} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_213416820329401/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283508} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_213416820329401/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283508} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_213416820329401/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283509} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_213416820329401/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283509} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_213416820329401/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283509} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_213416820329401/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283510} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_213416820329401/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283510} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_213416820329401/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283510} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":5}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_213416820329401/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283511} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_213416820329401/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283511} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_213416820329401/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283511} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_213416820329401/insights/post_engaged_users/lifetime"},"emitted_at":1671053283512} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_213416820329401/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283512} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_213416820329401/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283512} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_213416820329401/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283513} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_213416820329401/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283513} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_213416820329401/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283513} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_213416820329401/insights/post_clicks/lifetime"},"emitted_at":1671053283514} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_213416820329401/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283514} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_213416820329401/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283515} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_213416820329401/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283516} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_213416820329401/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283516} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_212810407056709/insights/post_impressions/lifetime"},"emitted_at":1671053283516} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_212810407056709/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283517} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_212810407056709/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283517} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_212810407056709/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283518} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_212810407056709/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283518} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_212810407056709/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283519} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_212810407056709/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283519} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_212810407056709/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283519} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_212810407056709/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283520} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_212810407056709/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283520} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_212810407056709/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283520} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_212810407056709/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283521} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_212810407056709/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283521} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_212810407056709/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283521} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_212810407056709/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283522} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_212810407056709/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283522} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_212810407056709/insights/post_engaged_users/lifetime"},"emitted_at":1671053283522} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_212810407056709/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283523} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_212810407056709/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283523} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_212810407056709/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283523} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_212810407056709/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283524} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_212810407056709/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283524} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_212810407056709/insights/post_clicks/lifetime"},"emitted_at":1671053283525} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_212810407056709/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283525} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_212810407056709/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283526} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_212810407056709/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283526} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_212810407056709/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283527} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_212354150435668/insights/post_impressions/lifetime"},"emitted_at":1671053283527} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_212354150435668/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283527} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_212354150435668/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283528} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_212354150435668/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283528} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_212354150435668/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283528} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_212354150435668/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283529} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_212354150435668/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283529} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_212354150435668/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283529} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_212354150435668/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283530} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_212354150435668/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283530} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_212354150435668/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283530} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_212354150435668/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283531} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_212354150435668/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283531} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_212354150435668/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283531} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_212354150435668/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283532} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_212354150435668/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283532} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_212354150435668/insights/post_engaged_users/lifetime"},"emitted_at":1671053283532} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_212354150435668/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283533} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_212354150435668/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283533} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_212354150435668/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283533} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_212354150435668/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283534} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_212354150435668/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283534} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_212354150435668/insights/post_clicks/lifetime"},"emitted_at":1671053283535} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_212354150435668/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283535} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_212354150435668/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283536} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_212354150435668/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283536} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_212354150435668/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283536} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_210051090665974/insights/post_impressions/lifetime"},"emitted_at":1671053283537} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_210051090665974/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283537} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_210051090665974/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283537} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_210051090665974/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283538} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_210051090665974/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283538} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_210051090665974/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283538} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_210051090665974/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283539} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_210051090665974/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283539} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_210051090665974/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283539} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_210051090665974/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283540} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_210051090665974/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283540} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_210051090665974/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283540} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_210051090665974/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283541} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_210051090665974/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283541} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_210051090665974/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283541} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_210051090665974/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283542} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_210051090665974/insights/post_engaged_users/lifetime"},"emitted_at":1671053283542} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_210051090665974/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283542} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_210051090665974/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283543} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_210051090665974/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283543} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_210051090665974/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283543} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_210051090665974/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283544} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_210051090665974/insights/post_clicks/lifetime"},"emitted_at":1671053283544} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_210051090665974/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283545} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_210051090665974/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283545} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_210051090665974/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283546} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_210051090665974/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283546} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_209399390731144/insights/post_impressions/lifetime"},"emitted_at":1671053283547} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_209399390731144/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283547} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_209399390731144/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283547} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_209399390731144/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283548} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_209399390731144/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283548} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_209399390731144/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283549} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_209399390731144/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283549} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_209399390731144/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283550} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_209399390731144/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283550} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_209399390731144/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283550} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_209399390731144/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283551} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_209399390731144/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283551} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_209399390731144/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283551} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_209399390731144/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283552} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_209399390731144/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283552} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_209399390731144/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283552} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_209399390731144/insights/post_engaged_users/lifetime"},"emitted_at":1671053283553} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_209399390731144/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283553} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_209399390731144/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283553} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_209399390731144/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283554} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_209399390731144/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283554} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_209399390731144/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283554} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_209399390731144/insights/post_clicks/lifetime"},"emitted_at":1671053283555} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_209399390731144/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283556} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_209399390731144/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283556} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_209399390731144/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283556} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_209399390731144/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283557} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_208751330795950/insights/post_impressions/lifetime"},"emitted_at":1671053283557} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_208751330795950/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283557} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_208751330795950/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283558} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_208751330795950/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283558} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_208751330795950/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283558} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_208751330795950/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283559} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_208751330795950/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283559} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_208751330795950/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283559} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_208751330795950/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283560} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_208751330795950/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283560} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_208751330795950/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283560} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_208751330795950/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283561} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_208751330795950/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283561} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_208751330795950/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283561} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_208751330795950/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283562} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_208751330795950/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283562} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_208751330795950/insights/post_engaged_users/lifetime"},"emitted_at":1671053283563} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_208751330795950/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283563} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_208751330795950/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283563} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_208751330795950/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283564} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_208751330795950/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283564} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_208751330795950/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283564} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_208751330795950/insights/post_clicks/lifetime"},"emitted_at":1671053283565} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_208751330795950/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283565} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_208751330795950/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283565} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_208751330795950/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283566} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_208751330795950/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283566} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_208109124193504/insights/post_impressions/lifetime"},"emitted_at":1671053283566} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_208109124193504/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283567} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_208109124193504/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283567} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_208109124193504/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283567} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_208109124193504/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283568} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_208109124193504/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283568} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_208109124193504/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283568} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_208109124193504/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283569} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_208109124193504/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283569} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_208109124193504/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283569} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_208109124193504/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283570} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_208109124193504/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283570} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_208109124193504/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283570} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_208109124193504/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283571} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_208109124193504/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283571} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_208109124193504/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283571} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_208109124193504/insights/post_engaged_users/lifetime"},"emitted_at":1671053283572} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_208109124193504/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283572} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_208109124193504/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283572} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_208109124193504/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283573} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_208109124193504/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283573} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_208109124193504/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283573} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_208109124193504/insights/post_clicks/lifetime"},"emitted_at":1671053283574} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_208109124193504/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283574} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_208109124193504/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283575} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_208109124193504/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283575} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_208109124193504/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283576} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_207641224240294/insights/post_impressions/lifetime"},"emitted_at":1671053283576} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_207641224240294/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283576} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_207641224240294/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283577} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_207641224240294/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283577} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_207641224240294/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283578} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_207641224240294/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283578} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_207641224240294/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283578} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_207641224240294/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283579} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_207641224240294/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283579} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_207641224240294/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283579} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_207641224240294/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283580} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_207641224240294/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283580} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_207641224240294/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283580} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_207641224240294/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283581} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_207641224240294/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283581} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_207641224240294/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283582} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_207641224240294/insights/post_engaged_users/lifetime"},"emitted_at":1671053283582} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_207641224240294/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283582} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_207641224240294/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283583} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_207641224240294/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283583} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_207641224240294/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283583} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_207641224240294/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283584} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_207641224240294/insights/post_clicks/lifetime"},"emitted_at":1671053283584} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_207641224240294/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283584} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_207641224240294/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283585} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_207641224240294/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283585} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_207641224240294/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283585} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_205459011125182/insights/post_impressions/lifetime"},"emitted_at":1671053283586} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_205459011125182/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283586} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_205459011125182/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283586} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_205459011125182/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283587} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_205459011125182/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283587} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_205459011125182/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283587} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_205459011125182/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283588} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_205459011125182/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283588} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_205459011125182/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283588} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_205459011125182/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283589} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_205459011125182/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283589} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_205459011125182/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283589} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_205459011125182/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283590} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_205459011125182/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283590} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_205459011125182/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283590} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_205459011125182/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283591} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_205459011125182/insights/post_engaged_users/lifetime"},"emitted_at":1671053283591} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_205459011125182/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283591} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_205459011125182/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283592} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_205459011125182/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283592} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_205459011125182/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283592} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_205459011125182/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283593} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_205459011125182/insights/post_clicks/lifetime"},"emitted_at":1671053283593} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_205459011125182/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283593} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_205459011125182/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283594} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_205459011125182/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283594} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_205459011125182/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283594} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_204807987856951/insights/post_impressions/lifetime"},"emitted_at":1671053283595} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_204807987856951/insights/post_impressions_unique/lifetime"},"emitted_at":1671053283595} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_204807987856951/insights/post_impressions_paid/lifetime"},"emitted_at":1671053283595} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_204807987856951/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053283596} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_204807987856951/insights/post_impressions_fan/lifetime"},"emitted_at":1671053283596} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_204807987856951/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053283597} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_204807987856951/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053283597} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_204807987856951/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053283597} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_204807987856951/insights/post_impressions_organic/lifetime"},"emitted_at":1671053283598} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_204807987856951/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053283598} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_204807987856951/insights/post_impressions_viral/lifetime"},"emitted_at":1671053283598} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_204807987856951/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053283599} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_204807987856951/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053283599} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_204807987856951/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053283600} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_204807987856951/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053283600} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_204807987856951/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053283600} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_204807987856951/insights/post_engaged_users/lifetime"},"emitted_at":1671053283601} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_204807987856951/insights/post_negative_feedback/lifetime"},"emitted_at":1671053283601} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_204807987856951/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053283601} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_204807987856951/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053283602} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_204807987856951/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053283602} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_204807987856951/insights/post_engaged_fan/lifetime"},"emitted_at":1671053283603} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_204807987856951/insights/post_clicks/lifetime"},"emitted_at":1671053283603} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_204807987856951/insights/post_clicks_unique/lifetime"},"emitted_at":1671053283604} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_204807987856951/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053283604} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_204807987856951/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053283604} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_204807987856951/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053283605} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_204177834586633/insights/post_impressions/lifetime"},"emitted_at":1671053285260} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_204177834586633/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285260} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_204177834586633/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285261} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_204177834586633/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285261} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_204177834586633/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285262} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_204177834586633/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285262} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_204177834586633/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285263} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_204177834586633/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285264} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_204177834586633/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285264} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_204177834586633/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285265} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_204177834586633/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285266} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_204177834586633/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285266} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_204177834586633/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285267} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_204177834586633/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285268} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_204177834586633/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285268} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_204177834586633/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285269} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_204177834586633/insights/post_engaged_users/lifetime"},"emitted_at":1671053285269} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_204177834586633/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285270} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_204177834586633/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285270} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_204177834586633/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285271} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_204177834586633/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285271} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_204177834586633/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285272} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_204177834586633/insights/post_clicks/lifetime"},"emitted_at":1671053285272} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_204177834586633/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285273} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_204177834586633/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285273} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_204177834586633/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285274} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_204177834586633/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285274} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_203478404656576/insights/post_impressions/lifetime"},"emitted_at":1671053285275} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_203478404656576/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285275} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_203478404656576/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285276} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_203478404656576/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285277} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_203478404656576/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285277} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_203478404656576/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285277} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_203478404656576/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285278} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_203478404656576/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285278} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_203478404656576/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285279} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_203478404656576/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285279} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_203478404656576/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285280} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_203478404656576/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285280} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_203478404656576/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285281} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_203478404656576/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285282} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_203478404656576/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285282} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_203478404656576/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285283} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_203478404656576/insights/post_engaged_users/lifetime"},"emitted_at":1671053285283} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_203478404656576/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285284} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_203478404656576/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285284} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_203478404656576/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285285} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_203478404656576/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285285} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_203478404656576/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285286} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_203478404656576/insights/post_clicks/lifetime"},"emitted_at":1671053285286} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_203478404656576/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285287} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_203478404656576/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285287} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_203478404656576/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285288} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_203478404656576/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285288} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_203014108036339/insights/post_impressions/lifetime"},"emitted_at":1671053285289} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_203014108036339/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285289} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_203014108036339/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285289} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_203014108036339/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285290} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_203014108036339/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285290} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_203014108036339/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285291} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_203014108036339/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285292} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_203014108036339/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285292} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_203014108036339/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285292} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_203014108036339/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285293} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_203014108036339/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285293} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_203014108036339/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285294} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_203014108036339/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285294} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_203014108036339/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285295} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_203014108036339/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285295} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_203014108036339/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285296} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_203014108036339/insights/post_engaged_users/lifetime"},"emitted_at":1671053285296} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_203014108036339/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285296} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_203014108036339/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285297} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_203014108036339/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285297} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_203014108036339/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285297} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_203014108036339/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285298} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_203014108036339/insights/post_clicks/lifetime"},"emitted_at":1671053285298} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_203014108036339/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285299} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_203014108036339/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285299} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_203014108036339/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285299} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_203014108036339/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285300} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_200767631594320/insights/post_impressions/lifetime"},"emitted_at":1671053285300} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_200767631594320/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285301} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_200767631594320/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285301} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_200767631594320/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285301} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_200767631594320/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285302} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_200767631594320/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285302} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_200767631594320/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285303} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_200767631594320/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285303} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_200767631594320/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285303} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_200767631594320/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285304} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_200767631594320/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285304} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_200767631594320/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285305} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_200767631594320/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285305} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_200767631594320/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285305} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_200767631594320/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285306} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_200767631594320/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285306} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_200767631594320/insights/post_engaged_users/lifetime"},"emitted_at":1671053285307} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_200767631594320/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285307} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_200767631594320/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285307} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_200767631594320/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285308} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_200767631594320/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285308} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_200767631594320/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285308} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_200767631594320/insights/post_clicks/lifetime"},"emitted_at":1671053285309} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_200767631594320/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285309} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_200767631594320/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285309} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_200767631594320/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285310} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_200767631594320/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285310} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_200087328329017/insights/post_impressions/lifetime"},"emitted_at":1671053285310} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_200087328329017/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285311} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_200087328329017/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285311} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_200087328329017/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285312} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_200087328329017/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285312} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_200087328329017/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285312} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_200087328329017/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285313} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_200087328329017/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285313} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_200087328329017/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285314} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_200087328329017/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285314} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_200087328329017/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285314} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_200087328329017/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285315} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_200087328329017/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285315} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_200087328329017/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285315} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_200087328329017/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285316} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_200087328329017/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285316} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_200087328329017/insights/post_engaged_users/lifetime"},"emitted_at":1671053285317} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_200087328329017/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285317} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_200087328329017/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285317} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_200087328329017/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285318} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_200087328329017/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285318} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_200087328329017/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285318} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_200087328329017/insights/post_clicks/lifetime"},"emitted_at":1671053285319} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_200087328329017/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285319} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_200087328329017/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285319} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_200087328329017/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285320} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_200087328329017/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285320} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_199406145063802/insights/post_impressions/lifetime"},"emitted_at":1671053285321} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_199406145063802/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285321} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_199406145063802/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285321} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_199406145063802/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285322} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_199406145063802/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285322} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_199406145063802/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285322} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_199406145063802/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285323} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_199406145063802/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285323} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_199406145063802/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285323} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_199406145063802/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285324} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_199406145063802/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285324} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_199406145063802/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285325} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_199406145063802/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285325} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_199406145063802/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285325} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_199406145063802/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285326} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_199406145063802/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285326} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_199406145063802/insights/post_engaged_users/lifetime"},"emitted_at":1671053285326} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_199406145063802/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285327} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_199406145063802/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285327} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_199406145063802/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285327} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_199406145063802/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285328} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_199406145063802/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285328} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_199406145063802/insights/post_clicks/lifetime"},"emitted_at":1671053285328} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_199406145063802/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285329} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_199406145063802/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285329} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_199406145063802/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285329} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_199406145063802/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285330} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_198679605136456/insights/post_impressions/lifetime"},"emitted_at":1671053285330} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_198679605136456/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285330} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_198679605136456/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285331} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_198679605136456/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285331} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_198679605136456/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285331} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_198679605136456/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285332} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_198679605136456/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285332} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_198679605136456/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285332} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_198679605136456/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285333} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_198679605136456/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285333} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_198679605136456/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285333} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_198679605136456/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285334} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_198679605136456/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285334} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_198679605136456/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285334} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_198679605136456/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285335} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_198679605136456/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285335} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_198679605136456/insights/post_engaged_users/lifetime"},"emitted_at":1671053285335} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_198679605136456/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285336} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_198679605136456/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285336} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_198679605136456/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285336} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_198679605136456/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285337} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_198679605136456/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285337} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_198679605136456/insights/post_clicks/lifetime"},"emitted_at":1671053285337} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_198679605136456/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285338} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_198679605136456/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285338} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_198679605136456/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285339} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_198679605136456/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285339} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_198205995183817/insights/post_impressions/lifetime"},"emitted_at":1671053285339} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_198205995183817/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285340} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_198205995183817/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285340} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_198205995183817/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285340} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_198205995183817/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285341} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_198205995183817/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285341} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_198205995183817/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285341} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_198205995183817/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285342} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_198205995183817/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285342} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_198205995183817/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285342} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_198205995183817/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285343} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_198205995183817/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285343} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_198205995183817/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285343} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_198205995183817/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285344} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_198205995183817/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285344} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_198205995183817/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285344} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_198205995183817/insights/post_engaged_users/lifetime"},"emitted_at":1671053285345} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_198205995183817/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285345} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_198205995183817/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285345} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_198205995183817/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285346} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_198205995183817/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285346} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_198205995183817/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285346} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_198205995183817/insights/post_clicks/lifetime"},"emitted_at":1671053285347} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_198205995183817/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285347} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_198205995183817/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285347} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_198205995183817/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285348} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_198205995183817/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285348} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_193725658965184/insights/post_impressions/lifetime"},"emitted_at":1671053285349} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_193725658965184/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285349} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_193725658965184/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285349} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_193725658965184/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285350} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_193725658965184/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285350} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_193725658965184/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285350} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_193725658965184/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285351} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_193725658965184/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285351} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_193725658965184/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285351} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_193725658965184/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285352} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_193725658965184/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285352} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_193725658965184/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285352} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_193725658965184/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285353} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_193725658965184/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285353} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_193725658965184/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285353} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_193725658965184/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285354} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_193725658965184/insights/post_engaged_users/lifetime"},"emitted_at":1671053285354} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_193725658965184/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285354} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_193725658965184/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285355} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_193725658965184/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285355} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_193725658965184/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285355} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_193725658965184/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285356} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_193725658965184/insights/post_clicks/lifetime"},"emitted_at":1671053285356} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_193725658965184/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285357} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_193725658965184/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285357} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_193725658965184/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285357} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_193725658965184/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285358} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_193251569012593/insights/post_impressions/lifetime"},"emitted_at":1671053285358} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_193251569012593/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285359} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_193251569012593/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285359} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_193251569012593/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285359} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_193251569012593/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285360} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_193251569012593/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285360} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_193251569012593/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285361} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_193251569012593/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285361} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_193251569012593/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285361} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_193251569012593/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285362} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_193251569012593/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285362} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_193251569012593/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285362} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_193251569012593/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285363} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_193251569012593/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285363} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_193251569012593/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285364} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_193251569012593/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285364} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_193251569012593/insights/post_engaged_users/lifetime"},"emitted_at":1671053285364} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_193251569012593/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285365} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_193251569012593/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285365} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_193251569012593/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285366} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_193251569012593/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285366} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_193251569012593/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285366} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_193251569012593/insights/post_clicks/lifetime"},"emitted_at":1671053285367} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_193251569012593/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285367} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_193251569012593/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285367} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_193251569012593/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285368} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_193251569012593/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285368} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_190833302587753/insights/post_impressions/lifetime"},"emitted_at":1671053285369} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_190833302587753/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285369} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_190833302587753/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285369} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_190833302587753/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285370} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_190833302587753/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285370} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_190833302587753/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285370} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_190833302587753/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285371} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_190833302587753/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285371} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_190833302587753/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285371} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_190833302587753/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285372} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_190833302587753/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285372} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_190833302587753/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285372} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_190833302587753/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285373} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_190833302587753/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285373} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_190833302587753/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285373} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_190833302587753/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285374} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_190833302587753/insights/post_engaged_users/lifetime"},"emitted_at":1671053285374} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_190833302587753/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285374} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_190833302587753/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285375} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_190833302587753/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285375} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_190833302587753/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285375} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_190833302587753/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285376} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_190833302587753/insights/post_clicks/lifetime"},"emitted_at":1671053285376} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_190833302587753/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285376} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_190833302587753/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285377} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_190833302587753/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285377} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_190833302587753/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285377} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_190124622658621/insights/post_impressions/lifetime"},"emitted_at":1671053285378} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_190124622658621/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285378} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_190124622658621/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285378} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_190124622658621/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285379} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_190124622658621/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285379} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_190124622658621/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285379} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_190124622658621/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285380} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_190124622658621/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285380} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_190124622658621/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285380} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_190124622658621/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285381} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_190124622658621/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285381} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_190124622658621/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285381} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_190124622658621/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285382} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_190124622658621/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285382} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_190124622658621/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285382} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_190124622658621/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285383} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_190124622658621/insights/post_engaged_users/lifetime"},"emitted_at":1671053285383} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_190124622658621/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285384} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_190124622658621/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285384} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_190124622658621/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285384} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_190124622658621/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285385} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_190124622658621/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285385} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_190124622658621/insights/post_clicks/lifetime"},"emitted_at":1671053285385} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_190124622658621/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285386} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_190124622658621/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285386} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_190124622658621/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285386} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_190124622658621/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285387} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_189425416061875/insights/post_impressions/lifetime"},"emitted_at":1671053285387} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_189425416061875/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285387} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_189425416061875/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285388} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_189425416061875/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285388} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_189425416061875/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285388} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_189425416061875/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285389} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_189425416061875/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285389} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_189425416061875/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285389} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_189425416061875/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285390} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_189425416061875/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285390} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_189425416061875/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285390} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_189425416061875/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285391} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_189425416061875/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285391} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_189425416061875/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285391} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_189425416061875/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285392} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_189425416061875/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285392} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_189425416061875/insights/post_engaged_users/lifetime"},"emitted_at":1671053285392} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_189425416061875/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285393} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_189425416061875/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285393} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_189425416061875/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285393} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_189425416061875/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285394} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_189425416061875/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285394} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_189425416061875/insights/post_clicks/lifetime"},"emitted_at":1671053285394} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_189425416061875/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285395} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_189425416061875/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285395} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_189425416061875/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285395} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_189425416061875/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285396} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_188869986117418/insights/post_impressions/lifetime"},"emitted_at":1671053285396} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_188869986117418/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285396} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_188869986117418/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285397} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_188869986117418/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285397} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_188869986117418/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285397} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_188869986117418/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285398} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_188869986117418/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285398} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_188869986117418/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285398} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_188869986117418/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285399} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_188869986117418/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285399} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_188869986117418/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285399} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_188869986117418/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285400} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_188869986117418/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285400} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_188869986117418/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285400} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_188869986117418/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285401} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_188869986117418/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285401} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_188869986117418/insights/post_engaged_users/lifetime"},"emitted_at":1671053285401} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_188869986117418/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285402} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_188869986117418/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285402} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_188869986117418/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285402} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_188869986117418/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285403} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_188869986117418/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285403} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_188869986117418/insights/post_clicks/lifetime"},"emitted_at":1671053285403} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_188869986117418/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285404} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_188869986117418/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285404} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_188869986117418/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285404} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_188869986117418/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285405} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_188717119466038/insights/post_impressions/lifetime"},"emitted_at":1671053285405} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_188717119466038/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285405} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_188717119466038/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285406} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_188717119466038/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285406} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_188717119466038/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285406} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_188717119466038/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285407} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_188717119466038/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285407} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_188717119466038/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285407} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_188717119466038/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285408} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_188717119466038/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285408} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_188717119466038/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285408} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_188717119466038/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285409} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_188717119466038/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285409} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_188717119466038/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285409} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_188717119466038/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285410} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_188717119466038/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285410} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_188717119466038/insights/post_engaged_users/lifetime"},"emitted_at":1671053285410} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_188717119466038/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285411} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_188717119466038/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285411} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_188717119466038/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285411} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_188717119466038/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285412} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_188717119466038/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285412} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_188717119466038/insights/post_clicks/lifetime"},"emitted_at":1671053285412} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_188717119466038/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285413} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_188717119466038/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285413} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_188717119466038/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285413} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_188717119466038/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285414} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_187873099550440/insights/post_impressions/lifetime"},"emitted_at":1671053285414} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_187873099550440/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285414} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_187873099550440/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285415} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_187873099550440/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285415} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_187873099550440/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285415} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_187873099550440/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285416} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_187873099550440/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285416} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_187873099550440/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285416} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_187873099550440/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285417} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_187873099550440/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285417} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_187873099550440/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285417} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_187873099550440/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285418} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_187873099550440/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285418} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_187873099550440/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285418} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_187873099550440/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285419} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_187873099550440/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285419} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_187873099550440/insights/post_engaged_users/lifetime"},"emitted_at":1671053285419} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_187873099550440/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285420} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_187873099550440/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285420} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_187873099550440/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285420} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_187873099550440/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285421} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_187873099550440/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285421} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_187873099550440/insights/post_clicks/lifetime"},"emitted_at":1671053285421} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_187873099550440/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285422} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_187873099550440/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285422} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_187873099550440/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285422} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_187873099550440/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285423} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_187647659572984/insights/post_impressions/lifetime"},"emitted_at":1671053285423} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_187647659572984/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285424} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_187647659572984/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285424} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_187647659572984/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285424} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_187647659572984/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285425} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_187647659572984/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285425} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_187647659572984/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285425} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_187647659572984/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285426} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_187647659572984/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285426} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_187647659572984/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285427} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_187647659572984/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285427} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_187647659572984/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285427} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_187647659572984/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285428} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_187647659572984/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285428} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_187647659572984/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285428} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_187647659572984/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285429} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_187647659572984/insights/post_engaged_users/lifetime"},"emitted_at":1671053285429} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_187647659572984/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285429} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_187647659572984/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285430} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_187647659572984/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285430} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_187647659572984/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285430} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_187647659572984/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285431} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_187647659572984/insights/post_clicks/lifetime"},"emitted_at":1671053285431} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_187647659572984/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285431} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_187647659572984/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285432} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_187647659572984/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285432} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_187647659572984/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285432} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_187600149577735/insights/post_impressions/lifetime"},"emitted_at":1671053285433} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_187600149577735/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285433} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_187600149577735/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285433} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_187600149577735/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285434} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_187600149577735/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285434} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_187600149577735/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285435} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_187600149577735/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285435} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_187600149577735/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285436} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_187600149577735/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285436} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_187600149577735/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285437} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_187600149577735/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285437} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_187600149577735/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285437} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_187600149577735/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285438} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_187600149577735/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285438} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_187600149577735/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285439} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_187600149577735/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285439} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_187600149577735/insights/post_engaged_users/lifetime"},"emitted_at":1671053285439} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_187600149577735/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285440} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_187600149577735/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285440} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_187600149577735/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285441} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_187600149577735/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285441} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_187600149577735/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285442} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_187600149577735/insights/post_clicks/lifetime"},"emitted_at":1671053285442} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_187600149577735/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285442} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_187600149577735/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285443} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_187600149577735/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285443} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":3,"love":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_187600149577735/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285443} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_187320436272373/insights/post_impressions/lifetime"},"emitted_at":1671053285444} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_187320436272373/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285444} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_187320436272373/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285445} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_187320436272373/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285445} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_187320436272373/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285446} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_187320436272373/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285446} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_187320436272373/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285446} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_187320436272373/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285447} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_187320436272373/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285447} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_187320436272373/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285448} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_187320436272373/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285448} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_187320436272373/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285449} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_187320436272373/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285449} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":6}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_187320436272373/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285450} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_187320436272373/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285450} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_187320436272373/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285451} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_187320436272373/insights/post_engaged_users/lifetime"},"emitted_at":1671053285451} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_187320436272373/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285451} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_187320436272373/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285452} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_187320436272373/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285452} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_187320436272373/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285452} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_187320436272373/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285453} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_187320436272373/insights/post_clicks/lifetime"},"emitted_at":1671053285453} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_187320436272373/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285453} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_187320436272373/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285454} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_187320436272373/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285454} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_187320436272373/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285455} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_187051112965972/insights/post_impressions/lifetime"},"emitted_at":1671053285455} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_187051112965972/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285456} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_187051112965972/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285456} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_187051112965972/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285456} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_187051112965972/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285457} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_187051112965972/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285457} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_187051112965972/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285458} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_187051112965972/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285458} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_187051112965972/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285458} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_187051112965972/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285459} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_187051112965972/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285459} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_187051112965972/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285459} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_187051112965972/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285460} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_187051112965972/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285460} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_187051112965972/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285461} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_187051112965972/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285461} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_187051112965972/insights/post_engaged_users/lifetime"},"emitted_at":1671053285462} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_187051112965972/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285462} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_187051112965972/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285463} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_187051112965972/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285463} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_187051112965972/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285463} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_187051112965972/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285464} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_187051112965972/insights/post_clicks/lifetime"},"emitted_at":1671053285464} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_187051112965972/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285465} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_187051112965972/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285465} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_187051112965972/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285466} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_187051112965972/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285466} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_186888099648940/insights/post_impressions/lifetime"},"emitted_at":1671053285467} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_186888099648940/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285467} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_186888099648940/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285467} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_186888099648940/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285468} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_186888099648940/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285468} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_186888099648940/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285469} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_186888099648940/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285469} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_186888099648940/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285469} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_186888099648940/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285470} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_186888099648940/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285470} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_186888099648940/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285470} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_186888099648940/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285471} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_186888099648940/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285471} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_186888099648940/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285471} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_186888099648940/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285472} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_186888099648940/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285472} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_186888099648940/insights/post_engaged_users/lifetime"},"emitted_at":1671053285472} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_186888099648940/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285473} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_186888099648940/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285473} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_186888099648940/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285473} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_186888099648940/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285474} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_186888099648940/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285474} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_186888099648940/insights/post_clicks/lifetime"},"emitted_at":1671053285474} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_186888099648940/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285475} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_186888099648940/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285475} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_186888099648940/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285476} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_186888099648940/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285476} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_186060839731666/insights/post_impressions/lifetime"},"emitted_at":1671053285476} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_186060839731666/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285477} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_186060839731666/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285477} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_186060839731666/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285478} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_186060839731666/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285478} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_186060839731666/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285478} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_186060839731666/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285479} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_186060839731666/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285479} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_186060839731666/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285479} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_186060839731666/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285480} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_186060839731666/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285480} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_186060839731666/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285480} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_186060839731666/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285481} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_186060839731666/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285481} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_186060839731666/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285481} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_186060839731666/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285482} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_186060839731666/insights/post_engaged_users/lifetime"},"emitted_at":1671053285482} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_186060839731666/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285482} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_186060839731666/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285483} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_186060839731666/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285483} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_186060839731666/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285483} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_186060839731666/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285484} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_186060839731666/insights/post_clicks/lifetime"},"emitted_at":1671053285484} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_186060839731666/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285484} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_186060839731666/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285485} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_186060839731666/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285485} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_186060839731666/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285485} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_185858766418540/insights/post_impressions/lifetime"},"emitted_at":1671053285486} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_185858766418540/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285486} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_185858766418540/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285486} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_185858766418540/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285487} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_185858766418540/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285487} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_185858766418540/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285487} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_185858766418540/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285488} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_185858766418540/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285488} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_185858766418540/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285489} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_185858766418540/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285489} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_185858766418540/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285489} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_185858766418540/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285490} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_185858766418540/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285490} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":15}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_185858766418540/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285490} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_185858766418540/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285491} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_185858766418540/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285491} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":2}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_185858766418540/insights/post_engaged_users/lifetime"},"emitted_at":1671053285491} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_185858766418540/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285492} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_185858766418540/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285492} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_185858766418540/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285493} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_185858766418540/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285493} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_185858766418540/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285493} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_185858766418540/insights/post_clicks/lifetime"},"emitted_at":1671053285494} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_185858766418540/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285494} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":2}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_185858766418540/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285494} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":2}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_185858766418540/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285495} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_185858766418540/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285495} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_185790273092056/insights/post_impressions/lifetime"},"emitted_at":1671053285495} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_185790273092056/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285496} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_185790273092056/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285496} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_185790273092056/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285497} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_185790273092056/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285497} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_185790273092056/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285497} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_185790273092056/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285498} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_185790273092056/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285498} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_185790273092056/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285498} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_185790273092056/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285499} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_185790273092056/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285499} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_185790273092056/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285499} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_185790273092056/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285500} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_185790273092056/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285500} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_185790273092056/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285500} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_185790273092056/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285501} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_185790273092056/insights/post_engaged_users/lifetime"},"emitted_at":1671053285501} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_185790273092056/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285501} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_185790273092056/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285502} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_185790273092056/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285502} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_185790273092056/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285503} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_185790273092056/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285503} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_185790273092056/insights/post_clicks/lifetime"},"emitted_at":1671053285503} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_185790273092056/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285504} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_185790273092056/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285504} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_185790273092056/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285504} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":2}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_185790273092056/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285505} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_185580619779688/insights/post_impressions/lifetime"},"emitted_at":1671053285505} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_185580619779688/insights/post_impressions_unique/lifetime"},"emitted_at":1671053285505} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_185580619779688/insights/post_impressions_paid/lifetime"},"emitted_at":1671053285506} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_185580619779688/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053285506} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_185580619779688/insights/post_impressions_fan/lifetime"},"emitted_at":1671053285506} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_185580619779688/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053285507} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_185580619779688/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053285507} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_185580619779688/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053285507} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_185580619779688/insights/post_impressions_organic/lifetime"},"emitted_at":1671053285508} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_185580619779688/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053285508} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_185580619779688/insights/post_impressions_viral/lifetime"},"emitted_at":1671053285508} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_185580619779688/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053285509} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_185580619779688/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053285509} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_185580619779688/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053285509} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_185580619779688/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053285510} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_185580619779688/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053285510} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_185580619779688/insights/post_engaged_users/lifetime"},"emitted_at":1671053285510} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":1}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_185580619779688/insights/post_negative_feedback/lifetime"},"emitted_at":1671053285511} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_185580619779688/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053285511} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{"hide_all_clicks":1}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_185580619779688/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053285511} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{"hide_all_clicks":1}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_185580619779688/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053285512} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_185580619779688/insights/post_engaged_fan/lifetime"},"emitted_at":1671053285512} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_185580619779688/insights/post_clicks/lifetime"},"emitted_at":1671053285512} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_185580619779688/insights/post_clicks_unique/lifetime"},"emitted_at":1671053285513} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_185580619779688/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053285513} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_185580619779688/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053285513} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"love":3}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_185580619779688/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053285514} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_185538239783926/insights/post_impressions/lifetime"},"emitted_at":1671053288686} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_185538239783926/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288687} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_185538239783926/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288687} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_185538239783926/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288688} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_185538239783926/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288689} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_185538239783926/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288689} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_185538239783926/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288690} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_185538239783926/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288691} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_185538239783926/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288692} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_185538239783926/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288692} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_185538239783926/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288693} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_185538239783926/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288694} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_185538239783926/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288694} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_185538239783926/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288695} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_185538239783926/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288695} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_185538239783926/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288696} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_185538239783926/insights/post_engaged_users/lifetime"},"emitted_at":1671053288697} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_185538239783926/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288698} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_185538239783926/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288698} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_185538239783926/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288699} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_185538239783926/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288699} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_185538239783926/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288700} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_185538239783926/insights/post_clicks/lifetime"},"emitted_at":1671053288700} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_185538239783926/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288701} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_185538239783926/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288701} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_185538239783926/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288702} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_185538239783926/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288702} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_185314049806345/insights/post_impressions/lifetime"},"emitted_at":1671053288703} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_185314049806345/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288704} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_185314049806345/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288704} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_185314049806345/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288705} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_185314049806345/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288705} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_185314049806345/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288706} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_185314049806345/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288706} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_185314049806345/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288707} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_185314049806345/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288707} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_185314049806345/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288708} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_185314049806345/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288708} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_185314049806345/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288709} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_185314049806345/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288709} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_185314049806345/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288710} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_185314049806345/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288710} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_185314049806345/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288711} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_185314049806345/insights/post_engaged_users/lifetime"},"emitted_at":1671053288711} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_185314049806345/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288712} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_185314049806345/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288712} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_185314049806345/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288713} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_185314049806345/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288713} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_185314049806345/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288714} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_185314049806345/insights/post_clicks/lifetime"},"emitted_at":1671053288714} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_185314049806345/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288714} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_185314049806345/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288715} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_185314049806345/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288715} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_185314049806345/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288716} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_185149416489475/insights/post_impressions/lifetime"},"emitted_at":1671053288716} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_185149416489475/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288717} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_185149416489475/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288717} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_185149416489475/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288717} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_185149416489475/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288718} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_185149416489475/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288718} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_185149416489475/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288719} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_185149416489475/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288719} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_185149416489475/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288719} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_185149416489475/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288720} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_185149416489475/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288720} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_185149416489475/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288721} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_185149416489475/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288721} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_185149416489475/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288722} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_185149416489475/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288722} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_185149416489475/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288723} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_185149416489475/insights/post_engaged_users/lifetime"},"emitted_at":1671053288723} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_185149416489475/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288723} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_185149416489475/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288724} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_185149416489475/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288724} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_185149416489475/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288725} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_185149416489475/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288725} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_185149416489475/insights/post_clicks/lifetime"},"emitted_at":1671053288725} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_185149416489475/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288726} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_185149416489475/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288726} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_185149416489475/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288726} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_185149416489475/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288727} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_184017729935977/insights/post_impressions/lifetime"},"emitted_at":1671053288727} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_184017729935977/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288728} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_184017729935977/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288728} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_184017729935977/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288728} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_184017729935977/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288729} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_184017729935977/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288729} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_184017729935977/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288730} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_184017729935977/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288730} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_184017729935977/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288730} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_184017729935977/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288731} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_184017729935977/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288731} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_184017729935977/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288732} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_184017729935977/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288732} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_184017729935977/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288732} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_184017729935977/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288733} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_184017729935977/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288733} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_184017729935977/insights/post_engaged_users/lifetime"},"emitted_at":1671053288734} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_184017729935977/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288734} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_184017729935977/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288734} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_184017729935977/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288735} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_184017729935977/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288735} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_184017729935977/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288736} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_184017729935977/insights/post_clicks/lifetime"},"emitted_at":1671053288736} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_184017729935977/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288737} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_184017729935977/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288737} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_184017729935977/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288738} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_184017729935977/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288738} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_183788109958939/insights/post_impressions/lifetime"},"emitted_at":1671053288738} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_183788109958939/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288739} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_183788109958939/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288739} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_183788109958939/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288739} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_183788109958939/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288740} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_183788109958939/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288740} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_183788109958939/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288740} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_183788109958939/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288741} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_183788109958939/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288741} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_183788109958939/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288742} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_183788109958939/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288742} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_183788109958939/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288742} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_183788109958939/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288743} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_183788109958939/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288743} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_183788109958939/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288743} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_183788109958939/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288744} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_183788109958939/insights/post_engaged_users/lifetime"},"emitted_at":1671053288744} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_183788109958939/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288744} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_183788109958939/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288745} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_183788109958939/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288745} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_183788109958939/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288745} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_183788109958939/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288746} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_183788109958939/insights/post_clicks/lifetime"},"emitted_at":1671053288746} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_183788109958939/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288746} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_183788109958939/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288747} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_183788109958939/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288747} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_183788109958939/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288747} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_183559836648433/insights/post_impressions/lifetime"},"emitted_at":1671053288748} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_183559836648433/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288748} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_183559836648433/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288748} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_183559836648433/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288749} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_183559836648433/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288749} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_183559836648433/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288750} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_183559836648433/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288750} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_183559836648433/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288750} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_183559836648433/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288751} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_183559836648433/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288751} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_183559836648433/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288751} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_183559836648433/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288752} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_183559836648433/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288752} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_183559836648433/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288752} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_183559836648433/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288753} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_183559836648433/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288753} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_183559836648433/insights/post_engaged_users/lifetime"},"emitted_at":1671053288753} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_183559836648433/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288754} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_183559836648433/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288754} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_183559836648433/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288755} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_183559836648433/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288755} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_183559836648433/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288755} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_183559836648433/insights/post_clicks/lifetime"},"emitted_at":1671053288756} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_183559836648433/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288756} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_183559836648433/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288756} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_183559836648433/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288757} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_183559836648433/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288757} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_183400716664345/insights/post_impressions/lifetime"},"emitted_at":1671053288757} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_183400716664345/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288758} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_183400716664345/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288758} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_183400716664345/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288758} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_183400716664345/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288759} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_183400716664345/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288759} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_183400716664345/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288759} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_183400716664345/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288760} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_183400716664345/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288760} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_183400716664345/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288760} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_183400716664345/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288761} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_183400716664345/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288761} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_183400716664345/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288761} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_183400716664345/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288762} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_183400716664345/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288762} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_183400716664345/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288762} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_183400716664345/insights/post_engaged_users/lifetime"},"emitted_at":1671053288763} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_183400716664345/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288763} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_183400716664345/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288763} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_183400716664345/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288764} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_183400716664345/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288764} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_183400716664345/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288765} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_183400716664345/insights/post_clicks/lifetime"},"emitted_at":1671053288765} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_183400716664345/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288766} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_183400716664345/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288766} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_183400716664345/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288767} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_183400716664345/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288767} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_182541806750236/insights/post_impressions/lifetime"},"emitted_at":1671053288767} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_182541806750236/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288768} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_182541806750236/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288768} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_182541806750236/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288768} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_182541806750236/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288769} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_182541806750236/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288769} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_182541806750236/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288769} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_182541806750236/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288770} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_182541806750236/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288770} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_182541806750236/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288771} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_182541806750236/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288771} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_182541806750236/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288771} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_182541806750236/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288772} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_182541806750236/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288772} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_182541806750236/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288772} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_182541806750236/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288773} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_182541806750236/insights/post_engaged_users/lifetime"},"emitted_at":1671053288773} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_182541806750236/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288773} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_182541806750236/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288774} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_182541806750236/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288775} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_182541806750236/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288775} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_182541806750236/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288775} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_182541806750236/insights/post_clicks/lifetime"},"emitted_at":1671053288776} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_182541806750236/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288776} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_182541806750236/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288777} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_182541806750236/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288777} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_182541806750236/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288777} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_182287270109023/insights/post_impressions/lifetime"},"emitted_at":1671053288778} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_182287270109023/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288778} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_182287270109023/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288778} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_182287270109023/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288779} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_182287270109023/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288779} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_182287270109023/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288779} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_182287270109023/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288780} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_182287270109023/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288780} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_182287270109023/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288780} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_182287270109023/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288781} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_182287270109023/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288781} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_182287270109023/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288781} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_182287270109023/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288782} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_182287270109023/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288782} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_182287270109023/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288782} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_182287270109023/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288783} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_182287270109023/insights/post_engaged_users/lifetime"},"emitted_at":1671053288783} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_182287270109023/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288783} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_182287270109023/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288784} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_182287270109023/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288784} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_182287270109023/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288785} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_182287270109023/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288785} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_182287270109023/insights/post_clicks/lifetime"},"emitted_at":1671053288786} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_182287270109023/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288786} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_182287270109023/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288787} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_182287270109023/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288787} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_182287270109023/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288787} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_182039726800444/insights/post_impressions/lifetime"},"emitted_at":1671053288788} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_182039726800444/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288788} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_182039726800444/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288788} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_182039726800444/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288789} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_182039726800444/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288789} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_182039726800444/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288789} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_182039726800444/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288790} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_182039726800444/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288790} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_182039726800444/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288790} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_182039726800444/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288791} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_182039726800444/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288791} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_182039726800444/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288791} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_182039726800444/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288792} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_182039726800444/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288792} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_182039726800444/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288792} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_182039726800444/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288793} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_182039726800444/insights/post_engaged_users/lifetime"},"emitted_at":1671053288793} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_182039726800444/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288793} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_182039726800444/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288794} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_182039726800444/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288794} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_182039726800444/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288794} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_182039726800444/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288795} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_182039726800444/insights/post_clicks/lifetime"},"emitted_at":1671053288795} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_182039726800444/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288796} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_182039726800444/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288796} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_182039726800444/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288797} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_182039726800444/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288797} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_181809063490177/insights/post_impressions/lifetime"},"emitted_at":1671053288798} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_181809063490177/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288798} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_181809063490177/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288798} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_181809063490177/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288799} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_181809063490177/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288799} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_181809063490177/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288799} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_181809063490177/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288800} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_181809063490177/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288800} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_181809063490177/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288800} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_181809063490177/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288801} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_181809063490177/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288801} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_181809063490177/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288801} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_181809063490177/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288802} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_181809063490177/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288802} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_181809063490177/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288802} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_181809063490177/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288803} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_181809063490177/insights/post_engaged_users/lifetime"},"emitted_at":1671053288803} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_181809063490177/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288803} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_181809063490177/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288804} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_181809063490177/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288804} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_181809063490177/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288804} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_181809063490177/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288805} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_181809063490177/insights/post_clicks/lifetime"},"emitted_at":1671053288805} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_181809063490177/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288806} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_181809063490177/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288806} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_181809063490177/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288806} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_181809063490177/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288807} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_181644190173331/insights/post_impressions/lifetime"},"emitted_at":1671053288807} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_181644190173331/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288807} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_181644190173331/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288808} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_181644190173331/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288808} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_181644190173331/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288808} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_181644190173331/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288809} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_181644190173331/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288809} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_181644190173331/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288809} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_181644190173331/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288810} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_181644190173331/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288810} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_181644190173331/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288810} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_181644190173331/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288811} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_181644190173331/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288811} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_181644190173331/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288811} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_181644190173331/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288812} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_181644190173331/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288812} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_181644190173331/insights/post_engaged_users/lifetime"},"emitted_at":1671053288812} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_181644190173331/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288813} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_181644190173331/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288813} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_181644190173331/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288813} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_181644190173331/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288814} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_181644190173331/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288814} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_181644190173331/insights/post_clicks/lifetime"},"emitted_at":1671053288814} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_181644190173331/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288815} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_181644190173331/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288815} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_181644190173331/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288815} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_181644190173331/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288816} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_180826140255136/insights/post_impressions/lifetime"},"emitted_at":1671053288816} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_180826140255136/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288816} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_180826140255136/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288817} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_180826140255136/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288817} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_180826140255136/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288817} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_180826140255136/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288818} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_180826140255136/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288818} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_180826140255136/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288818} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_180826140255136/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288819} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_180826140255136/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288819} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_180826140255136/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288819} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_180826140255136/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288820} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_180826140255136/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288820} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_180826140255136/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288820} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_180826140255136/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288821} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_180826140255136/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288821} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_180826140255136/insights/post_engaged_users/lifetime"},"emitted_at":1671053288822} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_180826140255136/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288822} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_180826140255136/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288822} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_180826140255136/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288823} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_180826140255136/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288823} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_180826140255136/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288823} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_180826140255136/insights/post_clicks/lifetime"},"emitted_at":1671053288824} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_180826140255136/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288824} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_180826140255136/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288824} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"link clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_180826140255136/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288825} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_180826140255136/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288825} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_180586803612403/insights/post_impressions/lifetime"},"emitted_at":1671053288826} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_180586803612403/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288826} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_180586803612403/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288827} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_180586803612403/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288827} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_180586803612403/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288827} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_180586803612403/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288828} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_180586803612403/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288828} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_180586803612403/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288829} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_180586803612403/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288829} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_180586803612403/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288829} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_180586803612403/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288829} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_180586803612403/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288830} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_180586803612403/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288830} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_180586803612403/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288830} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_180586803612403/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288831} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_180586803612403/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288831} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_180586803612403/insights/post_engaged_users/lifetime"},"emitted_at":1671053288831} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_180586803612403/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288832} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_180586803612403/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288832} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_180586803612403/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288832} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_180586803612403/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288833} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_180586803612403/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288833} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_180586803612403/insights/post_clicks/lifetime"},"emitted_at":1671053288833} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_180586803612403/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288834} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_180586803612403/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288834} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_180586803612403/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288835} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_180586803612403/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288835} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_180361076968309/insights/post_impressions/lifetime"},"emitted_at":1671053288836} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_180361076968309/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288836} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_180361076968309/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288836} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_180361076968309/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288837} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_180361076968309/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288837} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_180361076968309/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288837} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_180361076968309/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288838} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_180361076968309/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288838} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_180361076968309/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288838} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_180361076968309/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288839} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_180361076968309/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288839} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_180361076968309/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288839} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_180361076968309/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288840} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_180361076968309/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288840} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_180361076968309/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288840} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_180361076968309/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288841} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_180361076968309/insights/post_engaged_users/lifetime"},"emitted_at":1671053288841} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_180361076968309/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288841} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_180361076968309/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288842} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_180361076968309/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288842} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_180361076968309/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288842} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_180361076968309/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288843} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_180361076968309/insights/post_clicks/lifetime"},"emitted_at":1671053288843} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_180361076968309/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288843} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_180361076968309/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288844} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_180361076968309/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288844} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_180361076968309/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288845} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_180133126991104/insights/post_impressions/lifetime"},"emitted_at":1671053288845} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_180133126991104/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288845} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_180133126991104/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288846} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_180133126991104/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288846} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_180133126991104/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288847} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_180133126991104/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288847} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_180133126991104/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288847} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_180133126991104/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288848} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_180133126991104/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288848} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_180133126991104/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288849} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_180133126991104/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288849} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_180133126991104/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288849} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_180133126991104/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288850} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_180133126991104/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288850} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_180133126991104/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288850} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_180133126991104/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288851} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_180133126991104/insights/post_engaged_users/lifetime"},"emitted_at":1671053288851} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_180133126991104/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288851} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_180133126991104/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288852} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_180133126991104/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288852} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_180133126991104/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288852} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_180133126991104/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288853} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_180133126991104/insights/post_clicks/lifetime"},"emitted_at":1671053288853} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_180133126991104/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288853} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_180133126991104/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288854} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_180133126991104/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288854} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_180133126991104/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288854} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_179979213673162/insights/post_impressions/lifetime"},"emitted_at":1671053288855} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_179979213673162/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288855} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_179979213673162/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288856} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_179979213673162/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288856} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_179979213673162/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288856} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_179979213673162/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288857} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_179979213673162/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288857} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_179979213673162/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288857} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_179979213673162/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288858} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_179979213673162/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288858} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_179979213673162/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288858} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_179979213673162/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288859} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_179979213673162/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288860} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_179979213673162/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288860} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_179979213673162/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288860} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_179979213673162/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288861} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_179979213673162/insights/post_engaged_users/lifetime"},"emitted_at":1671053288861} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_179979213673162/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288862} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_179979213673162/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288862} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_179979213673162/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288862} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_179979213673162/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288863} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_179979213673162/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288863} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_179979213673162/insights/post_clicks/lifetime"},"emitted_at":1671053288863} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_179979213673162/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288864} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_179979213673162/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288864} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_179979213673162/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288864} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_179979213673162/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288865} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_179128037091613/insights/post_impressions/lifetime"},"emitted_at":1671053288865} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_179128037091613/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288865} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_179128037091613/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288866} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_179128037091613/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288866} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_179128037091613/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288866} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_179128037091613/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288867} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_179128037091613/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288867} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_179128037091613/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288867} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_179128037091613/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288868} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_179128037091613/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288868} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_179128037091613/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288869} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_179128037091613/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288869} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_179128037091613/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288870} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_179128037091613/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288870} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_179128037091613/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288871} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_179128037091613/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288871} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_179128037091613/insights/post_engaged_users/lifetime"},"emitted_at":1671053288871} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_179128037091613/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288872} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_179128037091613/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288872} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_179128037091613/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288872} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_179128037091613/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288873} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_179128037091613/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288873} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_179128037091613/insights/post_clicks/lifetime"},"emitted_at":1671053288873} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_179128037091613/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288874} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_179128037091613/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288874} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_179128037091613/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288874} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_179128037091613/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288875} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_178883910449359/insights/post_impressions/lifetime"},"emitted_at":1671053288875} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_178883910449359/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288875} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_178883910449359/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288876} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_178883910449359/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288876} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_178883910449359/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288876} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_178883910449359/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288877} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_178883910449359/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288877} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_178883910449359/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288877} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_178883910449359/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288878} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_178883910449359/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288878} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_178883910449359/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288878} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_178883910449359/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288879} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_178883910449359/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288879} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_178883910449359/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288880} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_178883910449359/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288880} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_178883910449359/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288880} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":1}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_178883910449359/insights/post_engaged_users/lifetime"},"emitted_at":1671053288881} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_178883910449359/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288881} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_178883910449359/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288881} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_178883910449359/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288882} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_178883910449359/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288882} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_178883910449359/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288883} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_178883910449359/insights/post_clicks/lifetime"},"emitted_at":1671053288883} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_178883910449359/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288883} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_178883910449359/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288884} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{"other clicks":1}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_178883910449359/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288884} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_178883910449359/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288884} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_178643747140042/insights/post_impressions/lifetime"},"emitted_at":1671053288885} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_178643747140042/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288885} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_178643747140042/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288885} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_178643747140042/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288886} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_178643747140042/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288886} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_178643747140042/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288886} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_178643747140042/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288887} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_178643747140042/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288887} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_178643747140042/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288887} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_178643747140042/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288888} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_178643747140042/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288888} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_178643747140042/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288888} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_178643747140042/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288889} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":2}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_178643747140042/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288889} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_178643747140042/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288889} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_178643747140042/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288890} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_178643747140042/insights/post_engaged_users/lifetime"},"emitted_at":1671053288890} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_178643747140042/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288890} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_178643747140042/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288891} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_178643747140042/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288891} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_178643747140042/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288891} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_178643747140042/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288892} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_178643747140042/insights/post_clicks/lifetime"},"emitted_at":1671053288892} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_178643747140042/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288893} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_178643747140042/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288893} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_178643747140042/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288893} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{"like":1}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_178643747140042/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288894} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_178393147165102/insights/post_impressions/lifetime"},"emitted_at":1671053288894} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_178393147165102/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288894} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_178393147165102/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288895} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_178393147165102/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288895} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_178393147165102/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288895} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_178393147165102/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288896} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_178393147165102/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288896} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_178393147165102/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288896} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_178393147165102/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288897} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_178393147165102/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288897} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_178393147165102/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288897} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_178393147165102/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288898} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_178393147165102/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288898} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_178393147165102/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288898} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_178393147165102/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288899} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_178393147165102/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288899} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_178393147165102/insights/post_engaged_users/lifetime"},"emitted_at":1671053288899} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_178393147165102/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288900} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_178393147165102/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288900} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_178393147165102/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288900} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_178393147165102/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288901} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_178393147165102/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288901} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_178393147165102/insights/post_clicks/lifetime"},"emitted_at":1671053288902} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_178393147165102/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288902} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_178393147165102/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288902} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_178393147165102/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288903} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_178393147165102/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288903} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_178230817181335/insights/post_impressions/lifetime"},"emitted_at":1671053288904} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_178230817181335/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288904} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_178230817181335/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288904} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_178230817181335/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288905} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_178230817181335/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288905} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_178230817181335/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288905} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_178230817181335/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288906} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_178230817181335/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288906} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_178230817181335/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288907} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_178230817181335/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288907} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_178230817181335/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288907} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_178230817181335/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288908} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_178230817181335/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288908} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_178230817181335/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288908} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_178230817181335/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288909} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_178230817181335/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288909} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_178230817181335/insights/post_engaged_users/lifetime"},"emitted_at":1671053288909} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_178230817181335/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288910} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_178230817181335/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288910} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_178230817181335/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288910} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_178230817181335/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288911} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_178230817181335/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288911} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_178230817181335/insights/post_clicks/lifetime"},"emitted_at":1671053288912} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_178230817181335/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288912} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_178230817181335/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288912} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_178230817181335/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288913} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_178230817181335/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288913} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_177356400602110/insights/post_impressions/lifetime"},"emitted_at":1671053288913} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_177356400602110/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288914} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_177356400602110/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288914} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_177356400602110/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288914} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_177356400602110/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288915} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_177356400602110/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288915} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_177356400602110/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288915} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_177356400602110/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288916} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_177356400602110/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288916} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_177356400602110/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288917} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_177356400602110/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288917} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_177356400602110/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288917} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_177356400602110/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288918} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":3}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_177356400602110/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288918} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_177356400602110/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288918} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_177356400602110/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288919} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_177356400602110/insights/post_engaged_users/lifetime"},"emitted_at":1671053288919} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_177356400602110/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288919} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_177356400602110/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288920} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_177356400602110/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288920} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_177356400602110/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288920} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_177356400602110/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288921} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_177356400602110/insights/post_clicks/lifetime"},"emitted_at":1671053288921} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_177356400602110/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288921} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_177356400602110/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288922} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_177356400602110/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288922} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_177356400602110/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288922} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_177101790627571/insights/post_impressions/lifetime"},"emitted_at":1671053288923} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_177101790627571/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288923} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_177101790627571/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288923} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_177101790627571/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288924} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_177101790627571/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288924} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_177101790627571/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288924} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_177101790627571/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288925} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_177101790627571/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288925} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_177101790627571/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288925} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_177101790627571/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288926} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_177101790627571/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288926} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_177101790627571/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288926} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_177101790627571/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288927} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_177101790627571/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288927} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_177101790627571/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288927} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_177101790627571/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288928} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_177101790627571/insights/post_engaged_users/lifetime"},"emitted_at":1671053288928} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_177101790627571/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288928} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_177101790627571/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288929} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_177101790627571/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288929} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_177101790627571/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288929} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_177101790627571/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288930} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_177101790627571/insights/post_clicks/lifetime"},"emitted_at":1671053288930} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_177101790627571/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288930} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_177101790627571/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288931} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_177101790627571/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288931} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_177101790627571/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288931} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_176838600653890/insights/post_impressions/lifetime"},"emitted_at":1671053288932} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_176838600653890/insights/post_impressions_unique/lifetime"},"emitted_at":1671053288932} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_176838600653890/insights/post_impressions_paid/lifetime"},"emitted_at":1671053288932} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_176838600653890/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053288933} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_176838600653890/insights/post_impressions_fan/lifetime"},"emitted_at":1671053288933} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_176838600653890/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053288933} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_176838600653890/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053288934} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_176838600653890/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053288934} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_176838600653890/insights/post_impressions_organic/lifetime"},"emitted_at":1671053288934} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_176838600653890/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053288935} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_176838600653890/insights/post_impressions_viral/lifetime"},"emitted_at":1671053288935} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_176838600653890/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053288935} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_176838600653890/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053288936} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_176838600653890/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053288936} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_176838600653890/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053288937} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_176838600653890/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053288937} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_176838600653890/insights/post_engaged_users/lifetime"},"emitted_at":1671053288937} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_176838600653890/insights/post_negative_feedback/lifetime"},"emitted_at":1671053288938} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_176838600653890/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053288938} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_176838600653890/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053288938} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_176838600653890/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053288939} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_176838600653890/insights/post_engaged_fan/lifetime"},"emitted_at":1671053288939} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_176838600653890/insights/post_clicks/lifetime"},"emitted_at":1671053288939} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_176838600653890/insights/post_clicks_unique/lifetime"},"emitted_at":1671053288940} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_176838600653890/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053288940} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_176838600653890/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053288940} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_176838600653890/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053288941} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_176593134011770/insights/post_impressions/lifetime"},"emitted_at":1671053290081} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_176593134011770/insights/post_impressions_unique/lifetime"},"emitted_at":1671053290082} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_176593134011770/insights/post_impressions_paid/lifetime"},"emitted_at":1671053290082} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_176593134011770/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053290083} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_176593134011770/insights/post_impressions_fan/lifetime"},"emitted_at":1671053290084} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_176593134011770/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053290085} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_176593134011770/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053290085} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_176593134011770/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053290086} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_176593134011770/insights/post_impressions_organic/lifetime"},"emitted_at":1671053290087} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_176593134011770/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053290088} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_176593134011770/insights/post_impressions_viral/lifetime"},"emitted_at":1671053290088} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_176593134011770/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053290089} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_176593134011770/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053290090} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_176593134011770/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053290091} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_176593134011770/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053290092} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_176593134011770/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053290092} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_176593134011770/insights/post_engaged_users/lifetime"},"emitted_at":1671053290093} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_176593134011770/insights/post_negative_feedback/lifetime"},"emitted_at":1671053290094} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_176593134011770/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053290095} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_176593134011770/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053290096} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_176593134011770/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053290096} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_176593134011770/insights/post_engaged_fan/lifetime"},"emitted_at":1671053290097} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_176593134011770/insights/post_clicks/lifetime"},"emitted_at":1671053290097} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_176593134011770/insights/post_clicks_unique/lifetime"},"emitted_at":1671053290098} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_176593134011770/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053290098} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_176593134011770/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053290099} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_176593134011770/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053290099} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_176428777361539/insights/post_impressions/lifetime"},"emitted_at":1671053290100} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_176428777361539/insights/post_impressions_unique/lifetime"},"emitted_at":1671053290100} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_176428777361539/insights/post_impressions_paid/lifetime"},"emitted_at":1671053290101} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_176428777361539/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053290101} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_176428777361539/insights/post_impressions_fan/lifetime"},"emitted_at":1671053290101} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_176428777361539/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053290102} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_176428777361539/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053290102} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_176428777361539/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053290103} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_176428777361539/insights/post_impressions_organic/lifetime"},"emitted_at":1671053290103} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_176428777361539/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053290104} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_176428777361539/insights/post_impressions_viral/lifetime"},"emitted_at":1671053290104} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_176428777361539/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053290105} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_176428777361539/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053290106} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_176428777361539/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053290106} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_176428777361539/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053290107} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_176428777361539/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053290107} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_176428777361539/insights/post_engaged_users/lifetime"},"emitted_at":1671053290108} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_176428777361539/insights/post_negative_feedback/lifetime"},"emitted_at":1671053290109} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_176428777361539/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053290109} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_176428777361539/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053290110} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_176428777361539/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053290110} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_176428777361539/insights/post_engaged_fan/lifetime"},"emitted_at":1671053290111} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_176428777361539/insights/post_clicks/lifetime"},"emitted_at":1671053290111} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_176428777361539/insights/post_clicks_unique/lifetime"},"emitted_at":1671053290112} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_176428777361539/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053290112} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_176428777361539/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053290113} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_176428777361539/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053290113} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_175540794117004/insights/post_impressions/lifetime"},"emitted_at":1671053290114} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_175540794117004/insights/post_impressions_unique/lifetime"},"emitted_at":1671053290114} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_175540794117004/insights/post_impressions_paid/lifetime"},"emitted_at":1671053290115} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_175540794117004/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053290116} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_175540794117004/insights/post_impressions_fan/lifetime"},"emitted_at":1671053290116} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_175540794117004/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053290117} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_175540794117004/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053290117} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_175540794117004/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053290118} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_175540794117004/insights/post_impressions_organic/lifetime"},"emitted_at":1671053290118} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_175540794117004/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053290119} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_175540794117004/insights/post_impressions_viral/lifetime"},"emitted_at":1671053290119} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_175540794117004/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053290120} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_175540794117004/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053290121} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_175540794117004/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053290121} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_175540794117004/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053290122} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_175540794117004/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053290122} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_175540794117004/insights/post_engaged_users/lifetime"},"emitted_at":1671053290123} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_175540794117004/insights/post_negative_feedback/lifetime"},"emitted_at":1671053290123} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_175540794117004/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053290124} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_175540794117004/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053290124} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_175540794117004/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053290125} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_175540794117004/insights/post_engaged_fan/lifetime"},"emitted_at":1671053290125} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_175540794117004/insights/post_clicks/lifetime"},"emitted_at":1671053290126} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_175540794117004/insights/post_clicks_unique/lifetime"},"emitted_at":1671053290127} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_175540794117004/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053290127} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_175540794117004/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053290128} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_175540794117004/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053290128} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_175354120802338/insights/post_impressions/lifetime"},"emitted_at":1671053290129} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_175354120802338/insights/post_impressions_unique/lifetime"},"emitted_at":1671053290129} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_175354120802338/insights/post_impressions_paid/lifetime"},"emitted_at":1671053290130} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_175354120802338/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053290130} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_175354120802338/insights/post_impressions_fan/lifetime"},"emitted_at":1671053290130} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_175354120802338/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053290131} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_175354120802338/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053290131} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_175354120802338/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053290132} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_175354120802338/insights/post_impressions_organic/lifetime"},"emitted_at":1671053290132} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_175354120802338/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053290132} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_175354120802338/insights/post_impressions_viral/lifetime"},"emitted_at":1671053290133} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_175354120802338/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053290133} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_175354120802338/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053290134} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_175354120802338/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053290134} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_175354120802338/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053290134} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_175354120802338/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053290135} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_175354120802338/insights/post_engaged_users/lifetime"},"emitted_at":1671053290136} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_175354120802338/insights/post_negative_feedback/lifetime"},"emitted_at":1671053290136} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_175354120802338/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053290137} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_175354120802338/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053290137} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_175354120802338/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053290138} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_175354120802338/insights/post_engaged_fan/lifetime"},"emitted_at":1671053290138} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_175354120802338/insights/post_clicks/lifetime"},"emitted_at":1671053290138} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_175354120802338/insights/post_clicks_unique/lifetime"},"emitted_at":1671053290139} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_175354120802338/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053290139} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_175354120802338/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053290140} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_175354120802338/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053290140} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_175294147475002/insights/post_impressions/lifetime"},"emitted_at":1671053290140} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_175294147475002/insights/post_impressions_unique/lifetime"},"emitted_at":1671053290141} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_175294147475002/insights/post_impressions_paid/lifetime"},"emitted_at":1671053290141} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_175294147475002/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053290142} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_175294147475002/insights/post_impressions_fan/lifetime"},"emitted_at":1671053290142} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_175294147475002/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053290142} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_175294147475002/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053290143} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_175294147475002/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053290143} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_175294147475002/insights/post_impressions_organic/lifetime"},"emitted_at":1671053290143} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_175294147475002/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053290144} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_175294147475002/insights/post_impressions_viral/lifetime"},"emitted_at":1671053290144} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_175294147475002/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053290145} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_175294147475002/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053290145} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_175294147475002/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053290146} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_175294147475002/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053290146} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_175294147475002/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053290146} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_175294147475002/insights/post_engaged_users/lifetime"},"emitted_at":1671053290147} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_175294147475002/insights/post_negative_feedback/lifetime"},"emitted_at":1671053290147} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_175294147475002/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053290148} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_175294147475002/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053290148} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_175294147475002/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053290148} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_175294147475002/insights/post_engaged_fan/lifetime"},"emitted_at":1671053290149} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_175294147475002/insights/post_clicks/lifetime"},"emitted_at":1671053290149} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_175294147475002/insights/post_clicks_unique/lifetime"},"emitted_at":1671053290150} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_175294147475002/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053290150} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_175294147475002/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053290150} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_175294147475002/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053290151} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_174917520845998/insights/post_impressions/lifetime"},"emitted_at":1671053290151} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_174917520845998/insights/post_impressions_unique/lifetime"},"emitted_at":1671053290152} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_174917520845998/insights/post_impressions_paid/lifetime"},"emitted_at":1671053290152} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_174917520845998/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053290153} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_174917520845998/insights/post_impressions_fan/lifetime"},"emitted_at":1671053290153} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_174917520845998/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053290154} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_174917520845998/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053290154} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_174917520845998/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053290154} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_174917520845998/insights/post_impressions_organic/lifetime"},"emitted_at":1671053290155} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_174917520845998/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053290155} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_174917520845998/insights/post_impressions_viral/lifetime"},"emitted_at":1671053290156} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_174917520845998/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053290156} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_174917520845998/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053290156} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_174917520845998/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053290157} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_174917520845998/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053290157} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_174917520845998/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053290157} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_174917520845998/insights/post_engaged_users/lifetime"},"emitted_at":1671053290158} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_174917520845998/insights/post_negative_feedback/lifetime"},"emitted_at":1671053290158} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_174917520845998/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053290158} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_174917520845998/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053290159} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_174917520845998/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053290159} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_174917520845998/insights/post_engaged_fan/lifetime"},"emitted_at":1671053290159} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_174917520845998/insights/post_clicks/lifetime"},"emitted_at":1671053290160} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_174917520845998/insights/post_clicks_unique/lifetime"},"emitted_at":1671053290160} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_174917520845998/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053290160} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_174917520845998/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053290161} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_174917520845998/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053290161} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_174888250848925/insights/post_impressions/lifetime"},"emitted_at":1671053290161} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_174888250848925/insights/post_impressions_unique/lifetime"},"emitted_at":1671053290162} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_174888250848925/insights/post_impressions_paid/lifetime"},"emitted_at":1671053290162} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_174888250848925/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053290162} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_174888250848925/insights/post_impressions_fan/lifetime"},"emitted_at":1671053290163} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_174888250848925/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053290163} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_174888250848925/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053290163} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_174888250848925/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053290164} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_174888250848925/insights/post_impressions_organic/lifetime"},"emitted_at":1671053290164} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_174888250848925/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053290164} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_174888250848925/insights/post_impressions_viral/lifetime"},"emitted_at":1671053290165} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_174888250848925/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053290165} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":4}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_174888250848925/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053290165} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":1}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_174888250848925/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053290166} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_174888250848925/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053290166} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_174888250848925/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053290167} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_174888250848925/insights/post_engaged_users/lifetime"},"emitted_at":1671053290167} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_174888250848925/insights/post_negative_feedback/lifetime"},"emitted_at":1671053290167} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_174888250848925/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053290168} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_174888250848925/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053290168} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_174888250848925/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053290169} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_174888250848925/insights/post_engaged_fan/lifetime"},"emitted_at":1671053290169} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_174888250848925/insights/post_clicks/lifetime"},"emitted_at":1671053290170} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_174888250848925/insights/post_clicks_unique/lifetime"},"emitted_at":1671053290170} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_174888250848925/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053290170} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_174888250848925/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053290171} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_174888250848925/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053290171} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_173948997609517/insights/post_impressions/lifetime"},"emitted_at":1671053290172} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_173948997609517/insights/post_impressions_unique/lifetime"},"emitted_at":1671053290172} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_173948997609517/insights/post_impressions_paid/lifetime"},"emitted_at":1671053290172} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_173948997609517/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053290173} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_173948997609517/insights/post_impressions_fan/lifetime"},"emitted_at":1671053290173} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_173948997609517/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053290173} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_173948997609517/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053290174} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_173948997609517/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053290174} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_173948997609517/insights/post_impressions_organic/lifetime"},"emitted_at":1671053290175} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_173948997609517/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053290175} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_173948997609517/insights/post_impressions_viral/lifetime"},"emitted_at":1671053290175} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_173948997609517/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053290176} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_173948997609517/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053290176} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_173948997609517/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053290176} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_173948997609517/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053290177} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_173948997609517/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053290177} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_173948997609517/insights/post_engaged_users/lifetime"},"emitted_at":1671053290177} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_173948997609517/insights/post_negative_feedback/lifetime"},"emitted_at":1671053290178} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_173948997609517/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053290178} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_173948997609517/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053290179} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_173948997609517/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053290179} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_173948997609517/insights/post_engaged_fan/lifetime"},"emitted_at":1671053290180} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_173948997609517/insights/post_clicks/lifetime"},"emitted_at":1671053290180} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_173948997609517/insights/post_clicks_unique/lifetime"},"emitted_at":1671053290180} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_173948997609517/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053290181} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_173948997609517/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053290181} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_173948997609517/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053290181} +{"stream":"post_insights","data":{"name":"post_impressions","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","id":"112704783733939_113682243636193/insights/post_impressions/lifetime"},"emitted_at":1671053290182} +{"stream":"post_insights","data":{"name":"post_impressions_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Total Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","id":"112704783733939_113682243636193/insights/post_impressions_unique/lifetime"},"emitted_at":1671053290182} +{"stream":"post_insights","data":{"name":"post_impressions_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","id":"112704783733939_113682243636193/insights/post_impressions_paid/lifetime"},"emitted_at":1671053290182} +{"stream":"post_insights","data":{"name":"post_impressions_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Reach","description":"Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","id":"112704783733939_113682243636193/insights/post_impressions_paid_unique/lifetime"},"emitted_at":1671053290183} +{"stream":"post_insights","data":{"name":"post_impressions_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Impressions by people who have liked your Page","description":"Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_113682243636193/insights/post_impressions_fan/lifetime"},"emitted_at":1671053290183} +{"stream":"post_insights","data":{"name":"post_impressions_fan_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post reach by people who like your Page","description":"Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","id":"112704783733939_113682243636193/insights/post_impressions_fan_unique/lifetime"},"emitted_at":1671053290184} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Paid Impressions by people who have liked your Page","description":"Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","id":"112704783733939_113682243636193/insights/post_impressions_fan_paid/lifetime"},"emitted_at":1671053290184} +{"stream":"post_insights","data":{"name":"post_impressions_fan_paid_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Paid reach of a post by people who like your Page","description":"Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","id":"112704783733939_113682243636193/insights/post_impressions_fan_paid_unique/lifetime"},"emitted_at":1671053290184} +{"stream":"post_insights","data":{"name":"post_impressions_organic","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Organic Impressions","description":"Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","id":"112704783733939_113682243636193/insights/post_impressions_organic/lifetime"},"emitted_at":1671053290185} +{"stream":"post_insights","data":{"name":"post_impressions_organic_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post organic reach","description":"Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","id":"112704783733939_113682243636193/insights/post_impressions_organic_unique/lifetime"},"emitted_at":1671053290185} +{"stream":"post_insights","data":{"name":"post_impressions_viral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Viral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_113682243636193/insights/post_impressions_viral/lifetime"},"emitted_at":1671053290185} +{"stream":"post_insights","data":{"name":"post_impressions_viral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post viral reach","description":"Lifetime: The number of people who had your Page's post enter their screen with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_113682243636193/insights/post_impressions_viral_unique/lifetime"},"emitted_at":1671053290186} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Impressions","description":"Lifetime: The number of times your Page's post entered a person's screen. This does not include content created about your Page with social information attached. Social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Total Count)","id":"112704783733939_113682243636193/insights/post_impressions_nonviral/lifetime"},"emitted_at":1671053290186} +{"stream":"post_insights","data":{"name":"post_impressions_nonviral_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Post Nonviral Reach","description":"Lifetime: The number of people who had your Page's post enter their screen. This does not include content created about your Page with social information attached. As a form of organic distribution, social information displays when a person's friend interacted with you Page or post. This includes when someone's friend likes or follows your Page, engages with a post, shares a photo of your Page and checks into your Page. (Unique Users)","id":"112704783733939_113682243636193/insights/post_impressions_nonviral_unique/lifetime"},"emitted_at":1671053290186} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Viral Impressions by story type","description":"Lifetime: The number of times people saw this post via stories published by their friends. (Total Count)","id":"112704783733939_113682243636193/insights/post_impressions_by_story_type/lifetime"},"emitted_at":1671053290187} +{"stream":"post_insights","data":{"name":"post_impressions_by_story_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post viral reach by story type","description":"Lifetime: The number of people who saw your Page post in a story from a friend, by story type. (Unique Users)","id":"112704783733939_113682243636193/insights/post_impressions_by_story_type_unique/lifetime"},"emitted_at":1671053290187} +{"stream":"post_insights","data":{"name":"post_engaged_users","period":"lifetime","values":[{"value":0}],"title":"Lifetime Engaged Users","description":"Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","id":"112704783733939_113682243636193/insights/post_engaged_users/lifetime"},"emitted_at":1671053290187} +{"stream":"post_insights","data":{"name":"post_negative_feedback","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback","description":"Lifetime: The number of times people have given negative feedback to your post. (Total Count)","id":"112704783733939_113682243636193/insights/post_negative_feedback/lifetime"},"emitted_at":1671053290188} +{"stream":"post_insights","data":{"name":"post_negative_feedback_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Negative Feedback from Users","description":"Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","id":"112704783733939_113682243636193/insights/post_negative_feedback_unique/lifetime"},"emitted_at":1671053290188} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback from Users by Type","description":"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)","id":"112704783733939_113682243636193/insights/post_negative_feedback_by_type/lifetime"},"emitted_at":1671053290188} +{"stream":"post_insights","data":{"name":"post_negative_feedback_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Negative Feedback by Type","description":"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)","id":"112704783733939_113682243636193/insights/post_negative_feedback_by_type_unique/lifetime"},"emitted_at":1671053290189} +{"stream":"post_insights","data":{"name":"post_engaged_fan","period":"lifetime","values":[{"value":0}],"title":"Lifetime People who have liked your Page and engaged with your post","description":"Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","id":"112704783733939_113682243636193/insights/post_engaged_fan/lifetime"},"emitted_at":1671053290189} +{"stream":"post_insights","data":{"name":"post_clicks","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumptions on Post","description":"Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","id":"112704783733939_113682243636193/insights/post_clicks/lifetime"},"emitted_at":1671053290189} +{"stream":"post_insights","data":{"name":"post_clicks_unique","period":"lifetime","values":[{"value":0}],"title":"Lifetime Matched Audience Targeting Consumers on Post","description":"Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","id":"112704783733939_113682243636193/insights/post_clicks_unique/lifetime"},"emitted_at":1671053290190} +{"stream":"post_insights","data":{"name":"post_clicks_by_type","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Matched Audience Targeting Consumptions by Type","description":"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)","id":"112704783733939_113682243636193/insights/post_clicks_by_type/lifetime"},"emitted_at":1671053290190} +{"stream":"post_insights","data":{"name":"post_clicks_by_type_unique","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Post Audience Targeting Unique Consumptions by Type","description":"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)","id":"112704783733939_113682243636193/insights/post_clicks_by_type_unique/lifetime"},"emitted_at":1671053290190} +{"stream":"post_insights","data":{"name":"post_reactions_by_type_total","period":"lifetime","values":[{"value":{}}],"title":"Lifetime Total post Reactions by Type.","description":"Lifetime: Total post reactions by type.","id":"112704783733939_113682243636193/insights/post_reactions_by_type_total/lifetime"},"emitted_at":1671053290191} diff --git a/airbyte-integrations/connectors/source-facebook-pages/requirements.txt b/airbyte-integrations/connectors/source-facebook-pages/requirements.txt index 7be17a56d745..0411042aa091 100644 --- a/airbyte-integrations/connectors/source-facebook-pages/requirements.txt +++ b/airbyte-integrations/connectors/source-facebook-pages/requirements.txt @@ -1,3 +1,2 @@ -# This file is autogenerated -- only edit if you know what you are doing. Use setup.py for declaring dependencies. -e ../../bases/source-acceptance-test -e . diff --git a/airbyte-integrations/connectors/source-facebook-pages/setup.py b/airbyte-integrations/connectors/source-facebook-pages/setup.py index 0069aab99022..724caa517d70 100644 --- a/airbyte-integrations/connectors/source-facebook-pages/setup.py +++ b/airbyte-integrations/connectors/source-facebook-pages/setup.py @@ -11,6 +11,7 @@ TEST_REQUIREMENTS = [ "pytest~=6.1", + "pytest-mock~=3.6.1", "source-acceptance-test", ] @@ -21,7 +22,7 @@ author_email="contact@airbyte.io", packages=find_packages(), install_requires=MAIN_REQUIREMENTS, - package_data={"": ["*.json"]}, + package_data={"": ["*.json", "*.yaml", "schemas/*.json", "schemas/shared/*.json"]}, extras_require={ "tests": TEST_REQUIREMENTS, }, diff --git a/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/__init__.py b/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/__init__.py old mode 100755 new mode 100644 index 1df1d2e3521a..c164a4a5bbb3 --- a/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/__init__.py +++ b/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/__init__.py @@ -1,24 +1,6 @@ -# MIT License # -# Copyright (c) 2020 Airbyte +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. # -# 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 SourceFacebookPages diff --git a/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/components.py b/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/components.py new file mode 100644 index 000000000000..8f57a91a7ec6 --- /dev/null +++ b/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/components.py @@ -0,0 +1,97 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +from dataclasses import dataclass +from http import HTTPStatus +from itertools import chain +from typing import Any, List, Mapping, Union + +import dpath.util +import requests +from airbyte_cdk.sources.declarative.auth.declarative_authenticator import NoAuth +from airbyte_cdk.sources.declarative.extractors.dpath_extractor import DpathExtractor +from airbyte_cdk.sources.declarative.interpolation.interpolated_string import InterpolatedString +from airbyte_cdk.sources.declarative.types import Config, Record +from requests import HTTPError + + +@dataclass +class AuthenticatorFacebookPageAccessToken(NoAuth): + config: Config + page_id: Union[InterpolatedString, str] + access_token: Union[InterpolatedString, str] + + def __post_init__(self, options: Mapping[str, Any]): + self._page_id = InterpolatedString.create(self.page_id, options=options).eval(self.config) + self._access_token = InterpolatedString.create(self.access_token, options=options).eval(self.config) + + def __call__(self, request: requests.PreparedRequest) -> requests.PreparedRequest: + """Attach the page access token to params to authenticate on the HTTP request""" + page_access_token = self.generate_page_access_token() + request.prepare_url(url=request.url, params={"access_token": page_access_token}) + return request + + # @staticmethod + def generate_page_access_token(self) -> str: + # We are expecting to receive User access token from config. To access + # Pages API we need to generate Page access token. Page access tokens + # can be generated from another Page access token (with the same page ID) + # so if user manually set Page access token instead of User access + # token it would be no problem unless it has wrong page ID. + # https://developers.facebook.com/docs/pages/access-tokens#get-a-page-access-token + try: + r = requests.get( + f"https://graph.facebook.com/{self._page_id}", params={"fields": "access_token", "access_token": self._access_token} + ) + if r.status_code != HTTPStatus.OK: + raise HTTPError(r.text) + return r.json().get("access_token") + except Exception as e: + raise Exception(f"Error while generating page access token: {e}") from e + + +@dataclass +class NestedDpathExtractor(DpathExtractor): + """ + Record extractor that searches a decoded response over a path defined as an array of fields. + + Extends the DpathExtractor to allow for a list of records to be generated from a dpath that points + to an array object as first point and iterates over list of records by the rest of path. See the example. + + Example data: + ``` + { + "data": [ + {'insights': + {'data': [ + {"id": "id1", + "name": "name1", + ... + }, + {"id": "id1", + "name": "name1", + ... + }, + ... + }, + ... + ] + } + ``` + """ + + def extract_records(self, response: requests.Response) -> List[Record]: + response_body = self.decoder.decode(response) + if len(self.field_pointer) == 0: + extracted = response_body + else: + pointer = [pointer.eval(self.config) for pointer in self.field_pointer] + extracted_list = dpath.util.get(response_body, pointer[0], default=[]) + extracted = list(chain(*[dpath.util.get(x, pointer[1:], default=[]) for x in extracted_list])) if extracted_list else [] + if isinstance(extracted, list): + return extracted + elif extracted: + return [extracted] + else: + return [] diff --git a/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/facebook_pages.yaml b/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/facebook_pages.yaml new file mode 100644 index 000000000000..6fe218b5b707 --- /dev/null +++ b/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/facebook_pages.yaml @@ -0,0 +1,418 @@ +version: "0.1.0" + +definitions: + schema_loader: + type: JsonFileSchemaLoader + file_path: "./source_facebook_pages/schemas/{{ options['name'] }}.json" + selector: + extractor: + field_pointer: ["data"] + requester: + url_base: "https://graph.facebook.com/v15.0" + http_method: "GET" + authenticator: + class_name: source_facebook_pages.components.AuthenticatorFacebookPageAccessToken + page_id: "{{ config['page_id'] }}" + access_token: "{{ config['access_token'] }}" + facebook_post_paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.paging.get('cursors', {}).get('after') }}" + stop_condition: "{{ response.paging == '' or not response.paging.get('next') }}" + page_size: 100 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + field_name: "after" + inject_into: "request_parameter" + url_base: "*ref(definitions.requester.url_base)" + retriever: + record_selector: + $ref: "*ref(definitions.selector)" + paginator: + type: NoPagination + requester: + $ref: "*ref(definitions.requester)" + + base_stream: + schema_loader: + $ref: "*ref(definitions.schema_loader)" + retriever: + $ref: "*ref(definitions.retriever)" + + page_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "page" + primary_key: "id" + path: "/{{ config['page_id'] }}" + retriever: + $ref: "*ref(definitions.retriever)" + record_selector: + extractor: + field_pointer: [] + requester: + $ref: "*ref(definitions.requester)" + request_options_provider: + request_parameters: + fields: " {{ ','.join([ + 'id', + 'about', + 'ad_campaign', + 'affiliation', + 'app_id', + 'artists_we_like', + 'attire', + 'awards', + 'band_interests', + 'band_members', + 'bio', + 'birthday', + 'booking_agent', + 'built', + 'can_checkin', + 'can_post', + 'category', + 'category_list', + 'checkins', + 'company_overview', + 'contact_address', + 'country_page_likes', + 'cover', + 'culinary_team', + 'current_location', + 'delivery_and_pickup_option_info', + 'description', + 'description_html', + 'differently_open_offerings', + 'directed_by', + 'display_subtext', + 'displayed_message_response_time', + 'emails', + 'engagement', + 'fan_count', + 'featured_video', + 'features', + 'followers_count', + 'food_styles', + 'founded', + 'general_info', + 'general_manager', + 'genre', + 'global_brand_page_name', + 'global_brand_root_id', + 'has_added_app', + 'has_transitioned_to_new_page_experience', + 'has_whatsapp_business_number', + 'has_whatsapp_number', + 'hometown', + 'hours', + 'impressum', + 'influences', + 'is_always_open', + 'is_chain', + 'is_community_page', + 'is_eligible_for_branded_content', + 'is_messenger_bot_get_started_enabled', + 'is_messenger_platform_bot', + 'is_owned', + 'is_permanently_closed', + 'is_published', + 'is_unclaimed', + 'is_webhooks_subscribed', + 'leadgen_tos_acceptance_time', + 'leadgen_tos_accepted', + 'leadgen_tos_accepting_user', + 'link', + 'location', + 'members', + 'merchant_review_status', + 'messenger_ads_default_icebreakers', + 'messenger_ads_default_page_welcome_message', + 'messenger_ads_default_quick_replies', + 'messenger_ads_quick_replies_type', + 'mission', + 'mpg', + 'name', + 'name_with_location_descriptor', + 'network', + 'new_like_count', + 'offer_eligible', + 'overall_star_rating', + 'page_token', + 'parking', + 'payment_options', + 'personal_info', + 'personal_interests', + 'pharma_safety_info', + 'phone', + 'pickup_options', + 'place_type', + 'plot_outline', + 'press_contact', + 'price_range', + 'privacy_info_url', + 'produced_by', + 'products', + 'promotion_eligible', + 'promotion_ineligible_reason', + 'public_transit', + 'rating_count', + 'record_label', + 'release_date', + 'restaurant_services', + 'restaurant_specialties', + 'schedule', + 'screenplay_by', + 'season', + 'single_line_address', + 'starring', + 'start_info', + 'store_code', + 'store_location_descriptor', + 'store_number', + 'studio', + 'supports_donate_button_in_live_video', + 'talking_about_count', + 'temporary_status', + 'unread_message_count', + 'unread_notif_count', + 'unseen_message_count', + 'username', + 'verification_status', + 'voip_info', + 'website', + 'were_here_count', + 'whatsapp_number', + 'written_by', + 'albums', + 'canvas_elements', + 'events', + 'feed', + 'global_brand_children', + 'groups', + 'image_copyrights', + 'indexed_videos', + 'likes', + 'live_videos', + 'photos', + 'product_catalogs', + 'rtb_dynamic_posts', + 'video_lists', + 'videos', + ]) }} " + + post_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "post" + primary_key: "id" + path: "/{{ config['page_id'] }}/posts" + retriever: + $ref: "*ref(definitions.retriever)" + paginator: + $ref: "*ref(definitions.facebook_post_paginator)" + requester: + $ref: "*ref(definitions.requester)" + request_options_provider: + request_parameters: + fields: "{{ ','.join([ + 'id', + 'actions', + 'admin_creator', + 'application', + 'backdated_time', + 'call_to_action', + 'can_reply_privately', + 'child_attachments', + 'coordinates', + 'created_time', + 'event', + 'expanded_height', + 'expanded_width', + 'feed_targeting', + 'from', + 'height', + 'icon', + 'instagram_eligibility', + 'is_eligible_for_promotion', + 'is_expired', + 'is_hidden', + 'is_inline_created', + 'is_instagram_eligible', + 'is_popular', + 'is_published', + 'is_spherical', + 'message', + 'message_tags', + 'multi_share_end_card', + 'multi_share_optimized', + 'parent_id', + 'permalink_url', + 'place', + 'privacy', + 'promotable_id', + 'promotion_status', + 'properties', + 'scheduled_publish_time', + 'shares', + 'status_type', + 'story', + 'story_tags', + 'subscribed', + 'target', + 'targeting', + 'timeline_visibility', + 'updated_time', + 'via', + 'video_buying_eligibility', + 'width', + 'comments', + 'dynamic_posts', + 'likes', + 'reactions', + 'sharedposts', + 'sponsor_tags', + 'to' + ]) }}" + + post_insights_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "post_insights" + primary_key: "id" + path: "/{{ config['page_id'] }}/posts" + retriever: + $ref: "*ref(definitions.retriever)" + paginator: + $ref: "*ref(definitions.facebook_post_paginator)" + record_selector: + type: RecordSelector + extractor: + class_name: source_facebook_pages.components.NestedDpathExtractor + field_pointer: ["data", "insights", "data"] + requester: + $ref: "*ref(definitions.requester)" + request_options_provider: + request_parameters: + fields: "{{ 'insights.metric(%s)' % ','.join([ + 'post_impressions', + 'post_impressions_unique', + 'post_impressions_paid', + 'post_impressions_paid_unique', + 'post_impressions_fan', + 'post_impressions_fan_unique', + 'post_impressions_fan_paid', + 'post_impressions_fan_paid_unique', + 'post_impressions_organic', + 'post_impressions_organic_unique', + 'post_impressions_viral', + 'post_impressions_viral_unique', + 'post_impressions_nonviral', + 'post_impressions_nonviral_unique', + 'post_impressions_by_story_type', + 'post_impressions_by_story_type_unique', + 'post_engaged_users', + 'post_negative_feedback', + 'post_negative_feedback_unique', + 'post_negative_feedback_by_type', + 'post_negative_feedback_by_type_unique', + 'post_engaged_fan', + 'post_clicks', + 'post_clicks_unique', + 'post_clicks_by_type', + 'post_clicks_by_type_unique', + 'post_reactions_by_type_total', + ]) }}" + + page_insights_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "page_insights" + primary_key: "id" + path: "/{{ config['page_id'] }}/insights" + retriever: + $ref: "*ref(definitions.retriever)" + requester: + $ref: "*ref(definitions.requester)" + request_options_provider: + request_parameters: + metric: "{{ ','.join([ + 'page_tab_views_login_top_unique', + 'page_tab_views_login_top', + 'page_tab_views_logout_top', + 'page_total_actions', + 'page_cta_clicks_logged_in_total', + 'page_cta_clicks_logged_in_unique', + 'page_cta_clicks_by_site_logged_in_unique', + 'page_cta_clicks_by_age_gender_logged_in_unique', + 'page_cta_clicks_logged_in_by_country_unique', + 'page_cta_clicks_logged_in_by_city_unique', + 'page_call_phone_clicks_logged_in_unique', + 'page_call_phone_clicks_by_age_gender_logged_in_unique', + 'page_call_phone_clicks_logged_in_by_country_unique', + 'page_call_phone_clicks_logged_in_by_city_unique', + 'page_call_phone_clicks_by_site_logged_in_unique', + 'page_get_directions_clicks_logged_in_unique', + 'page_get_directions_clicks_by_age_gender_logged_in_unique', + 'page_get_directions_clicks_logged_in_by_country_unique', + 'page_get_directions_clicks_logged_in_by_city_unique', + 'page_get_directions_clicks_by_site_logged_in_unique', + 'page_website_clicks_logged_in_unique', + 'page_website_clicks_by_age_gender_logged_in_unique', + 'page_website_clicks_logged_in_by_country_unique', + 'page_website_clicks_logged_in_by_city_unique', + 'page_website_clicks_by_site_logged_in_unique', + 'page_engaged_users', + 'page_post_engagements', + 'page_consumptions', + 'page_consumptions_unique', + 'page_consumptions_by_consumption_type', + 'page_consumptions_by_consumption_type_unique', + 'page_places_checkin_total', + 'page_places_checkin_total_unique', + 'page_places_checkin_mobile', + 'page_places_checkin_mobile_unique', + 'page_places_checkins_by_age_gender', + 'page_places_checkins_by_locale', + 'page_places_checkins_by_country', + 'page_negative_feedback', + 'page_negative_feedback_unique', + 'page_negative_feedback_by_type', + 'page_negative_feedback_by_type_unique', + 'page_positive_feedback_by_type', + 'page_positive_feedback_by_type_unique', + 'page_fans_online', + 'page_fans_online_per_day', + 'page_fan_adds_by_paid_non_paid_unique', + 'page_impressions', + 'page_impressions_unique', + 'page_impressions_paid', + 'page_impressions_paid_unique', + 'page_impressions_organic', + 'page_impressions_organic_unique', + 'page_impressions_viral', + 'page_impressions_viral_unique', + 'page_impressions_nonviral', + 'page_impressions_nonviral_unique', + 'page_impressions_by_story_type', + 'page_impressions_by_story_type_unique', + 'page_impressions_by_city_unique', + 'page_impressions_by_country_unique', + 'page_impressions_by_locale_unique', + 'page_impressions_by_age_gender_unique', + 'page_impressions_frequency_distribution', + 'page_impressions_viral_frequency_distribution', + ]) }}" +streams: + - "*ref(definitions.page_stream)" + - "*ref(definitions.post_stream)" + - "*ref(definitions.post_insights_stream)" + - "*ref(definitions.page_insights_stream)" + +check: + stream_names: + - "page" + diff --git a/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/metrics.py b/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/metrics.py deleted file mode 100755 index 0fb48a0f2acf..000000000000 --- a/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/metrics.py +++ /dev/null @@ -1,333 +0,0 @@ -# -# Copyright (c) 2022 Airbyte, Inc., all rights reserved. -# - -PAGE_METRICS = [ - "page_tab_views_login_top_unique", - "page_tab_views_login_top", - "page_tab_views_logout_top", - "page_total_actions", - "page_cta_clicks_logged_in_total", - "page_cta_clicks_logged_in_unique", - "page_cta_clicks_by_site_logged_in_unique", - "page_cta_clicks_by_age_gender_logged_in_unique", - "page_cta_clicks_logged_in_by_country_unique", - "page_cta_clicks_logged_in_by_city_unique", - "page_call_phone_clicks_logged_in_unique", - "page_call_phone_clicks_by_age_gender_logged_in_unique", - "page_call_phone_clicks_logged_in_by_country_unique", - "page_call_phone_clicks_logged_in_by_city_unique", - "page_call_phone_clicks_by_site_logged_in_unique", - "page_get_directions_clicks_logged_in_unique", - "page_get_directions_clicks_by_age_gender_logged_in_unique", - "page_get_directions_clicks_logged_in_by_country_unique", - "page_get_directions_clicks_logged_in_by_city_unique", - "page_get_directions_clicks_by_site_logged_in_unique", - "page_website_clicks_logged_in_unique", - "page_website_clicks_by_age_gender_logged_in_unique", - "page_website_clicks_logged_in_by_country_unique", - "page_website_clicks_logged_in_by_city_unique", - "page_website_clicks_by_site_logged_in_unique", - "page_engaged_users", - "page_post_engagements", - "page_consumptions", - "page_consumptions_unique", - "page_consumptions_by_consumption_type", - "page_consumptions_by_consumption_type_unique", - "page_places_checkin_total", - "page_places_checkin_total_unique", - "page_places_checkin_mobile", - "page_places_checkin_mobile_unique", - "page_places_checkins_by_age_gender", - "page_places_checkins_by_locale", - "page_places_checkins_by_country", - "page_negative_feedback", - "page_negative_feedback_unique", - "page_negative_feedback_by_type", - "page_negative_feedback_by_type_unique", - "page_positive_feedback_by_type", - "page_positive_feedback_by_type_unique", - "page_fans_online", - "page_fans_online_per_day", - "page_fan_adds_by_paid_non_paid_unique", - "page_impressions", - "page_impressions_unique", - "page_impressions_paid", - "page_impressions_paid_unique", - "page_impressions_organic", - "page_impressions_organic_unique", - "page_impressions_viral", - "page_impressions_viral_unique", - "page_impressions_nonviral", - "page_impressions_nonviral_unique", - "page_impressions_by_story_type", - "page_impressions_by_story_type_unique", - "page_impressions_by_city_unique", - "page_impressions_by_country_unique", - "page_impressions_by_locale_unique", - "page_impressions_by_age_gender_unique", - "page_impressions_frequency_distribution", - "page_impressions_viral_frequency_distribution", -] - -POST_METRICS = [ - "post_impressions", - "post_impressions_unique", - "post_impressions_paid", - "post_impressions_paid_unique", - "post_impressions_fan", - "post_impressions_fan_unique", - "post_impressions_fan_paid", - "post_impressions_fan_paid_unique", - "post_impressions_organic", - "post_impressions_organic_unique", - "post_impressions_viral", - "post_impressions_viral_unique", - "post_impressions_nonviral", - "post_impressions_nonviral_unique", - "post_impressions_by_story_type", - "post_impressions_by_story_type_unique", - "post_engaged_users", - "post_negative_feedback", - "post_negative_feedback_unique", - "post_negative_feedback_by_type", - "post_negative_feedback_by_type_unique", - "post_engaged_fan", - "post_clicks", - "post_clicks_unique", - "post_clicks_by_type", - "post_clicks_by_type_unique", - "post_reactions_by_type_total", -] - -PAGE_FIELDS = ",".join( - [ - "id", - "about", - "ad_campaign", - "affiliation", - "app_id", - "artists_we_like", - "attire", - "awards", - "band_interests", - "band_members", - "bio", - "birthday", - "booking_agent", - "built", - "can_checkin", - "can_post", - "category", - "category_list", - "checkins", - "company_overview", - "connected_page_backed_instagram_account", - "contact_address", - "country_page_likes", - "cover", - "culinary_team", - "current_location", - "delivery_and_pickup_option_info", - "description", - "description_html", - "differently_open_offerings", - "directed_by", - "display_subtext", - "displayed_message_response_time", - "emails", - "engagement", - "fan_count", - "featured_video", - "features", - "followers_count", - "food_styles", - "founded", - "general_info", - "general_manager", - "genre", - "global_brand_page_name", - "global_brand_root_id", - "has_added_app", - "has_transitioned_to_new_page_experience", - "has_whatsapp_business_number", - "has_whatsapp_number", - "hometown", - "hours", - "impressum", - "influences", - "is_always_open", - "is_chain", - "is_community_page", - "is_eligible_for_branded_content", - "is_messenger_bot_get_started_enabled", - "is_messenger_platform_bot", - "is_owned", - "is_permanently_closed", - "is_published", - "is_unclaimed", - "is_webhooks_subscribed", - "leadgen_tos_acceptance_time", - "leadgen_tos_accepted", - "leadgen_tos_accepting_user", - "link", - "location", - "members", - "merchant_review_status", - "messenger_ads_default_icebreakers", - "messenger_ads_default_page_welcome_message", - "messenger_ads_default_quick_replies", - "messenger_ads_quick_replies_type", - "mission", - "mpg", - "name", - "name_with_location_descriptor", - "network", - "new_like_count", - "offer_eligible", - "overall_star_rating", - "page_token", - "parking", - "payment_options", - "personal_info", - "personal_interests", - "pharma_safety_info", - "phone", - "pickup_options", - "place_type", - "plot_outline", - "preferred_audience", - "press_contact", - "price_range", - "privacy_info_url", - "produced_by", - "products", - "promotion_eligible", - "promotion_ineligible_reason", - "public_transit", - "rating_count", - "record_label", - "release_date", - "restaurant_services", - "restaurant_specialties", - "schedule", - "screenplay_by", - "season", - "single_line_address", - "starring", - "start_info", - "store_code", - "store_location_descriptor", - "store_number", - "studio", - "supports_donate_button_in_live_video", - "talking_about_count", - "temporary_status", - "unread_message_count", - "unread_notif_count", - "unseen_message_count", - "username", - "verification_status", - "voip_info", - "website", - "were_here_count", - "whatsapp_number", - "written_by", - "agencies", - "albums", - "blocked", - "call_to_actions", - "canvas_elements", - "commerce_merchant_settings", - "events", - "feed", - "global_brand_children", - "groups", - "image_copyrights", - "indexed_videos", - # "insights_exports", Tried accessing nonexisting field (insights_exports) on node type (Page) - "instagram_accounts", - "likes", - "live_videos", - "locations", - "nativeoffers", - "page_backed_instagram_accounts", - "photos", - "posts", - "product_catalogs", - "published_posts", - "ratings", - "roles", - "rtb_dynamic_posts", - "scheduled_posts", - "settings", - "tabs", - "tagged", - "video_lists", - "videos", - "visitor_posts", - ] -) - -POST_FIELDS = ",".join( - [ - "id", - "actions", - "admin_creator", - "application", - "backdated_time", - "call_to_action", - "can_reply_privately", - "child_attachments", - "comments_mirroring_domain", - "coordinates", - "created_time", - "event", - "expanded_height", - "expanded_width", - "feed_targeting", - "from", - "height", - "icon", - "instagram_eligibility", - "is_eligible_for_promotion", - "is_expired", - "is_hidden", - "is_inline_created", - "is_instagram_eligible", - "is_popular", - "is_published", - "is_spherical", - "message", - "message_tags", - "multi_share_end_card", - "multi_share_optimized", - "parent_id", - "permalink_url", - "place", - "privacy", - "promotable_id", - "promotion_status", - "properties", - "scheduled_publish_time", - "shares", - "status_type", - "story", - "story_tags", - "subscribed", - "target", - "targeting", - "timeline_visibility", - "updated_time", - "via", - "video_buying_eligibility", - "width", - "comments", - "dynamic_posts", - "likes", - "reactions", - "sharedposts", - "sponsor_tags", - "to", - ] -) diff --git a/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/schemas/post.json b/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/schemas/post.json index 86ab8498c262..9764c6c799d5 100644 --- a/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/schemas/post.json +++ b/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/schemas/post.json @@ -5,11 +5,11 @@ "actions": { "type": ["array", "null"], "items": { - "type": ["string", "null"] + "type": ["object", "null"] } }, "admin_creator": { - "type": ["string", "null"] + "type": ["object", "null"] }, "allowed_advertising_objectives": { "type": ["array", "null"], @@ -43,7 +43,7 @@ "type": ["string", "null"] }, "coordinates": { - "type": ["string", "null"] + "type": ["object", "null"] }, "created_time": { "type": ["string", "null"], @@ -65,7 +65,7 @@ "type": ["string", "null"] }, "from": { - "type": ["string", "null"] + "type": ["object", "null"] }, "full_picture": { "type": ["string", "null"] @@ -118,7 +118,7 @@ "message_tags": { "type": ["array", "null"], "items": { - "type": ["string", "null"] + "type": ["object", "null"] } }, "multi_share_end_card": { @@ -157,14 +157,14 @@ "properties": { "type": ["array", "null"], "items": { - "type": ["string", "null"] + "type": ["object", "null"] } }, "scheduled_publish_time": { "type": ["number", "null"] }, "shares": { - "type": ["string", "null"] + "type": ["object", "null"] }, "source": { "type": ["string", "null"] @@ -178,7 +178,7 @@ "story_tags": { "type": ["array", "null"], "items": { - "type": ["string", "null"] + "type": ["object", "null"] } }, "subscribed": { diff --git a/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/source.py b/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/source.py old mode 100755 new mode 100644 index 2cb39422af0a..1bfc7795a350 --- a/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/source.py +++ b/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/source.py @@ -2,56 +2,17 @@ # Copyright (c) 2022 Airbyte, Inc., all rights reserved. # +from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource -from typing import Any, List, Mapping, Tuple +""" +This file provides the necessary constructs to interpret a provided declarative YAML configuration file into +source connector. -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 +WARNING: Do not modify this file. +""" -from .streams import Page, PageInsights, Post, PostInsights - -class SourceFacebookPages(AbstractSource): - def check_connection(self, logger: AirbyteLogger, config: Mapping[str, Any]) -> Tuple[bool, Any]: - ok = False - error_msg = None - - try: - access_token, page_id = config["access_token"], config["page_id"] - access_token = self.generate_page_access_token(page_id, access_token) - _ = list(Page(access_token=access_token, page_id=page_id).read_records(sync_mode=SyncMode.full_refresh)) - ok = True - except Exception as e: - error_msg = repr(e) - - return ok, error_msg - - @staticmethod - def generate_page_access_token(page_id: str, access_token: str) -> str: - # We are expecting to receive User access token from config. To access - # Pages API we need to generate Page access token. Page access tokens - # can be generated from another Page access token (with the same page ID) - # so if user manually set Page access token instead of User access - # token it would be no problem unless it has wrong page ID. - # https://developers.facebook.com/docs/pages/access-tokens#get-a-page-access-token - r = requests.get(f"https://graph.facebook.com/{page_id}", params={"fields": "access_token", "access_token": access_token}) - return r.json()["access_token"] - - def streams(self, config: Mapping[str, Any]) -> List[Stream]: - access_token, page_id = config["access_token"], config["page_id"] - access_token = self.generate_page_access_token(page_id, access_token) - stream_kwargs = { - "access_token": access_token, - "page_id": page_id, - } - - streams = [ - Post(**stream_kwargs), - Page(**stream_kwargs), - PostInsights(**stream_kwargs), - PageInsights(**stream_kwargs), - ] - return streams +# Declarative Source +class SourceFacebookPages(YamlDeclarativeSource): + def __init__(self): + super().__init__(**{"path_to_yaml": "facebook_pages.yaml"}) diff --git a/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/spec.json b/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/spec.json deleted file mode 100755 index 305f9756b95c..000000000000 --- a/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/spec.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "documentationUrl": "https://docs.airbyte.com/integrations/sources/facebook-pages", - "connectionSpecification": { - "$schema": "http://json-schema.org/draft-07/schema#", - "title": "Facebook Pages Spec", - "type": "object", - "required": ["access_token", "page_id"], - "additionalProperties": true, - "properties": { - "access_token": { - "type": "string", - "title": "Page Access Token", - "description": "Facebook Page Access Token", - "airbyte_secret": true - }, - "page_id": { - "type": "string", - "title": "Page ID", - "description": "Page ID" - } - } - }, - "authSpecification": { - "auth_type": "oauth2.0", - "oauth2Specification": { - "rootObject": [], - "oauthFlowInitParameters": [], - "oauthFlowOutputParameters": [["access_token"]] - } - } -} diff --git a/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/spec.yaml b/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/spec.yaml new file mode 100644 index 000000000000..94b96e282802 --- /dev/null +++ b/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/spec.yaml @@ -0,0 +1,21 @@ +documentationUrl: https://docs.airbyte.com/integrations/sources/facebook-pages +connectionSpecification: + $schema: http://json-schema.org/draft-07/schema# + title: Facebook Pages Spec + type: object + required: + - access_token + - page_id + additionalProperties: true + properties: + access_token: + type: string + title: Page Access Token + description: Facebook Page Access Token + airbyte_secret: true + order: 0 + page_id: + type: string + title: Page ID + description: Page ID + order: 1 \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/streams.py b/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/streams.py deleted file mode 100755 index f86e62d5d9b3..000000000000 --- a/airbyte-integrations/connectors/source-facebook-pages/source_facebook_pages/streams.py +++ /dev/null @@ -1,156 +0,0 @@ -# -# Copyright (c) 2022 Airbyte, Inc., all rights reserved. -# - -from abc import ABC -from typing import Any, Iterable, Mapping, MutableMapping, Optional - -import requests -from airbyte_cdk.sources.streams.http import HttpStream -from airbyte_cdk.sources.utils.transform import TransformConfig, TypeTransformer -from source_facebook_pages.metrics import PAGE_FIELDS, PAGE_METRICS, POST_FIELDS, POST_METRICS - - -class FacebookPagesStream(HttpStream, ABC): - url_base = "https://graph.facebook.com/v12.0/" - primary_key = "id" - data_field = "data" - transformer = TypeTransformer(TransformConfig.DefaultSchemaNormalization) - - def __init__( - self, - access_token: str = None, - page_id: str = None, - **kwargs, - ): - super().__init__(**kwargs) - self._access_token = access_token - self._page_id = page_id - - @property - def path_param(self): - return self.name[:-1] - - def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: - data = response.json() - - if not data.get("data") or not data.get("paging"): - return {} - - return { - "limit": 100, - "after": data.get("paging", {}).get("cursors", {}).get("after"), - } - - 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]: - next_page_token = next_page_token or {} - params = {"access_token": self._access_token, **next_page_token} - - return params - - def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: - if not self.data_field: - yield response.json() - - records = response.json().get(self.data_field, []) - - for record in records: - yield record - - -class Page(FacebookPagesStream): - """ - API docs: https://developers.facebook.com/docs/graph-api/reference/page/, - """ - - data_field = "" - - def path(self, **kwargs) -> str: - return self._page_id - - def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: - return None - - def request_params(self, **kwargs) -> MutableMapping[str, Any]: - params = super().request_params(**kwargs) - # we have to define which fields will return from Facebook API - # because FB API doesn't provide opportunity to get fields dynamically without delays - # so in PAGE_FIELDS we define fields that user can get from API - params["fields"] = PAGE_FIELDS - - return params - - -class Post(FacebookPagesStream): - """ - https://developers.facebook.com/docs/graph-api/reference/v11.0/page/feed, - """ - - def path(self, **kwargs) -> str: - return f"{self._page_id}/posts" - - def request_params(self, **kwargs) -> MutableMapping[str, Any]: - params = super().request_params(**kwargs) - params["fields"] = POST_FIELDS - - return params - - -class PageInsights(FacebookPagesStream): - """ - API docs: https://developers.facebook.com/docs/graph-api/reference/page/insights/, - """ - - def path(self, **kwargs) -> str: - return f"{self._page_id}/insights" - - def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: - return None - - 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 = super().request_params(stream_state, stream_slice, next_page_token) - params["metric"] = ",".join(PAGE_METRICS) - - return params - - -class PostInsights(FacebookPagesStream): - """ - API docs: https://developers.facebook.com/docs/graph-api/reference/post/insights/, - """ - - def path(self, **kwargs) -> str: - return f"{self._page_id}/posts" - - 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 = super().request_params(stream_state, stream_slice, next_page_token) - params["fields"] = f'insights.metric({",".join(POST_METRICS)})' - - return params - - def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: - # unique case so we override this method - records = response.json().get(self.data_field) or [] - - for insights in records: - if insights.get("insights"): - data = insights.get("insights").get("data") - for insight in data: - yield insight - else: - yield insights diff --git a/airbyte-integrations/connectors/source-facebook-pages/unit_tests/test_facebook_authenticator.py b/airbyte-integrations/connectors/source-facebook-pages/unit_tests/test_facebook_authenticator.py new file mode 100755 index 000000000000..8e9e1aa76ef6 --- /dev/null +++ b/airbyte-integrations/connectors/source-facebook-pages/unit_tests/test_facebook_authenticator.py @@ -0,0 +1,34 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import pytest +import requests +import requests_mock +from source_facebook_pages.components import AuthenticatorFacebookPageAccessToken + + +@pytest.fixture +def req_mock(): + with requests_mock.Mocker() as mock: + yield mock + + +def test_facebook_url_params(req_mock): + config = { + "access_token": "initial_token", + "page_id": "pageID" + } + options = config + + req_mock.get("https://graph.facebook.com/pageID", json={"access_token": "page_access_token"}) + authenticator = AuthenticatorFacebookPageAccessToken(config=config, + page_id=config.get("page_id"), + access_token=config.get("access_token"), + options=options) + page_token = authenticator.generate_page_access_token() + assert page_token == "page_access_token" + prepared_request = requests.PreparedRequest() + prepared_request.method = "GET" + prepared_request.url = "https://graph.facebook.com/" + assert "access_token=page_access_token" in authenticator(prepared_request).path_url diff --git a/airbyte-integrations/connectors/source-facebook-pages/unit_tests/test_nested_dpath_extractor.py b/airbyte-integrations/connectors/source-facebook-pages/unit_tests/test_nested_dpath_extractor.py new file mode 100644 index 000000000000..da9a747c26b2 --- /dev/null +++ b/airbyte-integrations/connectors/source-facebook-pages/unit_tests/test_nested_dpath_extractor.py @@ -0,0 +1,74 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import json +from typing import Any + +from requests import Response +from source_facebook_pages.components import NestedDpathExtractor + + +def _create_response(content: Any) -> Response: + response = Response() + response._content = json.dumps(content).encode("utf-8") + return response + + +def test_list_of_records(): + extractor = NestedDpathExtractor( + field_pointer=["data", "insights", "data"], + config={}, + options={}, + ) + content = {"data": [ + {"insights": {"data": [{"id": "id1", "name": "name1"}, {"id": "id2", "name": "name2"}]}}, + {"insights": {"data": [{"id": "id3", "name": "name3"}, {"id": "id4", "name": "name4"}]}}, + ] + } + response = _create_response(content) + records = extractor.extract_records(response) + + assert records == [ + {"id": "id1", "name": "name1"}, {"id": "id2", "name": "name2"}, + {"id": "id3", "name": "name3"}, {"id": "id4", "name": "name4"} + ] + + +def test_no_field_pointer(): + extractor = NestedDpathExtractor( + field_pointer=[], + config={}, + options={}, + ) + obj_response = _create_response({"data": {}}) + obj_records = extractor.extract_records(obj_response) + + assert obj_records == [{"data": {}}] + + +def test_no_records(): + extractor = NestedDpathExtractor( + field_pointer=["data", "insights", "data"], + config={}, + options={}, + ) + obj_response = _create_response({"data": {}}) + obj_records = extractor.extract_records(obj_response) + + assert obj_records == [] + + +def test_single_record(): + extractor = NestedDpathExtractor( + field_pointer=["data", "insights", "data"], + config={}, + options={}, + ) + content = {"data": [ + {"insights": {"data": [{"id": "id1", "name": "name1"}]}} + ]} + response = _create_response(content) + records = extractor.extract_records(response) + + assert records == [{"id": "id1", "name": "name1"}] diff --git a/airbyte-integrations/connectors/source-facebook-pages/unit_tests/unit_test.py b/airbyte-integrations/connectors/source-facebook-pages/unit_tests/unit_test.py deleted file mode 100755 index 7bed0453072e..000000000000 --- a/airbyte-integrations/connectors/source-facebook-pages/unit_tests/unit_test.py +++ /dev/null @@ -1,29 +0,0 @@ -# -# Copyright (c) 2022 Airbyte, Inc., all rights reserved. -# - -import json - -import pytest -from source_facebook_pages.streams import Post - - -class MockResponse: - def __init__(self, value): - self.value = value - - def json(self): - return json.loads(self.value) - - -@pytest.mark.parametrize( - "data, expected", - [ - ('{"data":[1, 2, 3],"paging":{"cursors":{"after": "next"}}}', "next"), - ('{"data":[1, 2, 3]}', None), - ('{"data": []}', None), - ], -) -def test_pagination(data, expected): - stream = Post() - assert stream.next_page_token(MockResponse(data)).get("after") == expected 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-file/README.md b/airbyte-integrations/connectors/source-file/README.md index bd3ec225423f..f256f2954657 100644 --- a/airbyte-integrations/connectors/source-file/README.md +++ b/airbyte-integrations/connectors/source-file/README.md @@ -132,6 +132,16 @@ docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/sample_files:/sample_files 1. To run additional integration tests, place your integration tests in a new directory `integration_tests` and run them with `python -m pytest -s integration_tests`. 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. +#### 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 +``` +docker build . --no-cache -t airbyte/source-file:dev \ +&& python -m pytest -p source_acceptance_test.plugin +``` +To run your integration tests with docker + ## 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. diff --git a/airbyte-integrations/connectors/source-file/acceptance-test-config.yml b/airbyte-integrations/connectors/source-file/acceptance-test-config.yml index ade248fea791..6efdad6dbe3b 100644 --- a/airbyte-integrations/connectors/source-file/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-file/acceptance-test-config.yml @@ -1,19 +1,24 @@ # 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-file:dev -tests: +acceptance_tests: spec: - - spec_path: "source_file/spec.json" + tests: + - spec_path: "source_file/spec.json" connection: - - config_path: "integration_tests/config.json" - status: "succeed" - - config_path: "integration_tests/invalid_config.json" - status: "failed" + tests: + - config_path: "integration_tests/config.json" + status: "succeed" + - config_path: "integration_tests/invalid_config.json" + status: "failed" discovery: - - config_path: "integration_tests/config.json" + tests: + - config_path: "integration_tests/config.json" basic_read: - - config_path: "integration_tests/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" + tests: + - config_path: "integration_tests/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" full_refresh: - - config_path: "integration_tests/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" + tests: + - config_path: "integration_tests/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" diff --git a/airbyte-integrations/connectors/source-file/unit_tests/test_source.py b/airbyte-integrations/connectors/source-file/unit_tests/test_source.py index 17ee5493c06a..bd3ef4567f05 100644 --- a/airbyte-integrations/connectors/source-file/unit_tests/test_source.py +++ b/airbyte-integrations/connectors/source-file/unit_tests/test_source.py @@ -149,12 +149,11 @@ def test_discover(source, config, client): def test_check_wrong_reader_options(source, config): config["reader_options"] = '{encoding":"utf_16"}' - with pytest.raises(Exception): - source.check(logger=logger, config=config) assert source.check(logger=logger, config=config) == AirbyteConnectionStatus( status=Status.FAILED, message="reader_options is not valid JSON" ) + def test_check_google_spreadsheets_url(source, config): config["url"] = "https://docs.google.com/spreadsheets/d/" assert source.check(logger=logger, config=config) == AirbyteConnectionStatus( diff --git a/airbyte-integrations/connectors/source-github/Dockerfile b/airbyte-integrations/connectors/source-github/Dockerfile index 02815898c9aa..782915f127fc 100644 --- a/airbyte-integrations/connectors/source-github/Dockerfile +++ b/airbyte-integrations/connectors/source-github/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.8 +LABEL io.airbyte.version=0.3.10 LABEL io.airbyte.name=airbyte/source-github diff --git a/airbyte-integrations/connectors/source-gitlab/Dockerfile b/airbyte-integrations/connectors/source-gitlab/Dockerfile index 99765fc1d8ac..5d17be4d0242 100644 --- a/airbyte-integrations/connectors/source-gitlab/Dockerfile +++ b/airbyte-integrations/connectors/source-gitlab/Dockerfile @@ -13,5 +13,5 @@ COPY main.py ./ ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.9 +LABEL io.airbyte.version=0.1.12 LABEL io.airbyte.name=airbyte/source-gitlab diff --git a/airbyte-integrations/connectors/source-gitlab/acceptance-test-config.yml b/airbyte-integrations/connectors/source-gitlab/acceptance-test-config.yml index 1612db7f211f..fdacb6ade48c 100644 --- a/airbyte-integrations/connectors/source-gitlab/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-gitlab/acceptance-test-config.yml @@ -1,32 +1,43 @@ connector_image: airbyte/source-gitlab:dev -tests: +test_strictness_level: "high" +acceptance_tests: spec: - - spec_path: "source_gitlab/spec.json" + tests: + - spec_path: "source_gitlab/spec.json" 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" + tests: + - config_path: "secrets/config.json" basic_read: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - empty_streams: ["group_issue_boards"] - expect_records: - path: "integration_tests/expected_records.txt" -# We cannot use these tests for testing Incremental, since for Gitlab the State is saved for each Project separately, -# and the Acceptance Tests at this stage do not support this functionality. -# Therefore, we hardcode the cursor_paths for our config. + tests: + - config_path: "secrets/config.json" + expect_records: + path: "integration_tests/expected_records.txt" + - config_path: "secrets/config_with_ids.json" + empty_streams: + - name: "epics" + bypass_reason: "Group in this config does not have epics. This stream is tested in the above TC." + - name: "epic_issues" + bypass_reason: "Group in this config does not have epics issues. This stream is tested in the above TC." + expect_records: + path: "integration_tests/expected_records_with_ids.txt" incremental: - - config_path: "secrets/config_with_ids.json" - configured_catalog_path: "integration_tests/incremental_catalog.json" - future_state_path: "integration_tests/abnormal_state.json" - cursor_paths: - commits: ["25157276", "created_at"] - issues: ["25157276", "updated_at"] - merge_requests: ["25157276", "updated_at"] - pipelines: ["25157276", "updated_at"] + tests: + - config_path: "secrets/config_with_ids.json" + configured_catalog_path: "integration_tests/incremental_catalog.json" + future_state: + future_state_path: "integration_tests/abnormal_state.json" + cursor_paths: + commits: ["25157276", "created_at"] + issues: ["25157276", "updated_at"] + merge_requests: ["25157276", "updated_at"] + pipelines: ["25157276", "updated_at"] 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-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-gitlab/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-gitlab/integration_tests/configured_catalog.json index 866bb115973f..1aa8a2060837 100644 --- a/airbyte-integrations/connectors/source-gitlab/integration_tests/configured_catalog.json +++ b/airbyte-integrations/connectors/source-gitlab/integration_tests/configured_catalog.json @@ -232,6 +232,17 @@ "destination_sync_mode": "overwrite", "primary_key": [["id"]] }, + { + "stream": { + "name": "epics", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"], + "source_defined_primary_key": [["iid"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite", + "primary_key": [["iid"]] + }, { "stream": { "name": "epic_issues", diff --git a/airbyte-integrations/connectors/source-gitlab/integration_tests/expected_records.txt b/airbyte-integrations/connectors/source-gitlab/integration_tests/expected_records.txt index ea9493b16b8c..baa8ede9bd44 100644 --- a/airbyte-integrations/connectors/source-gitlab/integration_tests/expected_records.txt +++ b/airbyte-integrations/connectors/source-gitlab/integration_tests/expected_records.txt @@ -1 +1,152 @@ -{"stream": "epic_issues", "data": {"id": 120214448, "iid": 31, "project_id": 25156633, "title": "Unit tests", "description": null, "state": "opened", "created_at": "2022-12-11T10:50:25.940Z", "updated_at": "2022-12-11T10:50:25.940Z", "closed_at": null, "closed_by": null, "labels": [], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/issues/31", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "weight": null, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25156633/issues/31", "notes": "https://gitlab.com/api/v4/projects/25156633/issues/31/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25156633/issues/31/award_emoji", "project": "https://gitlab.com/api/v4/projects/25156633", "closed_as_duplicate_of": null}, "references": {"short": "#31", "relative": "#31", "full": "airbyte.io/ci-test-project#31"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "epic_iid": 1, "epic": {"id": 678569, "iid": 1, "title": "Source Gitlab: certify to Beta", "url": "/groups/airbyte.io/-/epics/1", "group_id": 11266951, "human_readable_end_date": "Dec 30, 2022", "human_readable_timestamp": "19 days remaining"}, "iteration": null, "epic_issue_id": 1899479, "relative_position": 0, "milestone_id": null, "assignee_id": null, "author_id": 8375961}, "emitted_at": 1670761695320} \ No newline at end of file +{"stream":"groups","data":{"id":11329647,"web_url":"https://gitlab.com/groups/new-group-airbute","name":"New Group Airbute","path":"new-group-airbute","description":"","visibility":"public","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute","full_path":"new-group-airbute","created_at":"2021-03-15T15:55:53.613Z","parent_id":null,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941-PhosPap-Sf1UxL1g6m4","prevent_sharing_groups_outside_hierarchy":false,"shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":25157276,"path_with_namespace":"new-group-airbute/new-ci-test-project"}]},"emitted_at":1671097000589} +{"stream":"groups","data":{"id":61014882,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg","name":"Test Private SG","path":"test-private-sg","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Subgroup Airbyte / Test Private SG","full_path":"new-group-airbute/test-subgroup-airbyte/test-private-sg","created_at":"2022-12-02T08:46:22.648Z","parent_id":61014863,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941bjUaJQy2zzar-JmNBjfq","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[]},"emitted_at":1671097000981} +{"stream":"groups","data":{"id":61015181,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1","name":"Test Private SubSubG 1","path":"test-private-subsubg-1","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Public SG / Test SG Public 2 / Test Private SubSubG 1","full_path":"new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1","created_at":"2022-12-02T08:54:42.252Z","parent_id":61014943,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941x8xQf6K-UvnnyJ-bcut4","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":41551658,"path_with_namespace":"new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup"}]},"emitted_at":1671097001388} +{"stream":"groups","data":{"id":61015232,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2","name":"Test Private SubSubG 2","path":"test-private-subsubg-2","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Subgroup Airbyte / Test Private SG / Test Private SubSubG 2","full_path":"new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2","created_at":"2022-12-02T08:56:21.783Z","parent_id":61014882,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941bnTmxzY-5zek69yJ7s4r","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[]},"emitted_at":1671097002002} +{"stream":"groups","data":{"id":61015239,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2/test-private-subsubg-3","name":"Test Private SubSubG 3","path":"test-private-subsubg-3","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Subgroup Airbyte / Test Private SG / Test Private SubSubG 2 / Test Private SubSubG 3","full_path":"new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2/test-private-subsubg-3","created_at":"2022-12-02T08:56:34.202Z","parent_id":61015232,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941fxQ648-7Mt4f2K11VUwm","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[]},"emitted_at":1671097002311} +{"stream":"groups","data":{"id":61014902,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg","name":"Test Public SG","path":"test-public-sg","description":"","visibility":"public","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Public SG","full_path":"new-group-airbute/test-public-sg","created_at":"2022-12-02T08:47:02.412Z","parent_id":11329647,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941iDo59yBXTTUMQUQztr_x","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":41541906,"path_with_namespace":"new-group-airbute/test-public-sg/test-public-project-1"}]},"emitted_at":1671097002935} +{"stream":"groups","data":{"id":61015202,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2/test-public-subsubg-1","name":"Test Public SubSubG 1","path":"test-public-subsubg-1","description":"","visibility":"public","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Public SG / Test SG Public 2 / Test Public SubSubG 1","full_path":"new-group-airbute/test-public-sg/test-sg-public-2/test-public-subsubg-1","created_at":"2022-12-02T08:55:27.046Z","parent_id":61014943,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941K9JsRDnw2J5ZQxgCDr6d","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[]},"emitted_at":1671097003537} +{"stream":"groups","data":{"id":61014943,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2","name":"Test SG Public 2","path":"test-sg-public-2","description":"","visibility":"public","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Public SG / Test SG Public 2","full_path":"new-group-airbute/test-public-sg/test-sg-public-2","created_at":"2022-12-02T08:48:04.727Z","parent_id":61014902,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941eGbxua89EPU8uu4snVuj","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":41541858,"path_with_namespace":"new-group-airbute/test-public-sg/test-sg-public-2/test-project-1"}]},"emitted_at":1671097003939} +{"stream":"groups","data":{"id":61014863,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte","name":"Test Subgroup Airbyte","path":"test-subgroup-airbyte","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Subgroup Airbyte","full_path":"new-group-airbute/test-subgroup-airbyte","created_at":"2022-12-02T08:45:53.479Z","parent_id":11329647,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941yL2Jtfwss88thzmUPZv5","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":41541892,"path_with_namespace":"new-group-airbute/test-subgroup-airbyte/test-project-2"}]},"emitted_at":1671097004356} +{"stream":"groups","data":{"id":11266951,"web_url":"https://gitlab.com/groups/airbyte.io","name":"airbyte.io","path":"airbyte.io","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"airbyte.io","full_path":"airbyte.io","created_at":"2021-03-10T17:16:37.549Z","parent_id":null,"ldap_cn":null,"ldap_access":null,"marked_for_deletion_on":null,"shared_with_groups":[],"runners_token":"GR1348941bzmDjXx-Cz48snUcJfK8","prevent_sharing_groups_outside_hierarchy":false,"shared_projects":[],"shared_runners_minutes_limit":10000,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":false,"membership_lock":false,"ip_restriction_ranges":null,"projects":[{"id":25156633,"path_with_namespace":"airbyte.io/ci-test-project"},{"id":25032440,"path_with_namespace":"airbyte.io/learn-gitlab"},{"id":25032439,"path_with_namespace":"airbyte.io/documentation"}]},"emitted_at":1671097004872} +{"stream":"projects","data":{"id":41541906,"description":"Project description","name":"Test Public Project 1","name_with_namespace":"New Group Airbute / Test Public SG / Test Public Project 1","path":"test-public-project-1","path_with_namespace":"new-group-airbute/test-public-sg/test-public-project-1","created_at":"2022-12-02T08:52:11.319Z","default_branch":"master","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:new-group-airbute/test-public-sg/test-public-project-1.git","http_url_to_repo":"https://gitlab.com/new-group-airbute/test-public-sg/test-public-project-1.git","web_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-public-project-1","readme_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-public-project-1/-/blob/master/README.md","avatar_url":null,"forks_count":0,"star_count":0,"last_activity_at":"2022-12-02T08:52:11.319Z","namespace":{"id":61014902,"name":"Test Public SG","path":"test-public-sg","kind":"group","full_path":"new-group-airbute/test-public-sg","parent_id":11329647,"avatar_url":null,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg"},"container_registry_image_prefix":"registry.gitlab.com/new-group-airbute/test-public-sg/test-public-project-1","_links":{"self":"https://gitlab.com/api/v4/projects/41541906","issues":"https://gitlab.com/api/v4/projects/41541906/issues","merge_requests":"https://gitlab.com/api/v4/projects/41541906/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/41541906/repository/branches","labels":"https://gitlab.com/api/v4/projects/41541906/labels","events":"https://gitlab.com/api/v4/projects/41541906/events","members":"https://gitlab.com/api/v4/projects/41541906/members","cluster_agents":"https://gitlab.com/api/v4/projects/41541906/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2022-12-03T08:52:11.354Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":false,"service_desk_address":"contact-project+new-group-airbute-test-public-sg-test-public-project-1-41541906-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"private","operations_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"enabled","feature_flags_access_level":"enabled","infrastructure_access_level":"enabled","monitor_access_level":"enabled","emails_disabled":null,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":"gitlab_project","import_status":"finished","import_error":null,"open_issues_count":0,"runners_token":"GR1348941Ni12De_sRyL6anY2uhzP","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":"","shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":1,"storage_size":209715,"repository_size":209715,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":0,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":0},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097005407} +{"stream":"projects","data":{"id":41541858,"description":"Project description","name":"Test Project 1","name_with_namespace":"New Group Airbute / Test Public SG / Test SG Public 2 / Test Project 1","path":"test-project-1","path_with_namespace":"new-group-airbute/test-public-sg/test-sg-public-2/test-project-1","created_at":"2022-12-02T08:50:08.842Z","default_branch":"master","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:new-group-airbute/test-public-sg/test-sg-public-2/test-project-1.git","http_url_to_repo":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-project-1.git","web_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-project-1","readme_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-project-1/-/blob/master/README.md","avatar_url":null,"forks_count":0,"star_count":0,"last_activity_at":"2022-12-02T08:50:08.842Z","namespace":{"id":61014943,"name":"Test SG Public 2","path":"test-sg-public-2","kind":"group","full_path":"new-group-airbute/test-public-sg/test-sg-public-2","parent_id":61014902,"avatar_url":null,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2"},"container_registry_image_prefix":"registry.gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-project-1","_links":{"self":"https://gitlab.com/api/v4/projects/41541858","issues":"https://gitlab.com/api/v4/projects/41541858/issues","merge_requests":"https://gitlab.com/api/v4/projects/41541858/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/41541858/repository/branches","labels":"https://gitlab.com/api/v4/projects/41541858/labels","events":"https://gitlab.com/api/v4/projects/41541858/events","members":"https://gitlab.com/api/v4/projects/41541858/members","cluster_agents":"https://gitlab.com/api/v4/projects/41541858/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"private","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2022-12-03T08:50:08.883Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+new-group-airbute-test-public-sg-test-sg-public-2-test-project-41541858-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"private","operations_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"enabled","feature_flags_access_level":"enabled","infrastructure_access_level":"enabled","monitor_access_level":"enabled","emails_disabled":null,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":"gitlab_project","import_status":"finished","import_error":null,"open_issues_count":0,"runners_token":"GR1348941JLqwDRN64-__uzBXcgc5","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":"","shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":false,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":1,"storage_size":125829,"repository_size":125829,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":0,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":0},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097005750} +{"stream":"projects","data":{"id":25032439,"description":null,"name":"documentation","name_with_namespace":"airbyte.io / documentation","path":"documentation","path_with_namespace":"airbyte.io/documentation","created_at":"2021-03-10T17:16:53.200Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:airbyte.io/documentation.git","http_url_to_repo":"https://gitlab.com/airbyte.io/documentation.git","web_url":"https://gitlab.com/airbyte.io/documentation","readme_url":null,"avatar_url":null,"forks_count":0,"star_count":0,"last_activity_at":"2021-03-10T17:16:53.200Z","namespace":{"id":11266951,"name":"airbyte.io","path":"airbyte.io","kind":"group","full_path":"airbyte.io","parent_id":null,"avatar_url":null,"web_url":"https://gitlab.com/groups/airbyte.io"},"container_registry_image_prefix":"registry.gitlab.com/airbyte.io/documentation","_links":{"self":"https://gitlab.com/api/v4/projects/25032439","issues":"https://gitlab.com/api/v4/projects/25032439/issues","merge_requests":"https://gitlab.com/api/v4/projects/25032439/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/25032439/repository/branches","labels":"https://gitlab.com/api/v4/projects/25032439/labels","events":"https://gitlab.com/api/v4/projects/25032439/events","members":"https://gitlab.com/api/v4/projects/25032439/members","cluster_agents":"https://gitlab.com/api/v4/projects/25032439/cluster_agents"},"packages_enabled":true,"empty_repo":true,"archived":false,"visibility":"private","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2021-03-11T17:16:53.215Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+airbyte-io-documentation-25032439-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"private","operations_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"enabled","feature_flags_access_level":"enabled","infrastructure_access_level":"enabled","monitor_access_level":"enabled","emails_disabled":null,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":0,"runners_token":"GR1348941iwELAs9x3hqVbY3Bo_q4","ci_default_git_depth":50,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":"","shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":0,"storage_size":0,"repository_size":0,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":0,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":0},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"approvals_before_merge":0,"mirror":false,"external_authorization_classification_label":"","marked_for_deletion_at":null,"marked_for_deletion_on":null,"requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"issues_template":null,"merge_requests_template":null,"merge_pipelines_enabled":false,"merge_trains_enabled":false,"permissions":{"project_access":null,"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097006202} +{"stream":"projects","data":{"id":41551658,"description":null,"name":"Test_project_in_nested_subgroup","name_with_namespace":"New Group Airbute / Test Public SG / Test SG Public 2 / Test Private SubSubG 1 / Test_project_in_nested_subgroup","path":"test_project_in_nested_subgroup","path_with_namespace":"new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup","created_at":"2022-12-02T14:26:55.282Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup.git","http_url_to_repo":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup.git","web_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup","readme_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup/-/blob/main/README.md","avatar_url":null,"forks_count":0,"star_count":0,"last_activity_at":"2022-12-02T14:26:55.282Z","namespace":{"id":61015181,"name":"Test Private SubSubG 1","path":"test-private-subsubg-1","kind":"group","full_path":"new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1","parent_id":61014943,"avatar_url":null,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1"},"container_registry_image_prefix":"registry.gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup","_links":{"self":"https://gitlab.com/api/v4/projects/41551658","issues":"https://gitlab.com/api/v4/projects/41551658/issues","merge_requests":"https://gitlab.com/api/v4/projects/41551658/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/41551658/repository/branches","labels":"https://gitlab.com/api/v4/projects/41551658/labels","events":"https://gitlab.com/api/v4/projects/41551658/events","members":"https://gitlab.com/api/v4/projects/41551658/members","cluster_agents":"https://gitlab.com/api/v4/projects/41551658/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"private","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2022-12-03T14:26:55.314Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+new-group-airbute-test-public-sg-test-sg-public-2-test-private-41551658-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"private","operations_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"enabled","feature_flags_access_level":"enabled","infrastructure_access_level":"enabled","monitor_access_level":"enabled","emails_disabled":null,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":0,"runners_token":"GR1348941hyrJGkPgfF9b5KARxqHr","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":"","shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":1,"storage_size":73400,"repository_size":73400,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":0,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":0},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":null,"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097006611} +{"stream":"projects","data":{"id":41541892,"description":"Project description","name":"Test Project 2","name_with_namespace":"New Group Airbute / Test Subgroup Airbyte / Test Project 2","path":"test-project-2","path_with_namespace":"new-group-airbute/test-subgroup-airbyte/test-project-2","created_at":"2022-12-02T08:51:27.429Z","default_branch":"master","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:new-group-airbute/test-subgroup-airbyte/test-project-2.git","http_url_to_repo":"https://gitlab.com/new-group-airbute/test-subgroup-airbyte/test-project-2.git","web_url":"https://gitlab.com/new-group-airbute/test-subgroup-airbyte/test-project-2","readme_url":"https://gitlab.com/new-group-airbute/test-subgroup-airbyte/test-project-2/-/blob/master/README.md","avatar_url":null,"forks_count":0,"star_count":0,"last_activity_at":"2022-12-02T08:51:27.429Z","namespace":{"id":61014863,"name":"Test Subgroup Airbyte","path":"test-subgroup-airbyte","kind":"group","full_path":"new-group-airbute/test-subgroup-airbyte","parent_id":11329647,"avatar_url":null,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte"},"container_registry_image_prefix":"registry.gitlab.com/new-group-airbute/test-subgroup-airbyte/test-project-2","_links":{"self":"https://gitlab.com/api/v4/projects/41541892","issues":"https://gitlab.com/api/v4/projects/41541892/issues","merge_requests":"https://gitlab.com/api/v4/projects/41541892/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/41541892/repository/branches","labels":"https://gitlab.com/api/v4/projects/41541892/labels","events":"https://gitlab.com/api/v4/projects/41541892/events","members":"https://gitlab.com/api/v4/projects/41541892/members","cluster_agents":"https://gitlab.com/api/v4/projects/41541892/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"private","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2022-12-03T08:51:27.465Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+new-group-airbute-test-subgroup-airbyte-test-project-2-41541892-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","operations_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"enabled","feature_flags_access_level":"enabled","infrastructure_access_level":"enabled","monitor_access_level":"enabled","emails_disabled":null,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":"gitlab_project","import_status":"finished","import_error":null,"open_issues_count":0,"runners_token":"GR1348941jzk79ABKrb8iMGhN9aoy","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":"","shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":false,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":1,"storage_size":2495610,"repository_size":2495610,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":0,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":0},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097007012} +{"stream":"projects","data":{"id":25032440,"description":"Learn how to use GitLab to support your software development life cycle.","name":"Learn GitLab","name_with_namespace":"airbyte.io / Learn GitLab","path":"learn-gitlab","path_with_namespace":"airbyte.io/learn-gitlab","created_at":"2021-03-10T17:16:53.553Z","default_branch":"master","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:airbyte.io/learn-gitlab.git","http_url_to_repo":"https://gitlab.com/airbyte.io/learn-gitlab.git","web_url":"https://gitlab.com/airbyte.io/learn-gitlab","readme_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/blob/master/README.md","avatar_url":"https://gitlab.com/uploads/-/system/project/avatar/25032440/Artboard.jpg","forks_count":0,"star_count":0,"last_activity_at":"2021-03-10T17:16:53.553Z","namespace":{"id":11266951,"name":"airbyte.io","path":"airbyte.io","kind":"group","full_path":"airbyte.io","parent_id":null,"avatar_url":null,"web_url":"https://gitlab.com/groups/airbyte.io"},"container_registry_image_prefix":"registry.gitlab.com/airbyte.io/learn-gitlab","_links":{"self":"https://gitlab.com/api/v4/projects/25032440","issues":"https://gitlab.com/api/v4/projects/25032440/issues","merge_requests":"https://gitlab.com/api/v4/projects/25032440/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/25032440/repository/branches","labels":"https://gitlab.com/api/v4/projects/25032440/labels","events":"https://gitlab.com/api/v4/projects/25032440/events","members":"https://gitlab.com/api/v4/projects/25032440/members","cluster_agents":"https://gitlab.com/api/v4/projects/25032440/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"private","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2021-03-11T17:16:53.565Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+airbyte-io-learn-gitlab-25032440-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"private","operations_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"enabled","feature_flags_access_level":"enabled","infrastructure_access_level":"enabled","monitor_access_level":"enabled","emails_disabled":null,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":"gitlab_project","import_status":"finished","import_error":null,"open_issues_count":12,"runners_token":"GR1348941zm9PmsyMxiKjiwpGxKtf","ci_default_git_depth":50,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":"","shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":1,"storage_size":254746,"repository_size":251658,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":0,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":3088},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"approvals_before_merge":0,"mirror":false,"external_authorization_classification_label":"","marked_for_deletion_at":null,"marked_for_deletion_on":null,"requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"issues_template":null,"merge_requests_template":null,"merge_pipelines_enabled":false,"merge_trains_enabled":false,"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097007434} +{"stream":"projects","data":{"id":25157276,"description":"","name":"New CI Test Project ","name_with_namespace":"New Group Airbute / New CI Test Project ","path":"new-ci-test-project","path_with_namespace":"new-group-airbute/new-ci-test-project","created_at":"2021-03-15T15:08:36.498Z","default_branch":"master","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:new-group-airbute/new-ci-test-project.git","http_url_to_repo":"https://gitlab.com/new-group-airbute/new-ci-test-project.git","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project","readme_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/blob/master/README.md","avatar_url":null,"forks_count":0,"star_count":0,"last_activity_at":"2022-12-13T09:39:47.235Z","namespace":{"id":11329647,"name":"New Group Airbute","path":"new-group-airbute","kind":"group","full_path":"new-group-airbute","parent_id":null,"avatar_url":null,"web_url":"https://gitlab.com/groups/new-group-airbute"},"container_registry_image_prefix":"registry.gitlab.com/new-group-airbute/new-ci-test-project","_links":{"self":"https://gitlab.com/api/v4/projects/25157276","issues":"https://gitlab.com/api/v4/projects/25157276/issues","merge_requests":"https://gitlab.com/api/v4/projects/25157276/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/25157276/repository/branches","labels":"https://gitlab.com/api/v4/projects/25157276/labels","events":"https://gitlab.com/api/v4/projects/25157276/events","members":"https://gitlab.com/api/v4/projects/25157276/members","cluster_agents":"https://gitlab.com/api/v4/projects/25157276/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"private","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2021-03-16T15:08:36.518Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+new-group-airbute-new-ci-test-project-25157276-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"private","operations_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"enabled","feature_flags_access_level":"enabled","infrastructure_access_level":"enabled","monitor_access_level":"enabled","emails_disabled":null,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":31,"runners_token":"GR1348941eMJgWDU69xyyshaNsaTZ","ci_default_git_depth":50,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":"","shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":3,"storage_size":291925,"repository_size":283115,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":8810,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":0},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097007840} +{"stream":"projects","data":{"id":25156633,"description":"","name":"CI Test Project","name_with_namespace":"airbyte.io / CI Test Project","path":"ci-test-project","path_with_namespace":"airbyte.io/ci-test-project","created_at":"2021-03-15T14:46:27.213Z","default_branch":"master","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:airbyte.io/ci-test-project.git","http_url_to_repo":"https://gitlab.com/airbyte.io/ci-test-project.git","web_url":"https://gitlab.com/airbyte.io/ci-test-project","readme_url":"https://gitlab.com/airbyte.io/ci-test-project/-/blob/master/README.md","avatar_url":null,"forks_count":0,"star_count":0,"last_activity_at":"2022-12-11T10:50:26.066Z","namespace":{"id":11266951,"name":"airbyte.io","path":"airbyte.io","kind":"group","full_path":"airbyte.io","parent_id":null,"avatar_url":null,"web_url":"https://gitlab.com/groups/airbyte.io"},"container_registry_image_prefix":"registry.gitlab.com/airbyte.io/ci-test-project","_links":{"self":"https://gitlab.com/api/v4/projects/25156633","issues":"https://gitlab.com/api/v4/projects/25156633/issues","merge_requests":"https://gitlab.com/api/v4/projects/25156633/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/25156633/repository/branches","labels":"https://gitlab.com/api/v4/projects/25156633/labels","events":"https://gitlab.com/api/v4/projects/25156633/events","members":"https://gitlab.com/api/v4/projects/25156633/members","cluster_agents":"https://gitlab.com/api/v4/projects/25156633/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"private","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2021-03-16T14:48:00.805Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":false,"jobs_enabled":true,"snippets_enabled":false,"container_registry_enabled":true,"service_desk_enabled":false,"service_desk_address":"contact-project+airbyte-io-ci-test-project-25156633-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"disabled","builds_access_level":"private","snippets_access_level":"disabled","pages_access_level":"enabled","operations_access_level":"disabled","analytics_access_level":"disabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"disabled","feature_flags_access_level":"disabled","infrastructure_access_level":"disabled","monitor_access_level":"disabled","emails_disabled":false,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":"gitlab_project","import_status":"finished","import_error":null,"open_issues_count":29,"runners_token":"GR1348941WLwrsxTacV58yxzWsvB2","ci_default_git_depth":50,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":null,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":2,"storage_size":618659,"repository_size":618659,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":0,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":0},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"approvals_before_merge":0,"mirror":false,"external_authorization_classification_label":"","marked_for_deletion_at":null,"marked_for_deletion_on":null,"requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"issues_template":null,"merge_requests_template":null,"merge_pipelines_enabled":false,"merge_trains_enabled":false,"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097008461} +{"stream":"branches","data":{"name":"master","merged":false,"protected":true,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":true,"web_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-public-project-1/-/tree/master","commit_id":"eab02a57a4774c5bf2e3921c5281bfcb34886e71","project_id":41541906},"emitted_at":1671097008957} +{"stream":"branches","data":{"name":"master","merged":false,"protected":true,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":true,"web_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-project-1/-/tree/master","commit_id":"bcdfbfd57c8f3cd6cd65998464bb71a562d49948","project_id":41541858},"emitted_at":1671097009367} +{"stream":"branches","data":{"name":"main","merged":false,"protected":true,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":true,"web_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup/-/tree/main","commit_id":"fb24e6736b3a959a59e49b56d2d83a28ea3ae15b","project_id":41551658},"emitted_at":1671097010096} +{"stream":"branches","data":{"name":"master","merged":false,"protected":true,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":true,"web_url":"https://gitlab.com/new-group-airbute/test-subgroup-airbyte/test-project-2/-/tree/master","commit_id":"a804df14057d4443439499a6152638bd5183fa92","project_id":41541892},"emitted_at":1671097010493} +{"stream":"branches","data":{"name":"master","merged":false,"protected":true,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":true,"web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/tree/master","commit_id":"baf6f136bb54dca2b2790b975fc5f39ff0471762","project_id":25032440},"emitted_at":1671097010905} +{"stream":"branches","data":{"name":"31-fake-issue-30","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/31-fake-issue-30","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097011198} +{"stream":"branches","data":{"name":"master","merged":false,"protected":true,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":true,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/master","commit_id":"6ad3dd49539391774db738c9e7b7d69f2d872c98","project_id":25157276},"emitted_at":1671097011199} +{"stream":"branches","data":{"name":"new-test-branch","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097011200} +{"stream":"branches","data":{"name":"new-test-branch-1","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-1","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097011200} +{"stream":"branches","data":{"name":"new-test-branch-10","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-10","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097011201} +{"stream":"commits","data":{"id":"fb24e6736b3a959a59e49b56d2d83a28ea3ae15b","short_id":"fb24e673","created_at":"2022-12-02T14:26:55.000+00:00","parent_ids":[],"title":"Initial commit","message":"Initial commit","author_name":"Alexander Arhipenko","author_email":"integration-test@airbyte.io","authored_date":"2022-12-02T14:26:55.000+00:00","committer_name":"Alexander Arhipenko","committer_email":"integration-test@airbyte.io","committed_date":"2022-12-02T14:26:55.000+00:00","trailers":{},"web_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup/-/commit/fb24e6736b3a959a59e49b56d2d83a28ea3ae15b","stats":{"additions":92,"deletions":0,"total":92},"project_id":41551658},"emitted_at":1671097014188} +{"stream":"commits","data":{"id":"6ad3dd49539391774db738c9e7b7d69f2d872c98","short_id":"6ad3dd49","created_at":"2021-03-18T12:51:05.000+00:00","parent_ids":["2831d897ba0214f8d3168647e8ad4232b83987ef","028c02d96f40afe9b4d1173c1d0f712dd6d07302"],"title":"Merge branch 'ykurochkin/add-fake-CI-config' into 'master'","message":"Merge branch 'ykurochkin/add-fake-CI-config' into 'master'\n\nadd fake CI config\n\nSee merge request new-group-airbute/new-ci-test-project!3","author_name":"Alexander Arhipenko","author_email":"integration-test@airbyte.io","authored_date":"2021-03-18T12:51:05.000+00:00","committer_name":"Alexander Arhipenko","committer_email":"integration-test@airbyte.io","committed_date":"2021-03-18T12:51:05.000+00:00","trailers":{},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/6ad3dd49539391774db738c9e7b7d69f2d872c98","stats":{"additions":14,"deletions":0,"total":14},"project_id":25157276},"emitted_at":1671097015406} +{"stream":"commits","data":{"id":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","short_id":"028c02d9","created_at":"2021-03-18T14:48:41.000+02:00","parent_ids":["2831d897ba0214f8d3168647e8ad4232b83987ef"],"title":"add fake CI config","message":"add fake CI config\n","author_name":"ykurochkin","author_email":"zhenia.kurochkin@gmail.com","authored_date":"2021-03-18T14:48:41.000+02:00","committer_name":"ykurochkin","committer_email":"zhenia.kurochkin@gmail.com","committed_date":"2021-03-18T14:48:41.000+02:00","trailers":{},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/028c02d96f40afe9b4d1173c1d0f712dd6d07302","stats":{"additions":14,"deletions":0,"total":14},"project_id":25157276},"emitted_at":1671097015407} +{"stream":"commits","data":{"id":"2831d897ba0214f8d3168647e8ad4232b83987ef","short_id":"2831d897","created_at":"2021-03-15T15:08:36.000+00:00","parent_ids":[],"title":"Initial commit","message":"Initial commit","author_name":"Alexander Arhipenko","author_email":"integration-test@airbyte.io","authored_date":"2021-03-15T15:08:36.000+00:00","committer_name":"Alexander Arhipenko","committer_email":"integration-test@airbyte.io","committed_date":"2021-03-15T15:08:36.000+00:00","trailers":{},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/2831d897ba0214f8d3168647e8ad4232b83987ef","stats":{"additions":2,"deletions":0,"total":2},"project_id":25157276},"emitted_at":1671097015409} +{"stream":"commits","data":{"id":"27329d3afac51fbf2762428e12f2635d1137c549","short_id":"27329d3a","created_at":"2021-02-15T15:52:52.000+00:00","parent_ids":["b362ea7aa65515dc35ff3a93423478b2143e771d"],"title":"Update README.md","message":"Update README.md","author_name":"Administrator","author_email":"admin@example.com","authored_date":"2021-02-15T15:52:52.000+00:00","committer_name":"Administrator","committer_email":"admin@example.com","committed_date":"2021-02-15T15:52:52.000+00:00","trailers":{},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/commit/27329d3afac51fbf2762428e12f2635d1137c549","stats":{"additions":6,"deletions":0,"total":6},"project_id":25156633},"emitted_at":1671097015740} +{"stream":"commits","data":{"id":"b362ea7aa65515dc35ff3a93423478b2143e771d","short_id":"b362ea7a","created_at":"2021-02-15T15:52:03.000+00:00","parent_ids":[],"title":"Initial commit","message":"Initial commit","author_name":"Administrator","author_email":"admin@example.com","authored_date":"2021-02-15T15:52:03.000+00:00","committer_name":"Administrator","committer_email":"admin@example.com","committed_date":"2021-02-15T15:52:03.000+00:00","trailers":{},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/commit/b362ea7aa65515dc35ff3a93423478b2143e771d","stats":{"additions":2,"deletions":0,"total":2},"project_id":25156633},"emitted_at":1671097015741} +{"stream":"group_issue_boards","data":{"id":5099065,"name":"Development","hide_backlog_list":false,"hide_closed_list":false,"project":null,"lists":[],"group":{"id":11329647,"web_url":"https://gitlab.com/groups/new-group-airbute","name":"New Group Airbute"},"group_id":11329647},"emitted_at":1671097016122} +{"stream":"issues","data":{"id":80659730,"iid":13,"project_id":25032440,"title":"Start a free trial of GitLab Gold - no credit card required :rocket:","description":"At any point while using the free version of GitLab you can start a trial of GitLab Gold for free for 30 days. With a GitLab Gold trial, you'll get access to all of the most popular features across all of the paid tiers within GitLab. \n \n:white_check_mark: Reduce risk by requiring team leaders to approve merge requests.\n \n:white_check_mark: Ensure code quality with Multiple code reviews.\n \n:white_check_mark: Run your CI pipelines for up to 50,000 minutes (~9,500 CI builds).\n \n:white_check_mark: Plan and organize parallel development with multiple issue boards.\n \n:white_check_mark: Report on the productivity of each team in your organization by using issue analytics. \n \n:white_check_mark: Dynamically scan Docker images for vulnerabilities before production pushes. \n \n:white_check_mark: Scan security vulnerabilities, license compliance and dependencies in your CI pipelines. \n \n:white_check_mark: Get alerted when your application performance degrades. \n \n:white_check_mark: And so much more, [you can view all the features here](https://about.gitlab.com/pricing/gitlab-com/feature-comparison/). \n \n## Next steps\n* [ ] [Click here to start a trial of GitLab Gold.](https://gitlab.com/-/trial_registrations/new?glm_content=user_onboarding_whats_in_paid_tiers&glm_source=gitlab.com)","state":"opened","created_at":"2021-03-10T17:16:56.091Z","updated_at":"2021-03-10T17:16:56.091Z","closed_at":null,"labels":["Novice"],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/13","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":1,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 1 checklist item completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/13","notes":"https://gitlab.com/api/v4/projects/25032440/issues/13/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/13/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#13","relative":"#13","full":"airbyte.io/learn-gitlab#13"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021670} +{"stream":"issues","data":{"id":80659729,"iid":12,"project_id":25032440,"title":"Using Kubernetes Clusters","description":"## Overview\nKubernetes is an open source container orchestration platform. It is designed to automate your management of application containers, from deploying and scaling to operating. Kubernetes orchestration allows you to partition as you go, scaling up and down as necessary. You can respond quickly and efficiently to customer demand while limiting hardware usage within your production environment and minimizing disruption to feature rollouts.\n\n## How you can use Kubernetes with GitLab \nDeploy GitLab on Kubernetes or use GitLab to test and deploy your software on Kubernetes.\nGitLab can be used with or within Kubernetes in three distinct ways:\n\n* [Deploy software from GitLab CI/CD pipelines to Kubernetes](https://docs.gitlab.com/ee/user/project/clusters/)\n* [Use Kubernetes to manage runners attached to your GitLab instance](https://docs.gitlab.com/runner/install/kubernetes.html)\n* [Run the GitLab application and services on a Kubernetes cluster](https://docs.gitlab.com/charts/)\n \nEach approach outlined above can be used with or without the others. For example, an Omnibus GitLab instance running on a virtual machine can deploy software stored within it to Kubernetes through a Docker runner.\n \n## Next steps\n* [ ] Review the documentation on [getting setup with Kubernetes within GitLab](https://docs.gitlab.com/ee/user/project/clusters/) along with what features are included in free.\n* [ ] Select **Projects** (in the top navigation bar) > **Your projects** > select the Project you've already created.\n* [ ] Select **Operations** (in the left sidebar) > **Kubernetes** to get started in your own project.","state":"opened","created_at":"2021-03-10T17:16:56.009Z","updated_at":"2021-03-10T17:16:56.009Z","closed_at":null,"labels":[],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/12","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":3,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 3 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/12","notes":"https://gitlab.com/api/v4/projects/25032440/issues/12/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/12/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#12","relative":"#12","full":"airbyte.io/learn-gitlab#12"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021672} +{"stream":"issues","data":{"id":80659728,"iid":11,"project_id":25032440,"title":"Using Container Registries & Docker images","description":"## Overview \nGitLab CI in conjunction with [GitLab Runner](https://docs.gitlab.com/ee/ci/runners/README.html) can use [Docker Engine](https://www.docker.com/) to test and build any application.\n \nDocker is an open source project that allows you to use predefined images to run applications in independent containers that are run within a single Linux instance. [Docker Hub](https://hub.docker.com/) has a rich database of pre-built images that can be used to test and build your applications.\n \nWhen used with GitLab Continuous Integration (CI), Docker runs each job in a separate and isolated container using the predefined image that is set up in the `.gitlab-ci.yml` file.\n \nThis makes it easier to have a simple and reproducible build environment that can also run on your workstation. The added benefit is that you can test all the commands that we will explore later from your shell, rather than having to test them on a dedicated CI server.\n \n\n\n## Next steps\n* [ ] Review the following documentation: \n * [ ] Review the documentation on [using container registries within GitLab](https://docs.gitlab.com/ee/user/packages/container_registry/).\n * [ ] Review the documentation on [using Docker images with GitLab](https://docs.gitlab.com/omnibus/docker/).\n * [ ] Review the documentation on [installing Docker within GitLab](https://docs.gitlab.com/ee/install/docker.html).\n* [ ] When you're ready, select **Projects** (in the top navigation bar) > **Your projects** > select the Project you've already created.\n* [ ] Once you've selected that project, you can select **Packages** in the left sidebar, then click **Container Registry** to get started.","state":"opened","created_at":"2021-03-10T17:16:55.928Z","updated_at":"2021-03-10T17:16:55.928Z","closed_at":null,"labels":[],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/11","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":6,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 6 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/11","notes":"https://gitlab.com/api/v4/projects/25032440/issues/11/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/11/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#11","relative":"#11","full":"airbyte.io/learn-gitlab#11"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021674} +{"stream":"issues","data":{"id":80659727,"iid":10,"project_id":25032440,"title":"Set up your profile and set your status","description":"# Set up your profile\n\nSetting up your profile helps others in your team to get to know you better. Things like your name, avatar and your role also make it easier to recognize you when collaborating with others. \n\n* :book:[Read the documentation](https://docs.gitlab.com/ee/user/profile/#profile-settings)\n\n# Set your status\n\nYou can provide a custom status message for your user profile along with an emoji that describes it. This may be helpful when you are out of office or otherwise not available. Other users can then take your status into consideration when responding to your issues or assigning work to you.\n\n* :book:[Read the documentation](https://docs.gitlab.com/ee/user/profile/#current-status)\n\n## Next steps\n\n* [ ] Click on your avatar (in the top right of the main navigation bar), then click **Settings**.\n* [ ] Choose an emoji and write something to describe your status in the **Current status** section.\n* [ ] Update your personal settings as you wish in the **Main settings** section and click on **Update profile settings** when done.\n\nAll done! :tada: Now others know who you are and what your status is.","state":"opened","created_at":"2021-03-10T17:16:55.846Z","updated_at":"2021-03-10T17:16:55.846Z","closed_at":null,"labels":["Novice"],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/10","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":3,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 3 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/10","notes":"https://gitlab.com/api/v4/projects/25032440/issues/10/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/10/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#10","relative":"#10","full":"airbyte.io/learn-gitlab#10"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021675} +{"stream":"issues","data":{"id":80659726,"iid":9,"project_id":25032440,"title":"Get to know the help resources you have access to","description":"As a free user of GitLab, you have access to multiple help resources. As GitLab is open source, we take a \"community first\" approach. We always recommend first reading the documentation and then reaching out to the community. \n \nPlease note, that the support team at GitLab is reserved for paying customers. However, if you're having account related issues (unable to log in, GDPR and so on), experience a broken feature, or experience issues with GitLab.com availability then please reference our [support page](https://support.gitlab.com/hc/en-us) on how to best get in touch with the team. \n\n## Next steps\n\n* [ ] Review the [GitLab documentation](https://docs.gitlab.com/) where you can easily search for anything and everything related to GitLab.\n* [ ] Review the [GitLab community forum](https://forum.gitlab.com/) where you can get help directly from the community. When able, GitLab employees also participate and assist in answering questions.\n* [ ] Review posts to related to [GitLab on Stack Overflow](https://stackoverflow.com/questions/tagged/gitlab). GitLab has been around since 2013 so there's a good chance someone may have already asked your question.\n* [ ] Follow [@gitlabstatus](https://twitter.com/gitlabstatus) on Twitter for status updates on GitLab.com, or check our [status page](https://status.gitlab.com/) to see if there is a known service outage.\n","state":"opened","created_at":"2021-03-10T17:16:55.760Z","updated_at":"2021-03-10T17:16:55.760Z","closed_at":null,"labels":["Novice"],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/9","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":4,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 4 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/9","notes":"https://gitlab.com/api/v4/projects/25032440/issues/9/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/9/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#9","relative":"#9","full":"airbyte.io/learn-gitlab#9"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021677} +{"stream":"issues","data":{"id":80659725,"iid":8,"project_id":25032440,"title":"What's in free and what's in the paid tiers of GitLab","description":"You can always continue to use the free version of GitLab; there is no time limit on your free account. However, it's also helpful to familiarize yourself with the features available in the paid tiers of GitLab.\n \nIf you ever want to upgrade your account, you can do so in your account's [Billing](https://gitlab.com/profile/billings) page. You can also find the GitLab billing page in your account by clicking on your avatar (in the top right of the main navigation bar), then going to **Settings > Billing**.\n \n## Next steps\n* [ ] [View the GitLab pricing page](https://about.gitlab.com/pricing/)\n* [ ] [Start a free trial of GitLab Gold](https://gitlab.com/-/trial_registrations/new?glm_content=user_onboarding_whats_in_paid_tiers&glm_source=gitlab.com)\n \n:tada: That’s it, you should now have a good sense of tiers within GitLab.","state":"opened","created_at":"2021-03-10T17:16:55.680Z","updated_at":"2021-03-10T17:16:55.680Z","closed_at":null,"labels":["Novice"],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/8","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":2,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 2 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/8","notes":"https://gitlab.com/api/v4/projects/25032440/issues/8/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/8/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#8","relative":"#8","full":"airbyte.io/learn-gitlab#8"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021679} +{"stream":"issues","data":{"id":80659724,"iid":7,"project_id":25032440,"title":"Invite a colleague","description":"GitLab becomes infinitely more valuable when you utilize it to collaborate with your team. You can manage the groups, users, and their access levels in all of your projects. You can also personalize the access level you give each user, per-project.\n\n* :book:[Read the documentation](https://docs.gitlab.com/ee/user/project/members/)\n\n## Next steps\n\n* [ ] Navigate to the project you created at the beginning of this onboarding. You can quickly access it by selecting **Projects** (in the top navigation bar), then selecting **Your projects**.\n* [ ] Click on **Settings > Members** in the left sidebar.\n* [ ] Invite a colleague by entering their email in the **GitLab member or Email address** field, then click **Invite**.\n\n:tada: That’s it, your invited colleague will now receive an invitation. \n","state":"opened","created_at":"2021-03-10T17:16:55.507Z","updated_at":"2021-03-10T17:16:55.507Z","closed_at":null,"labels":["Novice","To do"],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/7","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":3,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 3 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/7","notes":"https://gitlab.com/api/v4/projects/25032440/issues/7/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/7/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#7","relative":"#7","full":"airbyte.io/learn-gitlab#7"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021681} +{"stream":"issues","data":{"id":80659723,"iid":6,"project_id":25032440,"title":"Create a milestone","description":"Milestones in GitLab are a way to track issues and merge requests created to achieve a broader goal in a certain period of time.\n\nMilestones allow you to organize issues and merge requests into a cohesive group, with an optional start date and an optional due date. They can be used for [Agile sprints](https://docs.gitlab.com/ee/user/project/milestones/#milestones-as-agile-sprints) or as [releases](https://docs.gitlab.com/ee/user/project/milestones/#milestones-as-releases). \n\n* :book:[Read the documentation](https://docs.gitlab.com/ee/user/project/milestones/)\n\n## Next steps\n\n* [ ] Select **Projects** (in the top navigation bar) > **Your Projects** > select the Project you've already created.\n* [ ] Click on **Issues** > **Milestones** in the left sidebar.\n* [ ] You’ll land on the **Milestones** page. Click **New milestone**.\n* [ ] Once you’re on the **New milestone** page, name your milestone, add its start and end dates, then click **Create milestone**.\n\nAll done! :tada: You can now assign issues to your new milestone. You can do that from the right sidebar while viewing an issue.","state":"opened","created_at":"2021-03-10T17:16:55.414Z","updated_at":"2021-03-10T17:16:55.414Z","closed_at":null,"labels":["Novice","To do"],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/6","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":4,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 4 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/6","notes":"https://gitlab.com/api/v4/projects/25032440/issues/6/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/6/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#6","relative":"#6","full":"airbyte.io/learn-gitlab#6"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021682} +{"stream":"issues","data":{"id":80659722,"iid":5,"project_id":25032440,"title":"Submit your first Merge Request","description":"Merge requests (MR) allow you to visualize and collaborate on the proposed changes to source code that exist as commits on a given Git branch. A merge request is the basis of GitLab as a code collaboration and version control platform. It is as simple as the name implies: a request to merge one branch into another.\n\n* :book:[Read the documentation](https://docs.gitlab.com/ee/user/project/merge_requests/)\n \n## Next steps\n* [ ] Select **Projects** in the top navigation > **Your Projects** > select the Project you've already created.\n* [ ] Once you've selected that project, you can select **Merge Requests** in the left navigation.\n* [ ] On the **New Merge Request** page, start by filling in the title and description for the merge request. If there are already commits on the branch, the title will be prefilled with the first line of the first commit message, and the description will be prefilled with any additional lines in the commit message.\n* [ ] When you're ready you can submit your first MR. \n \nPro Tip: If you reference an issue in your merge request it will automatically close that issue for you :muscle: ","state":"opened","created_at":"2021-03-10T17:16:55.317Z","updated_at":"2021-03-10T17:16:55.317Z","closed_at":null,"labels":["Novice","To do"],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/5","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":4,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 4 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/5","notes":"https://gitlab.com/api/v4/projects/25032440/issues/5/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/5/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#5","relative":"#5","full":"airbyte.io/learn-gitlab#5"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021684} +{"stream":"issues","data":{"id":80659721,"iid":4,"project_id":25032440,"title":"Set up CI/CD","description":"GitLab CI/CD is a tool built into GitLab for software development through the [continuous methodologies](https://docs.gitlab.com/ee/ci/introduction/index.html#introduction-to-cicd-methodologies):\n\n* Continuous Integration (CI)\n* Continuous Delivery (CD)\n* Continuous Deployment (CD)\n \nContinuous Integration works by pushing small changes to your application’s codebase hosted in a Git repository, and, to every push, run a pipeline of scripts to build, test, and validate the code changes before merging them into the main branch.\n \nContinuous Delivery and Deployment consist of a step further CI, deploying your application to production at every push to the default branch of the repository.\n \nThese methodologies allow you to catch bugs and errors early in the development cycle, ensuring that all the code deployed to production complies with the code standards you established for your app.\n \n* :book:[Read the documentation](https://docs.gitlab.com/ee/ci/introduction/index.html)\n* :clapper:[Watch a Demo](https://www.youtube.com/watch?v=1iXFbchozdY)\n \n## Next steps\n \n* [ ] To start we recommend reviewing the following documentation:\n * [ ] [How GitLab CI/CD works.](https://docs.gitlab.com/ee/ci/introduction/index.html#how-gitlab-cicd-works)\n * [ ] [Fundamental pipeline architectures.](https://docs.gitlab.com/ee/ci/pipelines/pipeline_architectures.html)\n * [ ] [GitLab CI/CD basic workflow.](https://docs.gitlab.com/ee/ci/introduction/index.html#basic-cicd-workflow)\n * [ ] [Step-by-step guide for writing .gitlab-ci.yml for the first time.](https://docs.gitlab.com/ee/user/project/pages/getting_started_part_four.html)\n* [ ] When you're ready select **Projects** (in the top navigation bar) > **Your projects** > select the Project you've already created.\n* [ ] Select **CI / CD** in the left navigation to start setting up CI / CD in your project.","state":"opened","created_at":"2021-03-10T17:16:55.196Z","updated_at":"2021-03-10T17:16:55.196Z","closed_at":null,"labels":["Novice","To do"],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/4","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":7,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 7 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/4","notes":"https://gitlab.com/api/v4/projects/25032440/issues/4/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/4/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#4","relative":"#4","full":"airbyte.io/learn-gitlab#4"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021686} +{"stream":"jobs","data":{"id":1108959782,"status":"failed","stage":"test","name":"test-code-job2","ref":"master","tag":false,"coverage":null,"allow_failure":false,"created_at":"2021-03-18T12:51:06.294Z","started_at":"2021-03-18T12:51:07.646Z","finished_at":"2021-03-18T12:51:51.309Z","duration":43.662407,"queued_duration":1.180926,"failure_reason":"script_failure","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108959782","project":{"ci_job_token_scope_enabled":false},"artifacts":[{"file_type":"trace","size":2200,"filename":"job.log","file_format":null}],"artifacts_expire_at":null,"tag_list":[],"user_id":8375961,"pipeline_id":272632767,"runner_id":380986,"commit_id":"6ad3dd49539391774db738c9e7b7d69f2d872c98","project_id":25157276},"emitted_at":1671097027088} +{"stream":"jobs","data":{"id":1108959779,"status":"failed","stage":"test","name":"test-code-job1","ref":"master","tag":false,"coverage":null,"allow_failure":false,"created_at":"2021-03-18T12:51:06.279Z","started_at":"2021-03-18T12:51:07.943Z","finished_at":"2021-03-18T12:51:50.943Z","duration":42.999853,"queued_duration":1.349274,"failure_reason":"script_failure","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108959779","project":{"ci_job_token_scope_enabled":false},"artifacts":[{"file_type":"trace","size":2182,"filename":"job.log","file_format":null}],"artifacts_expire_at":null,"tag_list":[],"user_id":8375961,"pipeline_id":272632767,"runner_id":380987,"commit_id":"6ad3dd49539391774db738c9e7b7d69f2d872c98","project_id":25157276},"emitted_at":1671097027088} +{"stream":"jobs","data":{"id":1108952832,"status":"failed","stage":"test","name":"test-code-job2","ref":"ykurochkin/add-fake-CI-config","tag":false,"coverage":null,"allow_failure":false,"created_at":"2021-03-18T12:48:49.222Z","started_at":"2021-03-18T12:48:50.732Z","finished_at":"2021-03-18T12:49:37.961Z","duration":47.229034,"queued_duration":1.422541,"failure_reason":"script_failure","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108952832","project":{"ci_job_token_scope_enabled":false},"artifacts":[{"file_type":"trace","size":2223,"filename":"job.log","file_format":null}],"artifacts_expire_at":null,"tag_list":[],"user_id":8375961,"pipeline_id":272631271,"runner_id":44949,"commit_id":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","project_id":25157276},"emitted_at":1671097027489} +{"stream":"jobs","data":{"id":1108952831,"status":"failed","stage":"test","name":"test-code-job1","ref":"ykurochkin/add-fake-CI-config","tag":false,"coverage":null,"allow_failure":false,"created_at":"2021-03-18T12:48:49.199Z","started_at":"2021-03-18T12:48:50.064Z","finished_at":"2021-03-18T12:49:34.277Z","duration":44.212296,"queued_duration":0.735172,"failure_reason":"script_failure","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108952831","project":{"ci_job_token_scope_enabled":false},"artifacts":[{"file_type":"trace","size":2205,"filename":"job.log","file_format":null}],"artifacts_expire_at":null,"tag_list":[],"user_id":8375961,"pipeline_id":272631271,"runner_id":380987,"commit_id":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","project_id":25157276},"emitted_at":1671097027489} +{"stream":"project_milestones","data":{"id":1943705,"iid":51,"project_id":25157276,"title":"Project Milestone 51","description":null,"state":"active","created_at":"2021-03-15T15:33:16.915Z","updated_at":"2021-03-15T15:33:16.915Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/51"},"emitted_at":1671097030670} +{"stream":"project_milestones","data":{"id":1943704,"iid":50,"project_id":25157276,"title":"Project Milestone 50","description":null,"state":"active","created_at":"2021-03-15T15:33:16.329Z","updated_at":"2021-03-15T15:33:16.329Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/50"},"emitted_at":1671097030670} +{"stream":"project_milestones","data":{"id":1943703,"iid":49,"project_id":25157276,"title":"Project Milestone 49","description":null,"state":"active","created_at":"2021-03-15T15:33:15.960Z","updated_at":"2021-03-15T15:33:15.960Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/49"},"emitted_at":1671097030670} +{"stream":"project_milestones","data":{"id":1943702,"iid":48,"project_id":25157276,"title":"Project Milestone 48","description":null,"state":"active","created_at":"2021-03-15T15:33:15.604Z","updated_at":"2021-03-15T15:33:15.604Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/48"},"emitted_at":1671097030670} +{"stream":"project_milestones","data":{"id":1943701,"iid":47,"project_id":25157276,"title":"Project Milestone 47","description":null,"state":"active","created_at":"2021-03-15T15:33:15.232Z","updated_at":"2021-03-15T15:33:15.232Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/47"},"emitted_at":1671097030670} +{"stream":"project_milestones","data":{"id":1943700,"iid":46,"project_id":25157276,"title":"Project Milestone 46","description":null,"state":"active","created_at":"2021-03-15T15:33:14.860Z","updated_at":"2021-03-15T15:33:14.860Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/46"},"emitted_at":1671097030670} +{"stream":"project_milestones","data":{"id":1943699,"iid":45,"project_id":25157276,"title":"Project Milestone 45","description":null,"state":"active","created_at":"2021-03-15T15:33:14.450Z","updated_at":"2021-03-15T15:33:14.450Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/45"},"emitted_at":1671097030670} +{"stream":"project_milestones","data":{"id":1943698,"iid":44,"project_id":25157276,"title":"Project Milestone 44","description":null,"state":"active","created_at":"2021-03-15T15:33:14.042Z","updated_at":"2021-03-15T15:33:14.042Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/44"},"emitted_at":1671097030670} +{"stream":"project_milestones","data":{"id":1943697,"iid":43,"project_id":25157276,"title":"Project Milestone 43","description":null,"state":"active","created_at":"2021-03-15T15:33:13.668Z","updated_at":"2021-03-15T15:33:13.668Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/43"},"emitted_at":1671097030671} +{"stream":"project_milestones","data":{"id":1943696,"iid":42,"project_id":25157276,"title":"Project Milestone 42","description":null,"state":"active","created_at":"2021-03-15T15:33:13.240Z","updated_at":"2021-03-15T15:33:13.240Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/42"},"emitted_at":1671097030671} +{"stream":"group_milestones","data":{"id":1943775,"iid":21,"group_id":11329647,"title":"Group Milestone 21","description":null,"state":"active","created_at":"2021-03-15T16:01:02.125Z","updated_at":"2021-03-15T16:01:02.125Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/21"},"emitted_at":1671097031789} +{"stream":"group_milestones","data":{"id":1943774,"iid":20,"group_id":11329647,"title":"Group Milestone 20","description":null,"state":"active","created_at":"2021-03-15T16:01:01.682Z","updated_at":"2021-03-15T16:01:01.682Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/20"},"emitted_at":1671097031790} +{"stream":"group_milestones","data":{"id":1943773,"iid":19,"group_id":11329647,"title":"Group Milestone 19","description":null,"state":"active","created_at":"2021-03-15T16:01:01.067Z","updated_at":"2021-03-15T16:01:01.067Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/19"},"emitted_at":1671097031790} +{"stream":"group_milestones","data":{"id":1943772,"iid":18,"group_id":11329647,"title":"Group Milestone 18","description":null,"state":"active","created_at":"2021-03-15T16:01:00.572Z","updated_at":"2021-03-15T16:01:00.572Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/18"},"emitted_at":1671097031790} +{"stream":"group_milestones","data":{"id":1943771,"iid":17,"group_id":11329647,"title":"Group Milestone 17","description":null,"state":"active","created_at":"2021-03-15T16:01:00.136Z","updated_at":"2021-03-15T16:01:00.136Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/17"},"emitted_at":1671097031790} +{"stream":"group_milestones","data":{"id":1943770,"iid":16,"group_id":11329647,"title":"Group Milestone 16","description":null,"state":"active","created_at":"2021-03-15T16:00:59.507Z","updated_at":"2021-03-15T16:00:59.507Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/16"},"emitted_at":1671097031790} +{"stream":"group_milestones","data":{"id":1943769,"iid":15,"group_id":11329647,"title":"Group Milestone 15","description":null,"state":"active","created_at":"2021-03-15T16:00:59.133Z","updated_at":"2021-03-15T16:00:59.133Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/15"},"emitted_at":1671097031790} +{"stream":"group_milestones","data":{"id":1943768,"iid":14,"group_id":11329647,"title":"Group Milestone 14","description":null,"state":"active","created_at":"2021-03-15T16:00:58.763Z","updated_at":"2021-03-15T16:00:58.763Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/14"},"emitted_at":1671097031790} +{"stream":"group_milestones","data":{"id":1943767,"iid":13,"group_id":11329647,"title":"Group Milestone 13","description":null,"state":"active","created_at":"2021-03-15T16:00:58.315Z","updated_at":"2021-03-15T16:00:58.315Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/13"},"emitted_at":1671097031791} +{"stream":"group_milestones","data":{"id":1943766,"iid":12,"group_id":11329647,"title":"Group Milestone 12","description":null,"state":"active","created_at":"2021-03-15T16:00:57.929Z","updated_at":"2021-03-15T16:00:57.929Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/12"},"emitted_at":1671097031791} +{"stream":"project_members","data":{"access_level":40,"created_at":"2022-12-02T08:52:12.187Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","project_id":41541906},"emitted_at":1671097036197} +{"stream":"project_members","data":{"access_level":40,"created_at":"2022-12-02T08:50:10.348Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","project_id":41541858},"emitted_at":1671097036605} +{"stream":"project_members","data":{"access_level":40,"created_at":"2022-12-02T08:51:28.434Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","project_id":41541892},"emitted_at":1671097037460} +{"stream":"project_members","data":{"access_level":40,"created_at":"2021-03-10T17:16:54.405Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","project_id":25032440},"emitted_at":1671097037834} +{"stream":"project_members","data":{"access_level":40,"created_at":"2021-03-15T15:08:36.746Z","created_by":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","project_id":25157276},"emitted_at":1671097038138} +{"stream":"project_members","data":{"access_level":40,"created_at":"2021-03-15T14:46:31.550Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","project_id":25156633},"emitted_at":1671097038434} +{"stream":"group_members","data":{"access_level":50,"created_at":"2021-03-15T15:55:53.658Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":11329647},"emitted_at":1671097038962} +{"stream":"group_members","data":{"access_level":30,"created_at":"2021-03-15T15:55:53.998Z","created_by":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"expires_at":null,"id":7904355,"username":"y.kurochkin","name":"Yevhenii Kurochkin","state":"active","avatar_url":"https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon","web_url":"https://gitlab.com/y.kurochkin","membership_state":"active","group_id":11329647},"emitted_at":1671097038963} +{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:46:22.834Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61014882},"emitted_at":1671097039269} +{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:54:42.303Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61015181},"emitted_at":1671097039575} +{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:56:21.862Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61015232},"emitted_at":1671097039891} +{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:56:34.266Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61015239},"emitted_at":1671097040622} +{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:47:02.469Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61014902},"emitted_at":1671097041625} +{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:55:27.120Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61015202},"emitted_at":1671097042146} +{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:48:04.786Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61014943},"emitted_at":1671097042555} +{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:45:53.544Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61014863},"emitted_at":1671097043058} +{"stream":"project_labels","data":{"id":19117004,"name":"Label 1","description":null,"description_html":"","text_color":"#FFFFFF","color":"#008000","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044084} +{"stream":"project_labels","data":{"id":19117017,"name":"Label 10","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000080","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044085} +{"stream":"project_labels","data":{"id":19117018,"name":"Label 11","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808080","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044085} +{"stream":"project_labels","data":{"id":19117019,"name":"Label 12","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000000","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044086} +{"stream":"project_labels","data":{"id":19117020,"name":"Label 13","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000000","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044086} +{"stream":"project_labels","data":{"id":19117021,"name":"Label 14","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808080","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044087} +{"stream":"project_labels","data":{"id":19117022,"name":"Label 15","description":null,"description_html":"","text_color":"#FFFFFF","color":"#0000ff","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044088} +{"stream":"project_labels","data":{"id":19117023,"name":"Label 16","description":null,"description_html":"","text_color":"#333333","color":"#ffffff","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044088} +{"stream":"project_labels","data":{"id":19117024,"name":"Label 17","description":null,"description_html":"","text_color":"#FFFFFF","color":"#008000","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044089} +{"stream":"project_labels","data":{"id":19117025,"name":"Label 18","description":null,"description_html":"","text_color":"#333333","color":"#ffffff","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044089} +{"stream":"group_labels","data":{"id":19117004,"name":"Label 1","description":null,"description_html":"","text_color":"#FFFFFF","color":"#008000","subscribed":false,"group_id":11329647},"emitted_at":1671097052176} +{"stream":"group_labels","data":{"id":19117017,"name":"Label 10","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000080","subscribed":false,"group_id":11329647},"emitted_at":1671097052176} +{"stream":"group_labels","data":{"id":19117018,"name":"Label 11","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808080","subscribed":false,"group_id":11329647},"emitted_at":1671097052176} +{"stream":"group_labels","data":{"id":19117019,"name":"Label 12","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000000","subscribed":false,"group_id":11329647},"emitted_at":1671097052177} +{"stream":"group_labels","data":{"id":19117020,"name":"Label 13","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000000","subscribed":false,"group_id":11329647},"emitted_at":1671097052177} +{"stream":"group_labels","data":{"id":19117021,"name":"Label 14","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808080","subscribed":false,"group_id":11329647},"emitted_at":1671097052177} +{"stream":"group_labels","data":{"id":19117022,"name":"Label 15","description":null,"description_html":"","text_color":"#FFFFFF","color":"#0000ff","subscribed":false,"group_id":11329647},"emitted_at":1671097052177} +{"stream":"group_labels","data":{"id":19117023,"name":"Label 16","description":null,"description_html":"","text_color":"#333333","color":"#ffffff","subscribed":false,"group_id":11329647},"emitted_at":1671097052177} +{"stream":"group_labels","data":{"id":19117024,"name":"Label 17","description":null,"description_html":"","text_color":"#FFFFFF","color":"#008000","subscribed":false,"group_id":11329647},"emitted_at":1671097052177} +{"stream":"group_labels","data":{"id":19117025,"name":"Label 18","description":null,"description_html":"","text_color":"#333333","color":"#ffffff","subscribed":false,"group_id":11329647},"emitted_at":1671097052177} +{"stream":"merge_requests","data":{"id":92594931,"iid":3,"project_id":25157276,"title":"add fake CI config","description":"","state":"merged","created_at":"2021-03-18T12:49:13.091Z","updated_at":"2021-03-18T12:51:06.319Z","merge_user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"merged_at":"2021-03-18T12:51:06.470Z","closed_at":null,"target_branch":"master","source_branch":"ykurochkin/add-fake-CI-config","user_notes_count":0,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":[],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"not_open","sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","merge_commit_sha":"6ad3dd49539391774db738c9e7b7d69f2d872c98","squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!3","references":{"short":"!3","relative":"!3","full":"new-group-airbute/new-ci-test-project!3"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/3","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":8375961},"emitted_at":1671097062930} +{"stream":"merge_requests","data":{"id":92593913,"iid":2,"project_id":25157276,"title":"update readme.md","description":"","state":"opened","created_at":"2021-03-18T12:42:30.200Z","updated_at":"2021-03-18T12:42:30.200Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"ykurochkin/test-branch","user_notes_count":0,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":[],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!2","references":{"short":"!2","relative":"!2","full":"new-group-airbute/new-ci-test-project!2"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/2","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097062930} +{"stream":"merge_requests","data":{"id":92111504,"iid":1,"project_id":25157276,"title":"Draft: Resolve \"Fake Issue 30\"","description":"Closes #31","state":"opened","created_at":"2021-03-15T16:08:05.071Z","updated_at":"2021-03-15T16:08:05.071Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"31-fake-issue-30","user_notes_count":0,"upvotes":0,"downvotes":0,"assignees":[8375961],"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":["bug"],"draft":true,"work_in_progress":true,"merge_when_pipeline_succeeds":false,"merge_status":"cannot_be_merged","detailed_merge_status":"draft_status","sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!1","references":{"short":"!1","relative":"!1","full":"new-group-airbute/new-ci-test-project!1"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/1","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":true,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097062930} +{"stream":"merge_requests","data":{"id":92098762,"iid":30,"project_id":25156633,"title":"Id blanditiis consequatur ut.","description":"##### Voluptatum\nPorro et quo. Laborum molestias ducimus. Labore dolorum adipisci. Quisquam est quis. Sint accusamus maxime.\n* Veritatis. \n* Eos. \n* Adipisci. \n* Quibusdam. \n* Sint. \n* Consequuntur. \n* Hic. \n* Voluptate. \n* Velit.","state":"opened","created_at":"2021-02-15T15:55:38.117Z","updated_at":"2021-02-15T15:55:38.117Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"laudantium-unde-et-iste-et","user_notes_count":15,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["asperiores-ex","quidem-labore","sed-consequuntur"],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"d49703b85913ee7a8c85e1893057ef4cdb06ff85","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!30","references":{"short":"!30","relative":"!30","full":"airbyte.io/ci-test-project!30"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/30","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097063742} +{"stream":"merge_requests","data":{"id":92098761,"iid":29,"project_id":25156633,"title":"Fugiat aut voluptatem voluptas.","description":"###### Unde\nEligendi nemo quam. Veritatis delectus iure. Placeat ut odit. Officiis accusantium sit. Eos sequi cupiditate.\n# Eum","state":"opened","created_at":"2021-02-15T15:55:34.534Z","updated_at":"2021-02-15T15:55:34.534Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"ea-dolor-quia-et-sint","user_notes_count":4,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["earum-eaque","nisi-et","sed-voluptatem"],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"45afadfbf4eb1a9d6468950b23e8557bf72445fa","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!29","references":{"short":"!29","relative":"!29","full":"airbyte.io/ci-test-project!29"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/29","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097063743} +{"stream":"merge_requests","data":{"id":92098758,"iid":28,"project_id":25156633,"title":"Delectus sit quod repellendus.","description":"###### Corporis\nMolestias eius corrupti. Est maiores ut. Deleniti itaque deserunt. Perspiciatis quis et. Non et quia.\n### Dolorum\nNihil at et. Eligendi recusandae omnis. Eaque ratione dolorem.\n### Quam\nRem ad vel. Officiis sint voluptatem. Asperiores odit non.\n0. Hic. \n1. Labore. \n2. Voluptates. \n3. Dolores. \n4. Laborum. \n5. Non. \n6. Odit.","state":"opened","created_at":"2021-02-15T15:55:31.164Z","updated_at":"2021-02-15T15:55:31.164Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"ipsum-consequatur-et-in-et","user_notes_count":19,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["nisi-et","omnis-assumenda","ut-incidunt"],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"5b8695fe02d2856fa9e3249d757aea89832b8d2e","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!28","references":{"short":"!28","relative":"!28","full":"airbyte.io/ci-test-project!28"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/28","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097063743} +{"stream":"merge_requests","data":{"id":92098756,"iid":27,"project_id":25156633,"title":"Odio aut et rerum.","description":"##### Aut\nNon labore nemo. Architecto ullam ut. Consequatur sit aut. Qui officia consequatur. Blanditiis facilis consequatur.\n```ruby\nError.\n```","state":"opened","created_at":"2021-02-15T15:55:27.534Z","updated_at":"2021-02-15T15:55:27.534Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"sapiente-et-possimus-neque-est","user_notes_count":14,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["animi-exercitationem","ex-commodi","voluptas-officiis"],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"e604947173cd56863979030ed39bcdf7dcf8727a","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!27","references":{"short":"!27","relative":"!27","full":"airbyte.io/ci-test-project!27"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/27","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097063744} +{"stream":"merge_requests","data":{"id":92098753,"iid":26,"project_id":25156633,"title":"Nihil possimus et nulla.","description":"##### Eveniet\nVeritatis incidunt impedit. Sunt voluptas nisi. Ut quia et. Optio nihil recusandae. Eum ipsam illo.\n~Odio~ sed repudiandae. Cum consequuntur id. Quas molestias magnam.","state":"opened","created_at":"2021-02-15T15:55:24.768Z","updated_at":"2021-02-15T15:55:24.768Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"qui-in-quod-nam-voluptatem","user_notes_count":9,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["architecto-vel","in-qui","voluptatem-saepe"],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"6d473efbe556db92e5319591f393df63a3b4fa34","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!26","references":{"short":"!26","relative":"!26","full":"airbyte.io/ci-test-project!26"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/26","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097063744} +{"stream":"merge_requests","data":{"id":92098751,"iid":25,"project_id":25156633,"title":"Cum non sint explicabo.","description":"### Et\nAd omnis ab. Sint eveniet explicabo. Ut voluptatum velit. Corrupti dignissimos ipsa. Ad commodi consequatur.\n## Tenetur","state":"opened","created_at":"2021-02-15T15:55:21.303Z","updated_at":"2021-02-15T15:55:21.303Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"aut-deleniti-est-voluptatum-repellat","user_notes_count":7,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["animi-exercitationem","ex-commodi","nisi-et"],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"01a2afda641dec50caf71ec92f898f9243e357f8","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!25","references":{"short":"!25","relative":"!25","full":"airbyte.io/ci-test-project!25"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/25","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097063744} +{"stream":"merge_requests","data":{"id":92098745,"iid":24,"project_id":25156633,"title":"Dolores et cumque fuga.","description":"###### Et\nVoluptates quo modi. Ut nihil autem. Enim id sint. Reiciendis quia molestiae. Nobis sit autem.\n### Occaecati\nEt exercitationem quam. Dolor nam quia. Eius consequatur corporis.\n* Sunt. \n* Doloremque. \n* Itaque. \n* Odit. \n* Aliquam.","state":"opened","created_at":"2021-02-15T15:55:18.655Z","updated_at":"2021-02-15T15:55:18.655Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"modi-et-quam-sunt-consequatur","user_notes_count":15,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["architecto-vel","ex-commodi","odio-ut"],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"98e5e7c52ceeb55fd04d3f35bb461361770a3e79","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!24","references":{"short":"!24","relative":"!24","full":"airbyte.io/ci-test-project!24"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/24","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097063745} +{"stream":"merge_request_commits","data":{"id":92594931,"iid":3,"project_id":25157276,"title":"add fake CI config","description":"","state":"merged","created_at":"2021-03-18T12:49:13.091Z","updated_at":"2021-03-18T12:51:06.319Z","merged_by":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"merge_user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"merged_at":"2021-03-18T12:51:06.470Z","closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"ykurochkin/add-fake-CI-config","user_notes_count":0,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":[],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"not_open","sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","merge_commit_sha":"6ad3dd49539391774db738c9e7b7d69f2d872c98","squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!3","references":{"short":"!3","relative":"!3","full":"new-group-airbute/new-ci-test-project!3"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/3","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"1","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":{"id":272631271,"iid":1,"project_id":25157276,"sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","ref":"ykurochkin/add-fake-CI-config","status":"failed","source":"push","created_at":"2021-03-18T12:48:49.174Z","updated_at":"2021-03-18T12:49:38.092Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271","before_sha":"0000000000000000000000000000000000000000","tag":false,"yaml_errors":null,"user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"started_at":"2021-03-18T12:48:50.166Z","finished_at":"2021-03-18T12:49:38.084Z","committed_at":null,"duration":47,"queued_duration":null,"coverage":null,"detailed_status":{"icon":"status_failed","text":"failed","label":"failed","group":"failed","tooltip":"failed","has_details":true,"details_path":"/new-group-airbute/new-ci-test-project/-/pipelines/272631271","illustration":null,"favicon":"/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}},"diff_refs":{"base_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","head_sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","start_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":3},"emitted_at":1671097066930} +{"stream":"merge_request_commits","data":{"id":92593913,"iid":2,"project_id":25157276,"title":"update readme.md","description":"","state":"opened","created_at":"2021-03-18T12:42:30.200Z","updated_at":"2021-03-18T12:42:30.200Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"ykurochkin/test-branch","user_notes_count":0,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":[],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!2","references":{"short":"!2","relative":"!2","full":"new-group-airbute/new-ci-test-project!2"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/2","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"1","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","head_sha":"9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129","start_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":2},"emitted_at":1671097067325} +{"stream":"merge_request_commits","data":{"id":92111504,"iid":1,"project_id":25157276,"title":"Draft: Resolve \"Fake Issue 30\"","description":"Closes #31","state":"opened","created_at":"2021-03-15T16:08:05.071Z","updated_at":"2021-03-15T16:08:05.071Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"31-fake-issue-30","user_notes_count":0,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"}],"assignee":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":["bug"],"draft":true,"work_in_progress":true,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"cannot_be_merged","detailed_merge_status":"draft_status","sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!1","references":{"short":"!1","relative":"!1","full":"new-group-airbute/new-ci-test-project!1"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/1","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":true,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":null,"latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","head_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","start_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":1},"emitted_at":1671097067939} +{"stream":"merge_request_commits","data":{"id":92098762,"iid":30,"project_id":25156633,"title":"Id blanditiis consequatur ut.","description":"##### Voluptatum\nPorro et quo. Laborum molestias ducimus. Labore dolorum adipisci. Quisquam est quis. Sint accusamus maxime.\n* Veritatis. \n* Eos. \n* Adipisci. \n* Quibusdam. \n* Sint. \n* Consequuntur. \n* Hic. \n* Voluptate. \n* Velit.","state":"opened","created_at":"2021-02-15T15:55:38.117Z","updated_at":"2021-02-15T15:55:38.117Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"laudantium-unde-et-iste-et","user_notes_count":15,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["asperiores-ex","quidem-labore","sed-consequuntur"],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"d49703b85913ee7a8c85e1893057ef4cdb06ff85","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!30","references":{"short":"!30","relative":"!30","full":"airbyte.io/ci-test-project!30"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/30","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"18","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"27329d3afac51fbf2762428e12f2635d1137c549","head_sha":"d49703b85913ee7a8c85e1893057ef4cdb06ff85","start_sha":"27329d3afac51fbf2762428e12f2635d1137c549"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":30},"emitted_at":1671097068716} +{"stream":"merge_request_commits","data":{"id":92098761,"iid":29,"project_id":25156633,"title":"Fugiat aut voluptatem voluptas.","description":"###### Unde\nEligendi nemo quam. Veritatis delectus iure. Placeat ut odit. Officiis accusantium sit. Eos sequi cupiditate.\n# Eum","state":"opened","created_at":"2021-02-15T15:55:34.534Z","updated_at":"2021-02-15T15:55:34.534Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"ea-dolor-quia-et-sint","user_notes_count":4,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["earum-eaque","nisi-et","sed-voluptatem"],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"45afadfbf4eb1a9d6468950b23e8557bf72445fa","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!29","references":{"short":"!29","relative":"!29","full":"airbyte.io/ci-test-project!29"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/29","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"17","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"27329d3afac51fbf2762428e12f2635d1137c549","head_sha":"45afadfbf4eb1a9d6468950b23e8557bf72445fa","start_sha":"27329d3afac51fbf2762428e12f2635d1137c549"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":29},"emitted_at":1671097069126} +{"stream":"merge_request_commits","data":{"id":92098758,"iid":28,"project_id":25156633,"title":"Delectus sit quod repellendus.","description":"###### Corporis\nMolestias eius corrupti. Est maiores ut. Deleniti itaque deserunt. Perspiciatis quis et. Non et quia.\n### Dolorum\nNihil at et. Eligendi recusandae omnis. Eaque ratione dolorem.\n### Quam\nRem ad vel. Officiis sint voluptatem. Asperiores odit non.\n0. Hic. \n1. Labore. \n2. Voluptates. \n3. Dolores. \n4. Laborum. \n5. Non. \n6. Odit.","state":"opened","created_at":"2021-02-15T15:55:31.164Z","updated_at":"2021-02-15T15:55:31.164Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"ipsum-consequatur-et-in-et","user_notes_count":19,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["nisi-et","omnis-assumenda","ut-incidunt"],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"5b8695fe02d2856fa9e3249d757aea89832b8d2e","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!28","references":{"short":"!28","relative":"!28","full":"airbyte.io/ci-test-project!28"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/28","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"15","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"27329d3afac51fbf2762428e12f2635d1137c549","head_sha":"5b8695fe02d2856fa9e3249d757aea89832b8d2e","start_sha":"27329d3afac51fbf2762428e12f2635d1137c549"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":28},"emitted_at":1671097069577} +{"stream":"merge_request_commits","data":{"id":92098756,"iid":27,"project_id":25156633,"title":"Odio aut et rerum.","description":"##### Aut\nNon labore nemo. Architecto ullam ut. Consequatur sit aut. Qui officia consequatur. Blanditiis facilis consequatur.\n```ruby\nError.\n```","state":"opened","created_at":"2021-02-15T15:55:27.534Z","updated_at":"2021-02-15T15:55:27.534Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"sapiente-et-possimus-neque-est","user_notes_count":14,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["animi-exercitationem","ex-commodi","voluptas-officiis"],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"e604947173cd56863979030ed39bcdf7dcf8727a","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!27","references":{"short":"!27","relative":"!27","full":"airbyte.io/ci-test-project!27"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/27","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"5","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"27329d3afac51fbf2762428e12f2635d1137c549","head_sha":"e604947173cd56863979030ed39bcdf7dcf8727a","start_sha":"27329d3afac51fbf2762428e12f2635d1137c549"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":27},"emitted_at":1671097070040} +{"stream":"merge_request_commits","data":{"id":92098753,"iid":26,"project_id":25156633,"title":"Nihil possimus et nulla.","description":"##### Eveniet\nVeritatis incidunt impedit. Sunt voluptas nisi. Ut quia et. Optio nihil recusandae. Eum ipsam illo.\n~Odio~ sed repudiandae. Cum consequuntur id. Quas molestias magnam.","state":"opened","created_at":"2021-02-15T15:55:24.768Z","updated_at":"2021-02-15T15:55:24.768Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"qui-in-quod-nam-voluptatem","user_notes_count":9,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["architecto-vel","in-qui","voluptatem-saepe"],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"6d473efbe556db92e5319591f393df63a3b4fa34","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!26","references":{"short":"!26","relative":"!26","full":"airbyte.io/ci-test-project!26"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/26","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"18","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"27329d3afac51fbf2762428e12f2635d1137c549","head_sha":"6d473efbe556db92e5319591f393df63a3b4fa34","start_sha":"27329d3afac51fbf2762428e12f2635d1137c549"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":26},"emitted_at":1671097070500} +{"stream":"merge_request_commits","data":{"id":92098751,"iid":25,"project_id":25156633,"title":"Cum non sint explicabo.","description":"### Et\nAd omnis ab. Sint eveniet explicabo. Ut voluptatum velit. Corrupti dignissimos ipsa. Ad commodi consequatur.\n## Tenetur","state":"opened","created_at":"2021-02-15T15:55:21.303Z","updated_at":"2021-02-15T15:55:21.303Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"aut-deleniti-est-voluptatum-repellat","user_notes_count":7,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["animi-exercitationem","ex-commodi","nisi-et"],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"01a2afda641dec50caf71ec92f898f9243e357f8","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!25","references":{"short":"!25","relative":"!25","full":"airbyte.io/ci-test-project!25"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/25","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"5","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"27329d3afac51fbf2762428e12f2635d1137c549","head_sha":"01a2afda641dec50caf71ec92f898f9243e357f8","start_sha":"27329d3afac51fbf2762428e12f2635d1137c549"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":25},"emitted_at":1671097070917} +{"stream":"merge_request_commits","data":{"id":92098745,"iid":24,"project_id":25156633,"title":"Dolores et cumque fuga.","description":"###### Et\nVoluptates quo modi. Ut nihil autem. Enim id sint. Reiciendis quia molestiae. Nobis sit autem.\n### Occaecati\nEt exercitationem quam. Dolor nam quia. Eius consequatur corporis.\n* Sunt. \n* Doloremque. \n* Itaque. \n* Odit. \n* Aliquam.","state":"opened","created_at":"2021-02-15T15:55:18.655Z","updated_at":"2021-02-15T15:55:18.655Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"modi-et-quam-sunt-consequatur","user_notes_count":15,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["architecto-vel","ex-commodi","odio-ut"],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"98e5e7c52ceeb55fd04d3f35bb461361770a3e79","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!24","references":{"short":"!24","relative":"!24","full":"airbyte.io/ci-test-project!24"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/24","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"6","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"27329d3afac51fbf2762428e12f2635d1137c549","head_sha":"98e5e7c52ceeb55fd04d3f35bb461361770a3e79","start_sha":"27329d3afac51fbf2762428e12f2635d1137c549"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":24},"emitted_at":1671097071420} +{"stream":"releases","data":{"name":"First release","tag_name":"fake-tag-6","description":"Test Release","created_at":"2021-03-18T12:44:12.497Z","released_at":"2021-03-18T12:44:12.497Z","upcoming_release":false,"milestones":[1943704],"commit_path":"/new-group-airbute/new-ci-test-project/-/commit/2831d897ba0214f8d3168647e8ad4232b83987ef","tag_path":"/new-group-airbute/new-ci-test-project/-/tags/fake-tag-6","assets":{"count":4,"sources":[{"format":"zip","url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.zip"},{"format":"tar.gz","url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar.gz"},{"format":"tar.bz2","url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar.bz2"},{"format":"tar","url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar"}],"links":[]},"evidences":[{"sha":"a616fdca9312ca5aa451bc1060ce91a672fd24cc0f4d","filepath":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6/evidences/855895.json","collected_at":"2021-03-18T12:44:12.650Z"}],"_links":{"self":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6","edit_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6/edit"},"author_id":8375961,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097084736} +{"stream":"tags","data":{"name":"fake-tag-1","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088216} +{"stream":"tags","data":{"name":"fake-tag-10","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088216} +{"stream":"tags","data":{"name":"fake-tag-11","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088217} +{"stream":"tags","data":{"name":"fake-tag-12","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088217} +{"stream":"tags","data":{"name":"fake-tag-13","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088217} +{"stream":"tags","data":{"name":"fake-tag-14","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088217} +{"stream":"tags","data":{"name":"fake-tag-15","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088217} +{"stream":"tags","data":{"name":"fake-tag-16","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088217} +{"stream":"tags","data":{"name":"fake-tag-17","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088217} +{"stream":"tags","data":{"name":"fake-tag-18","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088217} +{"stream":"pipelines","data":{"id":272632767,"iid":2,"project_id":25157276,"sha":"6ad3dd49539391774db738c9e7b7d69f2d872c98","ref":"master","status":"failed","source":"push","created_at":"2021-03-18T12:51:06.262Z","updated_at":"2021-03-18T12:51:52.007Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272632767"},"emitted_at":1671097092622} +{"stream":"pipelines","data":{"id":272631271,"iid":1,"project_id":25157276,"sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","ref":"ykurochkin/add-fake-CI-config","status":"failed","source":"push","created_at":"2021-03-18T12:48:49.174Z","updated_at":"2021-03-18T12:49:38.092Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271"},"emitted_at":1671097092623} +{"stream":"pipelines_extended","data":{"id":272632767,"iid":2,"project_id":25157276,"sha":"6ad3dd49539391774db738c9e7b7d69f2d872c98","ref":"master","status":"failed","source":"push","created_at":"2021-03-18T12:51:06.262Z","updated_at":"2021-03-18T12:51:52.007Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272632767","before_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","tag":false,"yaml_errors":null,"user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"started_at":"2021-03-18T12:51:07.816Z","finished_at":"2021-03-18T12:51:52.000Z","committed_at":null,"duration":43,"queued_duration":1,"coverage":null,"detailed_status":{"icon":"status_failed","text":"failed","label":"failed","group":"failed","tooltip":"failed","has_details":false,"details_path":"/new-group-airbute/new-ci-test-project/-/pipelines/272632767","illustration":null,"favicon":"/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}},"emitted_at":1671097096717} +{"stream":"pipelines_extended","data":{"id":272631271,"iid":1,"project_id":25157276,"sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","ref":"ykurochkin/add-fake-CI-config","status":"failed","source":"push","created_at":"2021-03-18T12:48:49.174Z","updated_at":"2021-03-18T12:49:38.092Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271","before_sha":"0000000000000000000000000000000000000000","tag":false,"yaml_errors":null,"user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"started_at":"2021-03-18T12:48:50.166Z","finished_at":"2021-03-18T12:49:38.084Z","committed_at":null,"duration":47,"queued_duration":null,"coverage":null,"detailed_status":{"icon":"status_failed","text":"failed","label":"failed","group":"failed","tooltip":"failed","has_details":false,"details_path":"/new-group-airbute/new-ci-test-project/-/pipelines/272631271","illustration":null,"favicon":"/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}},"emitted_at":1671097097226} +{"stream":"users","data":{"id":7904355,"username":"y.kurochkin","name":"Yevhenii Kurochkin","state":"active","avatar_url":"https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon","web_url":"https://gitlab.com/y.kurochkin"},"emitted_at":1671097097941} +{"stream":"users","data":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"emitted_at":1671097097942} +{"stream":"users","data":{"id":7904355,"username":"y.kurochkin","name":"Yevhenii Kurochkin","state":"active","avatar_url":"https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon","web_url":"https://gitlab.com/y.kurochkin"},"emitted_at":1671097098354} +{"stream":"users","data":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"emitted_at":1671097098355} +{"stream":"users","data":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"emitted_at":1671097098865} +{"stream":"users","data":{"id":7904355,"username":"y.kurochkin","name":"Yevhenii Kurochkin","state":"active","avatar_url":"https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon","web_url":"https://gitlab.com/y.kurochkin"},"emitted_at":1671097099171} +{"stream":"users","data":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"emitted_at":1671097099171} +{"stream":"users","data":{"id":7904355,"username":"y.kurochkin","name":"Yevhenii Kurochkin","state":"active","avatar_url":"https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon","web_url":"https://gitlab.com/y.kurochkin"},"emitted_at":1671097099469} +{"stream":"users","data":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"emitted_at":1671097099469} +{"stream":"users","data":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"emitted_at":1671097099787} +{"stream":"epics","data":{"id":678569,"iid":1,"color":"#1068bf","text_color":"#FFFFFF","group_id":11266951,"parent_id":null,"parent_iid":null,"title":"Source Gitlab: certify to Beta","description":"Lorem ipsum","confidential":false,"start_date":"2022-12-11","start_date_is_fixed":true,"start_date_fixed":"2022-12-11","start_date_from_inherited_source":null,"start_date_from_milestones":null,"end_date":"2022-12-30","due_date":"2022-12-30","due_date_is_fixed":true,"due_date_fixed":"2022-12-30","due_date_from_inherited_source":null,"due_date_from_milestones":null,"state":"opened","web_edit_url":"/groups/airbyte.io/-/epics/1","web_url":"https://gitlab.com/groups/airbyte.io/-/epics/1","references":{"short":"&1","relative":"&1","full":"airbyte.io&1"},"created_at":"2022-12-11T10:50:04.280Z","updated_at":"2022-12-11T10:50:26.276Z","closed_at":null,"labels":[],"upvotes":1,"downvotes":0,"_links":{"self":"https://gitlab.com/api/v4/groups/11266951/epics/1","epic_issues":"https://gitlab.com/api/v4/groups/11266951/epics/1/issues","group":"https://gitlab.com/api/v4/groups/11266951","parent":null},"author_id":8375961},"emitted_at":1671097103885} +{"stream":"epic_issues","data":{"id":120214448,"iid":31,"project_id":25156633,"title":"Unit tests","description":null,"state":"opened","created_at":"2022-12-11T10:50:25.940Z","updated_at":"2022-12-11T10:50:25.940Z","closed_at":null,"closed_by":null,"labels":[],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/issues/31","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25156633/issues/31","notes":"https://gitlab.com/api/v4/projects/25156633/issues/31/notes","award_emoji":"https://gitlab.com/api/v4/projects/25156633/issues/31/award_emoji","project":"https://gitlab.com/api/v4/projects/25156633","closed_as_duplicate_of":null},"references":{"short":"#31","relative":"#31","full":"airbyte.io/ci-test-project#31"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":1,"epic":{"id":678569,"iid":1,"title":"Source Gitlab: certify to Beta","url":"/groups/airbyte.io/-/epics/1","group_id":11266951,"human_readable_end_date":"Dec 30, 2022","human_readable_timestamp":"15 days remaining"},"iteration":null,"epic_issue_id":1899479,"relative_position":0,"milestone_id":null,"assignee_id":null,"author_id":8375961},"emitted_at":1671097107527} diff --git a/airbyte-integrations/connectors/source-gitlab/integration_tests/expected_records_with_ids.txt b/airbyte-integrations/connectors/source-gitlab/integration_tests/expected_records_with_ids.txt new file mode 100644 index 000000000000..cf14e62c59e0 --- /dev/null +++ b/airbyte-integrations/connectors/source-gitlab/integration_tests/expected_records_with_ids.txt @@ -0,0 +1,112 @@ +{"stream":"groups","data":{"id":11329647,"web_url":"https://gitlab.com/groups/new-group-airbute","name":"New Group Airbute","path":"new-group-airbute","description":"","visibility":"public","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute","full_path":"new-group-airbute","created_at":"2021-03-15T15:55:53.613Z","parent_id":null,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941-PhosPap-Sf1UxL1g6m4","prevent_sharing_groups_outside_hierarchy":false,"shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":25157276,"path_with_namespace":"new-group-airbute/new-ci-test-project"}]},"emitted_at":1671097594497} +{"stream":"groups","data":{"id":61014882,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg","name":"Test Private SG","path":"test-private-sg","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Subgroup Airbyte / Test Private SG","full_path":"new-group-airbute/test-subgroup-airbyte/test-private-sg","created_at":"2022-12-02T08:46:22.648Z","parent_id":61014863,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941bjUaJQy2zzar-JmNBjfq","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[]},"emitted_at":1671097595098} +{"stream":"groups","data":{"id":61015181,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1","name":"Test Private SubSubG 1","path":"test-private-subsubg-1","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Public SG / Test SG Public 2 / Test Private SubSubG 1","full_path":"new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1","created_at":"2022-12-02T08:54:42.252Z","parent_id":61014943,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941x8xQf6K-UvnnyJ-bcut4","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":41551658,"path_with_namespace":"new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup"}]},"emitted_at":1671097595520} +{"stream":"groups","data":{"id":61015232,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2","name":"Test Private SubSubG 2","path":"test-private-subsubg-2","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Subgroup Airbyte / Test Private SG / Test Private SubSubG 2","full_path":"new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2","created_at":"2022-12-02T08:56:21.783Z","parent_id":61014882,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941bnTmxzY-5zek69yJ7s4r","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[]},"emitted_at":1671097595858} +{"stream":"groups","data":{"id":61015239,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2/test-private-subsubg-3","name":"Test Private SubSubG 3","path":"test-private-subsubg-3","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Subgroup Airbyte / Test Private SG / Test Private SubSubG 2 / Test Private SubSubG 3","full_path":"new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2/test-private-subsubg-3","created_at":"2022-12-02T08:56:34.202Z","parent_id":61015232,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941fxQ648-7Mt4f2K11VUwm","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[]},"emitted_at":1671097596233} +{"stream":"groups","data":{"id":61014902,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg","name":"Test Public SG","path":"test-public-sg","description":"","visibility":"public","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Public SG","full_path":"new-group-airbute/test-public-sg","created_at":"2022-12-02T08:47:02.412Z","parent_id":11329647,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941iDo59yBXTTUMQUQztr_x","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":41541906,"path_with_namespace":"new-group-airbute/test-public-sg/test-public-project-1"}]},"emitted_at":1671097596646} +{"stream":"groups","data":{"id":61015202,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2/test-public-subsubg-1","name":"Test Public SubSubG 1","path":"test-public-subsubg-1","description":"","visibility":"public","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Public SG / Test SG Public 2 / Test Public SubSubG 1","full_path":"new-group-airbute/test-public-sg/test-sg-public-2/test-public-subsubg-1","created_at":"2022-12-02T08:55:27.046Z","parent_id":61014943,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941K9JsRDnw2J5ZQxgCDr6d","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[]},"emitted_at":1671097597175} +{"stream":"groups","data":{"id":61014943,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2","name":"Test SG Public 2","path":"test-sg-public-2","description":"","visibility":"public","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Public SG / Test SG Public 2","full_path":"new-group-airbute/test-public-sg/test-sg-public-2","created_at":"2022-12-02T08:48:04.727Z","parent_id":61014902,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941eGbxua89EPU8uu4snVuj","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":41541858,"path_with_namespace":"new-group-airbute/test-public-sg/test-sg-public-2/test-project-1"}]},"emitted_at":1671097597574} +{"stream":"groups","data":{"id":61014863,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte","name":"Test Subgroup Airbyte","path":"test-subgroup-airbyte","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Subgroup Airbyte","full_path":"new-group-airbute/test-subgroup-airbyte","created_at":"2022-12-02T08:45:53.479Z","parent_id":11329647,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941yL2Jtfwss88thzmUPZv5","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":41541892,"path_with_namespace":"new-group-airbute/test-subgroup-airbyte/test-project-2"}]},"emitted_at":1671097597969} +{"stream":"projects","data":{"id":25157276,"description":"","name":"New CI Test Project ","name_with_namespace":"New Group Airbute / New CI Test Project ","path":"new-ci-test-project","path_with_namespace":"new-group-airbute/new-ci-test-project","created_at":"2021-03-15T15:08:36.498Z","default_branch":"master","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:new-group-airbute/new-ci-test-project.git","http_url_to_repo":"https://gitlab.com/new-group-airbute/new-ci-test-project.git","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project","readme_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/blob/master/README.md","avatar_url":null,"forks_count":0,"star_count":0,"last_activity_at":"2022-12-13T09:39:47.235Z","namespace":{"id":11329647,"name":"New Group Airbute","path":"new-group-airbute","kind":"group","full_path":"new-group-airbute","parent_id":null,"avatar_url":null,"web_url":"https://gitlab.com/groups/new-group-airbute"},"container_registry_image_prefix":"registry.gitlab.com/new-group-airbute/new-ci-test-project","_links":{"self":"https://gitlab.com/api/v4/projects/25157276","issues":"https://gitlab.com/api/v4/projects/25157276/issues","merge_requests":"https://gitlab.com/api/v4/projects/25157276/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/25157276/repository/branches","labels":"https://gitlab.com/api/v4/projects/25157276/labels","events":"https://gitlab.com/api/v4/projects/25157276/events","members":"https://gitlab.com/api/v4/projects/25157276/members","cluster_agents":"https://gitlab.com/api/v4/projects/25157276/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"private","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2021-03-16T15:08:36.518Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+new-group-airbute-new-ci-test-project-25157276-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"private","operations_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"enabled","feature_flags_access_level":"enabled","infrastructure_access_level":"enabled","monitor_access_level":"enabled","emails_disabled":null,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":31,"runners_token":"GR1348941eMJgWDU69xyyshaNsaTZ","ci_default_git_depth":50,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":"","shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":3,"storage_size":291925,"repository_size":283115,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":8810,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":0},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097598417} +{"stream":"branches","data":{"name":"31-fake-issue-30","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/31-fake-issue-30","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599045} +{"stream":"branches","data":{"name":"master","merged":false,"protected":true,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":true,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/master","commit_id":"6ad3dd49539391774db738c9e7b7d69f2d872c98","project_id":25157276},"emitted_at":1671097599045} +{"stream":"branches","data":{"name":"new-test-branch","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599046} +{"stream":"branches","data":{"name":"new-test-branch-1","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-1","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599046} +{"stream":"branches","data":{"name":"new-test-branch-10","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-10","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599047} +{"stream":"branches","data":{"name":"new-test-branch-11","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-11","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599047} +{"stream":"branches","data":{"name":"new-test-branch-12","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-12","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599048} +{"stream":"branches","data":{"name":"new-test-branch-13","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-13","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599049} +{"stream":"branches","data":{"name":"new-test-branch-14","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-14","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599049} +{"stream":"branches","data":{"name":"new-test-branch-15","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-15","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599050} +{"stream":"commits","data":{"id":"6ad3dd49539391774db738c9e7b7d69f2d872c98","short_id":"6ad3dd49","created_at":"2021-03-18T12:51:05.000+00:00","parent_ids":["2831d897ba0214f8d3168647e8ad4232b83987ef","028c02d96f40afe9b4d1173c1d0f712dd6d07302"],"title":"Merge branch 'ykurochkin/add-fake-CI-config' into 'master'","message":"Merge branch 'ykurochkin/add-fake-CI-config' into 'master'\n\nadd fake CI config\n\nSee merge request new-group-airbute/new-ci-test-project!3","author_name":"Alexander Arhipenko","author_email":"integration-test@airbyte.io","authored_date":"2021-03-18T12:51:05.000+00:00","committer_name":"Alexander Arhipenko","committer_email":"integration-test@airbyte.io","committed_date":"2021-03-18T12:51:05.000+00:00","trailers":{},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/6ad3dd49539391774db738c9e7b7d69f2d872c98","stats":{"additions":14,"deletions":0,"total":14},"project_id":25157276},"emitted_at":1671097600019} +{"stream":"commits","data":{"id":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","short_id":"028c02d9","created_at":"2021-03-18T14:48:41.000+02:00","parent_ids":["2831d897ba0214f8d3168647e8ad4232b83987ef"],"title":"add fake CI config","message":"add fake CI config\n","author_name":"ykurochkin","author_email":"zhenia.kurochkin@gmail.com","authored_date":"2021-03-18T14:48:41.000+02:00","committer_name":"ykurochkin","committer_email":"zhenia.kurochkin@gmail.com","committed_date":"2021-03-18T14:48:41.000+02:00","trailers":{},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/028c02d96f40afe9b4d1173c1d0f712dd6d07302","stats":{"additions":14,"deletions":0,"total":14},"project_id":25157276},"emitted_at":1671097600020} +{"stream":"commits","data":{"id":"2831d897ba0214f8d3168647e8ad4232b83987ef","short_id":"2831d897","created_at":"2021-03-15T15:08:36.000+00:00","parent_ids":[],"title":"Initial commit","message":"Initial commit","author_name":"Alexander Arhipenko","author_email":"integration-test@airbyte.io","authored_date":"2021-03-15T15:08:36.000+00:00","committer_name":"Alexander Arhipenko","committer_email":"integration-test@airbyte.io","committed_date":"2021-03-15T15:08:36.000+00:00","trailers":{},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/2831d897ba0214f8d3168647e8ad4232b83987ef","stats":{"additions":2,"deletions":0,"total":2},"project_id":25157276},"emitted_at":1671097600020} +{"stream":"group_issue_boards","data":{"id":5099065,"name":"Development","hide_backlog_list":false,"hide_closed_list":false,"project":null,"lists":[],"group":{"id":11329647,"web_url":"https://gitlab.com/groups/new-group-airbute","name":"New Group Airbute"},"group_id":11329647},"emitted_at":1671097600422} +{"stream":"issues","data":{"id":80943819,"iid":32,"project_id":25157276,"title":"Fake Issue 31","description":null,"state":"opened","created_at":"2021-03-15T15:22:42.206Z","updated_at":"2021-03-15T15:22:42.206Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/32","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/32","notes":"https://gitlab.com/api/v4/projects/25157276/issues/32/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/32/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#32","relative":"#32","full":"new-group-airbute/new-ci-test-project#32"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604219} +{"stream":"issues","data":{"id":80943818,"iid":31,"project_id":25157276,"title":"Fake Issue 30","description":null,"state":"opened","created_at":"2021-03-15T15:22:41.337Z","updated_at":"2021-03-15T16:08:06.041Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":1,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/31","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/31","notes":"https://gitlab.com/api/v4/projects/25157276/issues/31/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/31/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#31","relative":"#31","full":"new-group-airbute/new-ci-test-project#31"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604220} +{"stream":"issues","data":{"id":80943817,"iid":30,"project_id":25157276,"title":"Fake Issue 29","description":null,"state":"opened","created_at":"2021-03-15T15:22:40.529Z","updated_at":"2021-03-15T15:22:40.529Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/30","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/30","notes":"https://gitlab.com/api/v4/projects/25157276/issues/30/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/30/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#30","relative":"#30","full":"new-group-airbute/new-ci-test-project#30"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604222} +{"stream":"issues","data":{"id":80943816,"iid":29,"project_id":25157276,"title":"Fake Issue 28","description":null,"state":"opened","created_at":"2021-03-15T15:22:39.860Z","updated_at":"2021-03-15T15:22:39.860Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/29","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/29","notes":"https://gitlab.com/api/v4/projects/25157276/issues/29/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/29/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#29","relative":"#29","full":"new-group-airbute/new-ci-test-project#29"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604223} +{"stream":"issues","data":{"id":80943815,"iid":28,"project_id":25157276,"title":"Fake Issue 27","description":null,"state":"opened","created_at":"2021-03-15T15:22:39.204Z","updated_at":"2021-03-15T15:22:39.204Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/28","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/28","notes":"https://gitlab.com/api/v4/projects/25157276/issues/28/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/28/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#28","relative":"#28","full":"new-group-airbute/new-ci-test-project#28"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604224} +{"stream":"issues","data":{"id":80943813,"iid":27,"project_id":25157276,"title":"Fake Issue 26","description":null,"state":"opened","created_at":"2021-03-15T15:22:38.528Z","updated_at":"2021-03-15T15:22:38.528Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/27","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/27","notes":"https://gitlab.com/api/v4/projects/25157276/issues/27/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/27/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#27","relative":"#27","full":"new-group-airbute/new-ci-test-project#27"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604225} +{"stream":"issues","data":{"id":80943812,"iid":26,"project_id":25157276,"title":"Fake Issue 25","description":null,"state":"opened","created_at":"2021-03-15T15:22:37.864Z","updated_at":"2021-03-15T15:22:37.864Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/26","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/26","notes":"https://gitlab.com/api/v4/projects/25157276/issues/26/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/26/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#26","relative":"#26","full":"new-group-airbute/new-ci-test-project#26"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604226} +{"stream":"issues","data":{"id":80943811,"iid":25,"project_id":25157276,"title":"Fake Issue 24","description":null,"state":"opened","created_at":"2021-03-15T15:22:37.282Z","updated_at":"2021-03-15T15:22:37.282Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/25","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/25","notes":"https://gitlab.com/api/v4/projects/25157276/issues/25/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/25/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#25","relative":"#25","full":"new-group-airbute/new-ci-test-project#25"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604227} +{"stream":"issues","data":{"id":80943809,"iid":24,"project_id":25157276,"title":"Fake Issue 23","description":null,"state":"opened","created_at":"2021-03-15T15:22:36.708Z","updated_at":"2021-03-15T15:22:36.708Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/24","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/24","notes":"https://gitlab.com/api/v4/projects/25157276/issues/24/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/24/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#24","relative":"#24","full":"new-group-airbute/new-ci-test-project#24"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604229} +{"stream":"issues","data":{"id":80943805,"iid":23,"project_id":25157276,"title":"Fake Issue 22","description":null,"state":"opened","created_at":"2021-03-15T15:22:36.131Z","updated_at":"2021-03-15T15:22:36.131Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/23","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/23","notes":"https://gitlab.com/api/v4/projects/25157276/issues/23/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/23/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#23","relative":"#23","full":"new-group-airbute/new-ci-test-project#23"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604230} +{"stream":"jobs","data":{"id":1108959782,"status":"failed","stage":"test","name":"test-code-job2","ref":"master","tag":false,"coverage":null,"allow_failure":false,"created_at":"2021-03-18T12:51:06.294Z","started_at":"2021-03-18T12:51:07.646Z","finished_at":"2021-03-18T12:51:51.309Z","duration":43.662407,"queued_duration":1.180926,"failure_reason":"script_failure","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108959782","project":{"ci_job_token_scope_enabled":false},"artifacts":[{"file_type":"trace","size":2200,"filename":"job.log","file_format":null}],"artifacts_expire_at":null,"tag_list":[],"user_id":8375961,"pipeline_id":272632767,"runner_id":380986,"commit_id":"6ad3dd49539391774db738c9e7b7d69f2d872c98","project_id":25157276},"emitted_at":1671097605240} +{"stream":"jobs","data":{"id":1108959779,"status":"failed","stage":"test","name":"test-code-job1","ref":"master","tag":false,"coverage":null,"allow_failure":false,"created_at":"2021-03-18T12:51:06.279Z","started_at":"2021-03-18T12:51:07.943Z","finished_at":"2021-03-18T12:51:50.943Z","duration":42.999853,"queued_duration":1.349274,"failure_reason":"script_failure","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108959779","project":{"ci_job_token_scope_enabled":false},"artifacts":[{"file_type":"trace","size":2182,"filename":"job.log","file_format":null}],"artifacts_expire_at":null,"tag_list":[],"user_id":8375961,"pipeline_id":272632767,"runner_id":380987,"commit_id":"6ad3dd49539391774db738c9e7b7d69f2d872c98","project_id":25157276},"emitted_at":1671097605240} +{"stream":"jobs","data":{"id":1108952832,"status":"failed","stage":"test","name":"test-code-job2","ref":"ykurochkin/add-fake-CI-config","tag":false,"coverage":null,"allow_failure":false,"created_at":"2021-03-18T12:48:49.222Z","started_at":"2021-03-18T12:48:50.732Z","finished_at":"2021-03-18T12:49:37.961Z","duration":47.229034,"queued_duration":1.422541,"failure_reason":"script_failure","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108952832","project":{"ci_job_token_scope_enabled":false},"artifacts":[{"file_type":"trace","size":2223,"filename":"job.log","file_format":null}],"artifacts_expire_at":null,"tag_list":[],"user_id":8375961,"pipeline_id":272631271,"runner_id":44949,"commit_id":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","project_id":25157276},"emitted_at":1671097605756} +{"stream":"jobs","data":{"id":1108952831,"status":"failed","stage":"test","name":"test-code-job1","ref":"ykurochkin/add-fake-CI-config","tag":false,"coverage":null,"allow_failure":false,"created_at":"2021-03-18T12:48:49.199Z","started_at":"2021-03-18T12:48:50.064Z","finished_at":"2021-03-18T12:49:34.277Z","duration":44.212296,"queued_duration":0.735172,"failure_reason":"script_failure","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108952831","project":{"ci_job_token_scope_enabled":false},"artifacts":[{"file_type":"trace","size":2205,"filename":"job.log","file_format":null}],"artifacts_expire_at":null,"tag_list":[],"user_id":8375961,"pipeline_id":272631271,"runner_id":380987,"commit_id":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","project_id":25157276},"emitted_at":1671097605757} +{"stream":"project_milestones","data":{"id":1943705,"iid":51,"project_id":25157276,"title":"Project Milestone 51","description":null,"state":"active","created_at":"2021-03-15T15:33:16.915Z","updated_at":"2021-03-15T15:33:16.915Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/51"},"emitted_at":1671097606183} +{"stream":"project_milestones","data":{"id":1943704,"iid":50,"project_id":25157276,"title":"Project Milestone 50","description":null,"state":"active","created_at":"2021-03-15T15:33:16.329Z","updated_at":"2021-03-15T15:33:16.329Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/50"},"emitted_at":1671097606183} +{"stream":"project_milestones","data":{"id":1943703,"iid":49,"project_id":25157276,"title":"Project Milestone 49","description":null,"state":"active","created_at":"2021-03-15T15:33:15.960Z","updated_at":"2021-03-15T15:33:15.960Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/49"},"emitted_at":1671097606183} +{"stream":"project_milestones","data":{"id":1943702,"iid":48,"project_id":25157276,"title":"Project Milestone 48","description":null,"state":"active","created_at":"2021-03-15T15:33:15.604Z","updated_at":"2021-03-15T15:33:15.604Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/48"},"emitted_at":1671097606183} +{"stream":"project_milestones","data":{"id":1943701,"iid":47,"project_id":25157276,"title":"Project Milestone 47","description":null,"state":"active","created_at":"2021-03-15T15:33:15.232Z","updated_at":"2021-03-15T15:33:15.232Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/47"},"emitted_at":1671097606184} +{"stream":"project_milestones","data":{"id":1943700,"iid":46,"project_id":25157276,"title":"Project Milestone 46","description":null,"state":"active","created_at":"2021-03-15T15:33:14.860Z","updated_at":"2021-03-15T15:33:14.860Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/46"},"emitted_at":1671097606184} +{"stream":"project_milestones","data":{"id":1943699,"iid":45,"project_id":25157276,"title":"Project Milestone 45","description":null,"state":"active","created_at":"2021-03-15T15:33:14.450Z","updated_at":"2021-03-15T15:33:14.450Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/45"},"emitted_at":1671097606184} +{"stream":"project_milestones","data":{"id":1943698,"iid":44,"project_id":25157276,"title":"Project Milestone 44","description":null,"state":"active","created_at":"2021-03-15T15:33:14.042Z","updated_at":"2021-03-15T15:33:14.042Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/44"},"emitted_at":1671097606184} +{"stream":"project_milestones","data":{"id":1943697,"iid":43,"project_id":25157276,"title":"Project Milestone 43","description":null,"state":"active","created_at":"2021-03-15T15:33:13.668Z","updated_at":"2021-03-15T15:33:13.668Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/43"},"emitted_at":1671097606184} +{"stream":"project_milestones","data":{"id":1943696,"iid":42,"project_id":25157276,"title":"Project Milestone 42","description":null,"state":"active","created_at":"2021-03-15T15:33:13.240Z","updated_at":"2021-03-15T15:33:13.240Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/42"},"emitted_at":1671097606185} +{"stream":"group_milestones","data":{"id":1943775,"iid":21,"group_id":11329647,"title":"Group Milestone 21","description":null,"state":"active","created_at":"2021-03-15T16:01:02.125Z","updated_at":"2021-03-15T16:01:02.125Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/21"},"emitted_at":1671097606976} +{"stream":"group_milestones","data":{"id":1943774,"iid":20,"group_id":11329647,"title":"Group Milestone 20","description":null,"state":"active","created_at":"2021-03-15T16:01:01.682Z","updated_at":"2021-03-15T16:01:01.682Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/20"},"emitted_at":1671097606976} +{"stream":"group_milestones","data":{"id":1943773,"iid":19,"group_id":11329647,"title":"Group Milestone 19","description":null,"state":"active","created_at":"2021-03-15T16:01:01.067Z","updated_at":"2021-03-15T16:01:01.067Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/19"},"emitted_at":1671097606977} +{"stream":"group_milestones","data":{"id":1943772,"iid":18,"group_id":11329647,"title":"Group Milestone 18","description":null,"state":"active","created_at":"2021-03-15T16:01:00.572Z","updated_at":"2021-03-15T16:01:00.572Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/18"},"emitted_at":1671097606977} +{"stream":"group_milestones","data":{"id":1943771,"iid":17,"group_id":11329647,"title":"Group Milestone 17","description":null,"state":"active","created_at":"2021-03-15T16:01:00.136Z","updated_at":"2021-03-15T16:01:00.136Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/17"},"emitted_at":1671097606977} +{"stream":"group_milestones","data":{"id":1943770,"iid":16,"group_id":11329647,"title":"Group Milestone 16","description":null,"state":"active","created_at":"2021-03-15T16:00:59.507Z","updated_at":"2021-03-15T16:00:59.507Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/16"},"emitted_at":1671097606977} +{"stream":"group_milestones","data":{"id":1943769,"iid":15,"group_id":11329647,"title":"Group Milestone 15","description":null,"state":"active","created_at":"2021-03-15T16:00:59.133Z","updated_at":"2021-03-15T16:00:59.133Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/15"},"emitted_at":1671097606977} +{"stream":"group_milestones","data":{"id":1943768,"iid":14,"group_id":11329647,"title":"Group Milestone 14","description":null,"state":"active","created_at":"2021-03-15T16:00:58.763Z","updated_at":"2021-03-15T16:00:58.763Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/14"},"emitted_at":1671097606977} +{"stream":"group_milestones","data":{"id":1943767,"iid":13,"group_id":11329647,"title":"Group Milestone 13","description":null,"state":"active","created_at":"2021-03-15T16:00:58.315Z","updated_at":"2021-03-15T16:00:58.315Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/13"},"emitted_at":1671097606977} +{"stream":"group_milestones","data":{"id":1943766,"iid":12,"group_id":11329647,"title":"Group Milestone 12","description":null,"state":"active","created_at":"2021-03-15T16:00:57.929Z","updated_at":"2021-03-15T16:00:57.929Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/12"},"emitted_at":1671097606978} +{"stream":"project_members","data":{"access_level":40,"created_at":"2021-03-15T15:08:36.746Z","created_by":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","project_id":25157276},"emitted_at":1671097610604} +{"stream":"group_members","data":{"access_level":50,"created_at":"2021-03-15T15:55:53.658Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":11329647},"emitted_at":1671097611277} +{"stream":"group_members","data":{"access_level":30,"created_at":"2021-03-15T15:55:53.998Z","created_by":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"expires_at":null,"id":7904355,"username":"y.kurochkin","name":"Yevhenii Kurochkin","state":"active","avatar_url":"https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon","web_url":"https://gitlab.com/y.kurochkin","membership_state":"active","group_id":11329647},"emitted_at":1671097611278} +{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:46:22.834Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61014882},"emitted_at":1671097611565} +{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:54:42.303Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61015181},"emitted_at":1671097611853} +{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:56:21.862Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61015232},"emitted_at":1671097612136} +{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:56:34.266Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61015239},"emitted_at":1671097612458} +{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:47:02.469Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61014902},"emitted_at":1671097612758} +{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:55:27.120Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61015202},"emitted_at":1671097613023} +{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:48:04.786Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61014943},"emitted_at":1671097613325} +{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:45:53.544Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61014863},"emitted_at":1671097613741} +{"stream":"project_labels","data":{"id":19116944,"name":"Label 1","description":null,"description_html":"","text_color":"#333333","color":"#ffff00","subscribed":false,"priority":null,"is_project_label":true,"project_id":25157276},"emitted_at":1671097614434} +{"stream":"project_labels","data":{"id":19117004,"name":"Label 1","description":null,"description_html":"","text_color":"#FFFFFF","color":"#008000","subscribed":false,"priority":null,"is_project_label":false,"project_id":25157276},"emitted_at":1671097614434} +{"stream":"project_labels","data":{"id":19116954,"name":"Label 10","description":null,"description_html":"","text_color":"#333333","color":"#ff00ff","subscribed":false,"priority":null,"is_project_label":true,"project_id":25157276},"emitted_at":1671097614434} +{"stream":"project_labels","data":{"id":19117017,"name":"Label 10","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000080","subscribed":false,"priority":null,"is_project_label":false,"project_id":25157276},"emitted_at":1671097614434} +{"stream":"project_labels","data":{"id":19116955,"name":"Label 11","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808000","subscribed":false,"priority":null,"is_project_label":true,"project_id":25157276},"emitted_at":1671097614434} +{"stream":"project_labels","data":{"id":19117018,"name":"Label 11","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808080","subscribed":false,"priority":null,"is_project_label":false,"project_id":25157276},"emitted_at":1671097614434} +{"stream":"project_labels","data":{"id":19116956,"name":"Label 12","description":null,"description_html":"","text_color":"#FFFFFF","color":"#ff0000","subscribed":false,"priority":null,"is_project_label":true,"project_id":25157276},"emitted_at":1671097614434} +{"stream":"project_labels","data":{"id":19117019,"name":"Label 12","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000000","subscribed":false,"priority":null,"is_project_label":false,"project_id":25157276},"emitted_at":1671097614435} +{"stream":"project_labels","data":{"id":19117020,"name":"Label 13","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000000","subscribed":false,"priority":null,"is_project_label":false,"project_id":25157276},"emitted_at":1671097614435} +{"stream":"project_labels","data":{"id":19116957,"name":"Label 13","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808000","subscribed":false,"priority":null,"is_project_label":true,"project_id":25157276},"emitted_at":1671097614435} +{"stream":"group_labels","data":{"id":19117004,"name":"Label 1","description":null,"description_html":"","text_color":"#FFFFFF","color":"#008000","subscribed":false,"group_id":11329647},"emitted_at":1671097615792} +{"stream":"group_labels","data":{"id":19117017,"name":"Label 10","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000080","subscribed":false,"group_id":11329647},"emitted_at":1671097615793} +{"stream":"group_labels","data":{"id":19117018,"name":"Label 11","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808080","subscribed":false,"group_id":11329647},"emitted_at":1671097615793} +{"stream":"group_labels","data":{"id":19117019,"name":"Label 12","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000000","subscribed":false,"group_id":11329647},"emitted_at":1671097615793} +{"stream":"group_labels","data":{"id":19117020,"name":"Label 13","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000000","subscribed":false,"group_id":11329647},"emitted_at":1671097615793} +{"stream":"group_labels","data":{"id":19117021,"name":"Label 14","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808080","subscribed":false,"group_id":11329647},"emitted_at":1671097615793} +{"stream":"group_labels","data":{"id":19117022,"name":"Label 15","description":null,"description_html":"","text_color":"#FFFFFF","color":"#0000ff","subscribed":false,"group_id":11329647},"emitted_at":1671097615793} +{"stream":"group_labels","data":{"id":19117023,"name":"Label 16","description":null,"description_html":"","text_color":"#333333","color":"#ffffff","subscribed":false,"group_id":11329647},"emitted_at":1671097615793} +{"stream":"group_labels","data":{"id":19117024,"name":"Label 17","description":null,"description_html":"","text_color":"#FFFFFF","color":"#008000","subscribed":false,"group_id":11329647},"emitted_at":1671097615794} +{"stream":"group_labels","data":{"id":19117025,"name":"Label 18","description":null,"description_html":"","text_color":"#333333","color":"#ffffff","subscribed":false,"group_id":11329647},"emitted_at":1671097615794} +{"stream":"merge_requests","data":{"id":92594931,"iid":3,"project_id":25157276,"title":"add fake CI config","description":"","state":"merged","created_at":"2021-03-18T12:49:13.091Z","updated_at":"2021-03-18T12:51:06.319Z","merge_user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"merged_at":"2021-03-18T12:51:06.470Z","closed_at":null,"target_branch":"master","source_branch":"ykurochkin/add-fake-CI-config","user_notes_count":0,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":[],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"not_open","sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","merge_commit_sha":"6ad3dd49539391774db738c9e7b7d69f2d872c98","squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!3","references":{"short":"!3","relative":"!3","full":"new-group-airbute/new-ci-test-project!3"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/3","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":8375961},"emitted_at":1671097624183} +{"stream":"merge_requests","data":{"id":92593913,"iid":2,"project_id":25157276,"title":"update readme.md","description":"","state":"opened","created_at":"2021-03-18T12:42:30.200Z","updated_at":"2021-03-18T12:42:30.200Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"ykurochkin/test-branch","user_notes_count":0,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":[],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!2","references":{"short":"!2","relative":"!2","full":"new-group-airbute/new-ci-test-project!2"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/2","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097624183} +{"stream":"merge_requests","data":{"id":92111504,"iid":1,"project_id":25157276,"title":"Draft: Resolve \"Fake Issue 30\"","description":"Closes #31","state":"opened","created_at":"2021-03-15T16:08:05.071Z","updated_at":"2021-03-15T16:08:05.071Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"31-fake-issue-30","user_notes_count":0,"upvotes":0,"downvotes":0,"assignees":[8375961],"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":["bug"],"draft":true,"work_in_progress":true,"merge_when_pipeline_succeeds":false,"merge_status":"cannot_be_merged","detailed_merge_status":"draft_status","sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!1","references":{"short":"!1","relative":"!1","full":"new-group-airbute/new-ci-test-project!1"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/1","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":true,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097624184} +{"stream":"merge_request_commits","data":{"id":92594931,"iid":3,"project_id":25157276,"title":"add fake CI config","description":"","state":"merged","created_at":"2021-03-18T12:49:13.091Z","updated_at":"2021-03-18T12:51:06.319Z","merged_by":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"merge_user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"merged_at":"2021-03-18T12:51:06.470Z","closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"ykurochkin/add-fake-CI-config","user_notes_count":0,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":[],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"not_open","sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","merge_commit_sha":"6ad3dd49539391774db738c9e7b7d69f2d872c98","squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!3","references":{"short":"!3","relative":"!3","full":"new-group-airbute/new-ci-test-project!3"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/3","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"1","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":{"id":272631271,"iid":1,"project_id":25157276,"sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","ref":"ykurochkin/add-fake-CI-config","status":"failed","source":"push","created_at":"2021-03-18T12:48:49.174Z","updated_at":"2021-03-18T12:49:38.092Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271","before_sha":"0000000000000000000000000000000000000000","tag":false,"yaml_errors":null,"user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"started_at":"2021-03-18T12:48:50.166Z","finished_at":"2021-03-18T12:49:38.084Z","committed_at":null,"duration":47,"queued_duration":null,"coverage":null,"detailed_status":{"icon":"status_failed","text":"failed","label":"failed","group":"failed","tooltip":"failed","has_details":true,"details_path":"/new-group-airbute/new-ci-test-project/-/pipelines/272631271","illustration":null,"favicon":"/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}},"diff_refs":{"base_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","head_sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","start_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":3},"emitted_at":1671097625277} +{"stream":"merge_request_commits","data":{"id":92593913,"iid":2,"project_id":25157276,"title":"update readme.md","description":"","state":"opened","created_at":"2021-03-18T12:42:30.200Z","updated_at":"2021-03-18T12:42:30.200Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"ykurochkin/test-branch","user_notes_count":0,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":[],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!2","references":{"short":"!2","relative":"!2","full":"new-group-airbute/new-ci-test-project!2"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/2","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"1","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","head_sha":"9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129","start_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":2},"emitted_at":1671097625579} +{"stream":"merge_request_commits","data":{"id":92111504,"iid":1,"project_id":25157276,"title":"Draft: Resolve \"Fake Issue 30\"","description":"Closes #31","state":"opened","created_at":"2021-03-15T16:08:05.071Z","updated_at":"2021-03-15T16:08:05.071Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"31-fake-issue-30","user_notes_count":0,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"}],"assignee":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":["bug"],"draft":true,"work_in_progress":true,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"cannot_be_merged","detailed_merge_status":"draft_status","sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!1","references":{"short":"!1","relative":"!1","full":"new-group-airbute/new-ci-test-project!1"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/1","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":true,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":null,"latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","head_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","start_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":1},"emitted_at":1671097626182} +{"stream":"releases","data":{"name":"First release","tag_name":"fake-tag-6","description":"Test Release","created_at":"2021-03-18T12:44:12.497Z","released_at":"2021-03-18T12:44:12.497Z","upcoming_release":false,"milestones":[1943704],"commit_path":"/new-group-airbute/new-ci-test-project/-/commit/2831d897ba0214f8d3168647e8ad4232b83987ef","tag_path":"/new-group-airbute/new-ci-test-project/-/tags/fake-tag-6","assets":{"count":4,"sources":[{"format":"zip","url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.zip"},{"format":"tar.gz","url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar.gz"},{"format":"tar.bz2","url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar.bz2"},{"format":"tar","url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar"}],"links":[]},"evidences":[{"sha":"a616fdca9312ca5aa451bc1060ce91a672fd24cc0f4d","filepath":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6/evidences/855895.json","collected_at":"2021-03-18T12:44:12.650Z"}],"_links":{"self":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6","edit_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6/edit"},"author_id":8375961,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097626659} +{"stream":"tags","data":{"name":"fake-tag-1","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627159} +{"stream":"tags","data":{"name":"fake-tag-10","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627159} +{"stream":"tags","data":{"name":"fake-tag-11","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627159} +{"stream":"tags","data":{"name":"fake-tag-12","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627160} +{"stream":"tags","data":{"name":"fake-tag-13","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627160} +{"stream":"tags","data":{"name":"fake-tag-14","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627160} +{"stream":"tags","data":{"name":"fake-tag-15","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627160} +{"stream":"tags","data":{"name":"fake-tag-16","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627160} +{"stream":"tags","data":{"name":"fake-tag-17","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627160} +{"stream":"tags","data":{"name":"fake-tag-18","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627160} +{"stream":"pipelines","data":{"id":272632767,"iid":2,"project_id":25157276,"sha":"6ad3dd49539391774db738c9e7b7d69f2d872c98","ref":"master","status":"failed","source":"push","created_at":"2021-03-18T12:51:06.262Z","updated_at":"2021-03-18T12:51:52.007Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272632767"},"emitted_at":1671097627878} +{"stream":"pipelines","data":{"id":272631271,"iid":1,"project_id":25157276,"sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","ref":"ykurochkin/add-fake-CI-config","status":"failed","source":"push","created_at":"2021-03-18T12:48:49.174Z","updated_at":"2021-03-18T12:49:38.092Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271"},"emitted_at":1671097627879} +{"stream":"pipelines_extended","data":{"id":272632767,"iid":2,"project_id":25157276,"sha":"6ad3dd49539391774db738c9e7b7d69f2d872c98","ref":"master","status":"failed","source":"push","created_at":"2021-03-18T12:51:06.262Z","updated_at":"2021-03-18T12:51:52.007Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272632767","before_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","tag":false,"yaml_errors":null,"user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"started_at":"2021-03-18T12:51:07.816Z","finished_at":"2021-03-18T12:51:52.000Z","committed_at":null,"duration":43,"queued_duration":1,"coverage":null,"detailed_status":{"icon":"status_failed","text":"failed","label":"failed","group":"failed","tooltip":"failed","has_details":false,"details_path":"/new-group-airbute/new-ci-test-project/-/pipelines/272632767","illustration":null,"favicon":"/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}},"emitted_at":1671097628601} +{"stream":"pipelines_extended","data":{"id":272631271,"iid":1,"project_id":25157276,"sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","ref":"ykurochkin/add-fake-CI-config","status":"failed","source":"push","created_at":"2021-03-18T12:48:49.174Z","updated_at":"2021-03-18T12:49:38.092Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271","before_sha":"0000000000000000000000000000000000000000","tag":false,"yaml_errors":null,"user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"started_at":"2021-03-18T12:48:50.166Z","finished_at":"2021-03-18T12:49:38.084Z","committed_at":null,"duration":47,"queued_duration":null,"coverage":null,"detailed_status":{"icon":"status_failed","text":"failed","label":"failed","group":"failed","tooltip":"failed","has_details":false,"details_path":"/new-group-airbute/new-ci-test-project/-/pipelines/272631271","illustration":null,"favicon":"/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}},"emitted_at":1671097628895} +{"stream":"users","data":{"id":7904355,"username":"y.kurochkin","name":"Yevhenii Kurochkin","state":"active","avatar_url":"https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon","web_url":"https://gitlab.com/y.kurochkin"},"emitted_at":1671097629404} +{"stream":"users","data":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"emitted_at":1671097629405} diff --git a/airbyte-integrations/connectors/source-gitlab/setup.py b/airbyte-integrations/connectors/source-gitlab/setup.py index c1975a634c42..5b1e107930b1 100644 --- a/airbyte-integrations/connectors/source-gitlab/setup.py +++ b/airbyte-integrations/connectors/source-gitlab/setup.py @@ -5,12 +5,9 @@ from setuptools import find_packages, setup -MAIN_REQUIREMENTS = ["airbyte-cdk~=0.1", "vcrpy==4.1.1"] +MAIN_REQUIREMENTS = ["airbyte-cdk", "vcrpy==4.1.1"] -TEST_REQUIREMENTS = [ - "pytest~=6.1", - "source-acceptance-test", -] +TEST_REQUIREMENTS = ["pytest~=6.1", "source-acceptance-test", "requests_mock"] setup( name="source_gitlab", diff --git a/airbyte-integrations/connectors/source-gitlab/source_gitlab/source.py b/airbyte-integrations/connectors/source-gitlab/source_gitlab/source.py index ca162994301a..a7b0b0b8d35a 100644 --- a/airbyte-integrations/connectors/source-gitlab/source_gitlab/source.py +++ b/airbyte-integrations/connectors/source-gitlab/source_gitlab/source.py @@ -3,9 +3,8 @@ # -from typing import Any, List, Mapping, Tuple +from typing import Any, List, Mapping, MutableMapping, Optional, Tuple, Union -import requests from airbyte_cdk.models import SyncMode from airbyte_cdk.sources import AbstractSource from airbyte_cdk.sources.streams import Stream @@ -23,6 +22,8 @@ GroupMilestones, GroupProjects, Groups, + GroupsList, + IncludeDescendantGroups, Issues, Jobs, MergeRequestCommits, @@ -40,61 +41,65 @@ class SourceGitlab(AbstractSource): - def _generate_main_streams(self, config: Mapping[str, Any]) -> Tuple[GitlabStream, GitlabStream]: - auth = TokenAuthenticator(token=config["private_token"]) - auth_params = dict(authenticator=auth, api_url=config["api_url"]) - - pids = list(filter(None, config.get("projects", "").split(" "))) - gids = config.get("groups") - - if gids: - gids = list(filter(None, gids.split(" "))) - else: - gids = self._get_group_list(**auth_params) - - groups = Groups(group_ids=gids, **auth_params) - if gids: - projects = GroupProjects(project_ids=pids, parent_stream=groups, **auth_params) - else: - projects = Projects(project_ids=pids, **auth_params) - - return groups, projects - - def _get_group_list(self, **kwargs): - headers = kwargs["authenticator"].get_auth_header() - - ids = [] - has_next = True - # First request params - per_page = 50 - next_page = 1 - - while has_next: - response = requests.get(f'https://{kwargs["api_url"]}/api/v4/groups?page={next_page}&per_page={per_page}', headers=headers) - next_page = response.headers.get("X-Next-Page") - per_page = response.headers.get("X-Per-Page") - results = response.json() - - items = map(lambda i: i["full_path"].replace("/", "%2f"), results) - ids.extend(items) - has_next = "X-Next-Page" in response.headers and response.headers["X-Next-Page"] != "" - - return ids + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + self.__auth_params: Mapping[str, Any] = {} + self.__groups_stream: Optional[GitlabStream] = None + self.__projects_stream: Optional[GitlabStream] = None + + def _groups_stream(self, config: MutableMapping[str, Any]) -> Groups: + if not self.__groups_stream: + auth_params = self._auth_params(config) + group_ids = list(map(lambda x: x["id"], self._get_group_list(config))) + self.__groups_stream = Groups(group_ids=group_ids, **auth_params) + return self.__groups_stream + + def _projects_stream(self, config: MutableMapping[str, Any]) -> Union[Projects, GroupProjects]: + if not self.__projects_stream: + auth_params = self._auth_params(config) + project_ids = list(filter(None, config.get("projects", "").split(" "))) + groups_stream = self._groups_stream(config) + if groups_stream.group_ids: + self.__projects_stream = GroupProjects(project_ids=project_ids, parent_stream=groups_stream, **auth_params) + return self.__projects_stream + self.__projects_stream = Projects(project_ids=project_ids, **auth_params) + return self.__projects_stream + + def _auth_params(self, config: MutableMapping[str, Any]) -> Mapping[str, Any]: + if not self.__auth_params: + auth = TokenAuthenticator(token=config["private_token"]) + self.__auth_params = dict(authenticator=auth, api_url=config["api_url"]) + return self.__auth_params + + def _get_group_list(self, config: MutableMapping[str, Any]) -> List[str]: + group_ids = list(filter(None, config.get("groups", "").split(" "))) + # Gitlab exposes different APIs to get a list of groups. + # We use https://docs.gitlab.com/ee/api/groups.html#list-groups in case there's no group IDs in the input config. + # This API provides full information about all available groups, including subgroups. + # + # In case there is a definitive list of groups IDs in the input config, the above API can not be used since + # it does not support filtering by group ID, so we use + # https://docs.gitlab.com/ee/api/groups.html#details-of-a-group and + # https: //docs.gitlab.com/ee/api/groups.html#list-a-groups-descendant-groups for each group ID. The latter one does not + # provide full group info so can only be used to retrieve alist of group IDs and pass it further to init a corresponding stream. + auth_params = self._auth_params(config) + stream = GroupsList(**auth_params) if not group_ids else IncludeDescendantGroups(group_ids=group_ids, **auth_params) + for stream_slice in stream.stream_slices(sync_mode=SyncMode.full_refresh): + yield from stream.read_records(sync_mode=SyncMode.full_refresh, stream_slice=stream_slice) def check_connection(self, logger, config) -> Tuple[bool, any]: try: - groups, projects = self._generate_main_streams(config) - for stream in projects.stream_slices(sync_mode=SyncMode.full_refresh): - next(projects.read_records(sync_mode=SyncMode.full_refresh, stream_slice=stream)) - return True, None + projects = self._projects_stream(config) + for stream_slice in projects.stream_slices(sync_mode=SyncMode.full_refresh): + next(projects.read_records(sync_mode=SyncMode.full_refresh, stream_slice=stream_slice)) + return True, None except Exception as error: return False, f"Unable to connect to Gitlab API with the provided credentials - {repr(error)}" - def streams(self, config: Mapping[str, Any]) -> List[Stream]: - auth = TokenAuthenticator(token=config["private_token"]) - auth_params = dict(authenticator=auth, api_url=config["api_url"]) + def streams(self, config: MutableMapping[str, Any]) -> List[Stream]: + auth_params = self._auth_params(config) - groups, projects = self._generate_main_streams(config) + groups, projects = self._groups_stream(config), self._projects_stream(config) pipelines = Pipelines(parent_stream=projects, start_date=config["start_date"], **auth_params) merge_requests = MergeRequests(parent_stream=projects, start_date=config["start_date"], **auth_params) epics = Epics(parent_stream=groups, **auth_params) diff --git a/airbyte-integrations/connectors/source-gitlab/source_gitlab/spec.json b/airbyte-integrations/connectors/source-gitlab/source_gitlab/spec.json index e394af032bbf..ff6c9c82a8d4 100644 --- a/airbyte-integrations/connectors/source-gitlab/source_gitlab/spec.json +++ b/airbyte-integrations/connectors/source-gitlab/source_gitlab/spec.json @@ -7,36 +7,41 @@ "required": ["api_url", "private_token", "start_date"], "additionalProperties": true, "properties": { + "private_token": { + "type": "string", + "title": "Private Token", + "description": "Log into your GitLab account and then generate a personal [Access Token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html).", + "airbyte_secret": true, + "order": 0 + }, "api_url": { "type": "string", "examples": ["gitlab.com"], "title": "API URL", - "description": "Please enter your basic URL from GitLab instance." + "description": "Please enter your basic URL from GitLab instance.", + "order": 1 }, - "private_token": { + "start_date": { "type": "string", - "title": "Private Token", - "description": "Log into your GitLab account and then generate a personal Access Token.", - "airbyte_secret": true + "title": "Start Date", + "description": "The date from which you'd like to replicate data for GitLab API, in the format YYYY-MM-DDT00:00:00Z. All data generated after this date will be replicated.", + "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$", + "order": 2 }, "groups": { "type": "string", "examples": ["airbyte.io"], "title": "Groups", - "description": "Space-delimited list of groups. e.g. airbyte.io." + "description": "Space-delimited list of groups. e.g. airbyte.io.", + "order": 3 }, "projects": { "type": "string", "title": "Projects", "examples": ["airbyte.io/documentation"], - "description": "Space-delimited list of projects. e.g. airbyte.io/documentation meltano/tap-gitlab." - }, - "start_date": { - "type": "string", - "title": "Start Date", - "description": "The date from which you'd like to replicate data for GitLab API, in the format YYYY-MM-DDT00:00:00Z. All data generated after this date will be replicated.", - "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$" + "description": "Space-delimited list of projects. e.g. airbyte.io/documentation meltano/tap-gitlab.", + "order": 4 } } } diff --git a/airbyte-integrations/connectors/source-gitlab/source_gitlab/streams.py b/airbyte-integrations/connectors/source-gitlab/source_gitlab/streams.py index 4128194b8ef3..5d550b7caeb2 100644 --- a/airbyte-integrations/connectors/source-gitlab/source_gitlab/streams.py +++ b/airbyte-integrations/connectors/source-gitlab/source_gitlab/streams.py @@ -53,6 +53,8 @@ def should_retry(self, response: requests.Response) -> bool: return super().should_retry(response) def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: + if response.status_code != 200: + return response_data = response.json() if isinstance(response_data, dict): return None @@ -179,6 +181,21 @@ def transform(self, record, stream_slice: Mapping[str, Any] = None, **kwargs): return record +class IncludeDescendantGroups(Groups): + def path(self, stream_slice: Mapping[str, Any] = None, **kwargs) -> str: + return stream_slice["path"] + + def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, any]]]: + for gid in self.group_ids: + yield {"path": f"groups/{gid}"} + yield {"path": f"groups/{gid}/descendant_groups"} + + +class GroupsList(GitlabStream): + def path(self, **kwargs) -> str: + return "groups" + + class Projects(GitlabStream): stream_base_params = {"statistics": 1} use_cache = True diff --git a/airbyte-integrations/connectors/source-gitlab/unit_tests/conftest.py b/airbyte-integrations/connectors/source-gitlab/unit_tests/conftest.py new file mode 100644 index 000000000000..e83bbf7a7c3a --- /dev/null +++ b/airbyte-integrations/connectors/source-gitlab/unit_tests/conftest.py @@ -0,0 +1,14 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import pytest + + +@pytest.fixture +def config(mocker): + return { + "start_date": "2021-01-01T00:00:00Z", + "api_url": "gitlab.com", + "private_token": "secret_token" + } diff --git a/airbyte-integrations/connectors/source-gitlab/unit_tests/test_source.py b/airbyte-integrations/connectors/source-gitlab/unit_tests/test_source.py new file mode 100644 index 000000000000..5981c6985454 --- /dev/null +++ b/airbyte-integrations/connectors/source-gitlab/unit_tests/test_source.py @@ -0,0 +1,36 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import logging + +from source_gitlab import SourceGitlab +from source_gitlab.streams import GitlabStream + + +def test_streams(config, requests_mock): + requests_mock.get("/api/v4/groups", json=[{"id": "g1"}, {"id": "g256"}]) + source = SourceGitlab() + streams = source.streams(config) + assert len(streams) == 22 + assert all([isinstance(stream, GitlabStream) for stream in streams]) + groups, projects, *_ = streams + assert groups.group_ids == ["g1", "g256"] + assert projects.project_ids == [] + + +def test_connection_success(config, requests_mock): + requests_mock.get("/api/v4/groups", json=[{"id": "g1"}]) + requests_mock.get("/api/v4/groups/g1", json=[{"id": "g1", "projects": [{"id": "p1", "path_with_namespace": "p1"}]}]) + requests_mock.get("/api/v4/projects/p1", json={"id": "p1"}) + source = SourceGitlab() + status, msg = source.check_connection(logging.getLogger(), config) + assert (status, msg) == (True, None) + + +def test_connection_fail(config, mocker, requests_mock): + mocker.patch("time.sleep") + requests_mock.get("/api/v4/groups", status_code=500) + source = SourceGitlab() + status, msg = source.check_connection(logging.getLogger(), config) + assert status is False, msg.startswith('Unable to connect to Gitlab API with the provided credentials - "DefaultBackoffException"') diff --git a/airbyte-integrations/connectors/source-gitlab/unit_tests/test_streams.py b/airbyte-integrations/connectors/source-gitlab/unit_tests/test_streams.py new file mode 100644 index 000000000000..7f2b795ce973 --- /dev/null +++ b/airbyte-integrations/connectors/source-gitlab/unit_tests/test_streams.py @@ -0,0 +1,135 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import pytest +from airbyte_cdk.sources.streams.http.auth import NoAuth +from source_gitlab.streams import Commits, Jobs, MergeRequestCommits, MergeRequests, Pipelines, Projects, Releases, Tags + +auth_params = {"authenticator": NoAuth(), "api_url": "gitlab.com"} + + +projects = Projects(project_ids=["p_1"], **auth_params) +pipelines = Pipelines(parent_stream=projects, start_date="2021-01-01T00:00:00Z", **auth_params) +merge_requests = MergeRequests(parent_stream=projects, start_date="2021-01-01T00:00:00Z", **auth_params) +tags = Tags(parent_stream=projects, repository_part=True, **auth_params) +releases = Releases(parent_stream=projects, **auth_params) +jobs = Jobs(parent_stream=pipelines, **auth_params) +merge_request_commits = MergeRequestCommits(parent_stream=merge_requests, **auth_params) +commits = Commits(parent_stream=projects, repository_part=True, start_date="2021-01-01T00:00:00Z", **auth_params) + + +def test_should_retry(mocker, requests_mock): + mocker.patch("time.sleep") + requests_mock.get("/api/v4/projects/p_1", status_code=403) + for stream_slice in projects.stream_slices(sync_mode="full_refresh"): + records = list(projects.read_records(sync_mode="full_refresh", stream_slice=stream_slice)) + assert records == [] + assert requests_mock.call_count == 1 + + +test_cases = ( + ( + jobs, + ( + ("/api/v4/projects/p_1/pipelines", [{"project_id": "p_1", "id": "build_project_p1"}],), + ( + "/api/v4/projects/p_1/pipelines/build_project_p1/jobs", + [ + {"id": "j_1", "user": {"id": "u_1"}, "pipeline": {"id": "p_17"}, "runner": None, "commit": {"id": "c_23"}} + ] + ), + ), + [{"commit_id": "c_23", "id": "j_1", "pipeline_id": "p_17", "project_id": "p_1", "runner_id": None, "user_id": "u_1"}] + ), + ( + tags, + ( + ("/api/v4/projects/p_1/repository/tags", [{"commit": {"id": "c_1"}, "name": "t_1", "target": "ddc89"}],), + ), + [{"commit_id": "c_1", "project_id": "p_1", "name": "t_1", "target": "ddc89"}] + ), + ( + releases, + ( + ( + "/api/v4/projects/p_1/releases", + [ + { + "id": "r_1", + "author": {"name": "John", "id": "666"}, + "commit": {"id": "abcd689"}, + "milestones": [{"id": "m1", "title": "Q1"}, {"id": "m2", "title": "Q2"}] + } + ], + ), + ), + [{"author_id": "666", "commit_id": "abcd689", "id": "r_1", "milestones": ["m1", "m2"], "project_id": "p_1"}] + ), + ( + merge_request_commits, + ( + ("/api/v4/projects/p_1/merge_requests", [{"id": "mr_1", "iid": "mr_1", "project_id": "p_1"}],), + ("/api/v4/projects/p_1/merge_requests/mr_1", [{"id": "mrc_1",}],), + ), + [{"id": "mrc_1", "project_id": "p_1", "merge_request_iid": "mr_1"}] + ) +) + + +@pytest.mark.parametrize("stream, response_mocks, expected_records", test_cases) +def test_transform(requests_mock, stream, response_mocks, expected_records): + requests_mock.get("/api/v4/projects/p_1", json=[{"id": "p_1"}]) + + for url, json in response_mocks: + requests_mock.get(url, json=json) + + records_iter = iter(expected_records) + for stream_slice in stream.stream_slices(sync_mode="full_refresh"): + for record in stream.read_records(sync_mode="full_refresh", stream_slice=stream_slice): + assert record == next(records_iter) + + +@pytest.mark.parametrize( + "stream, current_state, latest_record, new_state", + ( + ( + pipelines, + {"219445": {"updated_at": "2022-12-14T17:07:34.005675+02:00"}, "211378": {"updated_at": "2021-03-11T08:56:40.001+02:00"}}, + {"project_id": "219445", "updated_at": "2022-12-16T00:12:41.005675+02:00"}, + {"219445": {"updated_at": "2022-12-16T00:12:41.005675+02:00"}, "211378": {"updated_at": "2021-03-11T08:56:40.001+02:00"}} + ), + ( + pipelines, + {"219445": {"updated_at": "2022-12-14T17:07:34.005675+02:00"}, "211378": {"updated_at": "2021-03-11T08:56:40.012001+02:00"}}, + {"project_id": "211378", "updated_at": "2021-03-10T23:58:58.011+02:00"}, + {"219445": {"updated_at": "2022-12-14T17:07:34.005675+02:00"}, "211378": {"updated_at": "2021-03-11T08:56:40.012001+02:00"}} + ), + ( + pipelines, + {}, + {"project_id": "211378", "updated_at": "2021-03-10T23:58:58.010001+02:00"}, + {"211378": {"updated_at": "2021-03-10T23:58:58.010001+02:00"}} + ), + ( + commits, + {"219445": {"created_at": "2022-12-14T17:07:34.005675+02:00"}, "211378": {"created_at": "2021-03-11T08:56:40.001+02:00"}}, + {"project_id": "219445", "created_at": "2022-12-16T00:12:41.005675+02:00"}, + {"219445": {"created_at": "2022-12-16T00:12:41.005675+02:00"}, "211378": {"created_at": "2021-03-11T08:56:40.001+02:00"}} + ), + ( + commits, + {"219445": {"created_at": "2022-12-14T17:07:34.005675+02:00"}, "211378": {"created_at": "2021-03-11T08:56:40.012001+02:00"}}, + {"project_id": "211378", "created_at": "2021-03-10T23:58:58.011+02:00"}, + {"219445": {"created_at": "2022-12-14T17:07:34.005675+02:00"}, "211378": {"created_at": "2021-03-11T08:56:40.012001+02:00"}} + ), + ( + commits, + {}, + {"project_id": "211378", "created_at": "2021-03-10T23:58:58.010001+02:00"}, + {"211378": {"created_at": "2021-03-10T23:58:58.010001+02:00"}} + ) + ) +) +def test_updated_state(stream, current_state, latest_record, new_state): + assert stream.get_updated_state(current_state, latest_record) == new_state diff --git a/airbyte-integrations/connectors/source-gnews/Dockerfile b/airbyte-integrations/connectors/source-gnews/Dockerfile index 6d580660531d..fc9c255074f3 100644 --- a/airbyte-integrations/connectors/source-gnews/Dockerfile +++ b/airbyte-integrations/connectors/source-gnews/Dockerfile @@ -34,5 +34,5 @@ COPY source_gnews ./source_gnews ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.0 +LABEL io.airbyte.version=0.1.2 LABEL io.airbyte.name=airbyte/source-gnews diff --git a/airbyte-integrations/connectors/source-gnews/acceptance-test-config.yml b/airbyte-integrations/connectors/source-gnews/acceptance-test-config.yml index bbceb32cd0d5..7fbd4f7d5a1e 100644 --- a/airbyte-integrations/connectors/source-gnews/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-gnews/acceptance-test-config.yml @@ -1,30 +1,23 @@ # 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-gnews:dev -acceptance_tests: +tests: spec: - tests: - - spec_path: "source_gnews/spec.yaml" + - spec_path: "source_gnews/spec.yaml" connection: - tests: - - config_path: "secrets/config.json" - status: "succeed" - - config_path: "integration_tests/invalid_config.json" - status: "failed" + - config_path: "secrets/config.json" + status: "succeed" + - config_path: "integration_tests/invalid_config.json" + status: "failed" discovery: - tests: - - config_path: "secrets/config.json" + - config_path: "secrets/config.json" basic_read: - tests: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - empty_streams: [] - incremental: - tests: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - future_state_path: "integration_tests/abnormal_state.json" + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + incremental: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + future_state_path: "integration_tests/abnormal_state.json" full_refresh: - tests: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" diff --git a/airbyte-integrations/connectors/source-gnews/setup.py b/airbyte-integrations/connectors/source-gnews/setup.py index 440ea3648709..23ca1049cc0e 100644 --- a/airbyte-integrations/connectors/source-gnews/setup.py +++ b/airbyte-integrations/connectors/source-gnews/setup.py @@ -6,7 +6,7 @@ from setuptools import find_packages, setup MAIN_REQUIREMENTS = [ - "airbyte-cdk~=0.1", + "airbyte-cdk~=0.14", ] TEST_REQUIREMENTS = [ diff --git a/airbyte-integrations/connectors/source-gnews/source_gnews/gnews.yaml b/airbyte-integrations/connectors/source-gnews/source_gnews/gnews.yaml index bb7e4762d532..44fe25ea7068 100644 --- a/airbyte-integrations/connectors/source-gnews/source_gnews/gnews.yaml +++ b/airbyte-integrations/connectors/source-gnews/source_gnews/gnews.yaml @@ -1,5 +1,107 @@ version: "0.1.0" +schemas: + search_stream_schema: + type: object + properties: + title: + type: + - "null" + - string + description: The main title of the article. + description: + type: + - "null" + - string + description: The small paragraph under the title. + content: + type: + - "null" + - string + description: All the content of the article. + url: + type: + - "null" + - string + description: The URL of the article. + image: + type: + - "null" + - string + description: The main image of the article. + publishedAt: + type: + - "null" + - string + description: + The date of publication of the article. The date is always in the + UTC time zone. + source: + type: + - "null" + - object + properties: + name: + type: + - "null" + - string + description: The name of the source. + url: + type: + - "null" + - string + description: The home page of the source. + top_headlines_stream_schema: + type: object + properties: + title: + type: + - "null" + - string + description: The main title of the article. + description: + type: + - "null" + - string + description: The small paragraph under the title. + content: + type: + - "null" + - string + description: All the content of the article. + url: + type: + - "null" + - string + description: The URL of the article. + image: + type: + - "null" + - string + description: The main image of the article. + publishedAt: + type: + - "null" + - string + description: + The date of publication of the article. The date is always in the + UTC time zone. + source: + type: + - "null" + - object + properties: + name: + type: + - "null" + - string + description: The name of the source. + url: + type: + - "null" + - string + description: The home page of the source. + definitions: selector: extractor: @@ -44,7 +146,12 @@ definitions: nullable: "{{ ','.join(config['nullable']) }}" from: "{{ stream_slice['start_time'] }}" to: "{{ stream_slice['end_time'] }}" + schema_loader: + type: InlineSchemaLoader search_stream: + schema_loader: + $ref: "*ref(definitions.schema_loader)" + schema: "*ref(schemas.search_stream_schema)" $options: name: "search" primary_key: "url" @@ -61,6 +168,9 @@ definitions: in: "{{ ','.join(config['in']) }}" sortby: "{{ config['sortby'] }}" top_headlines_stream: + schema_loader: + $ref: "*ref(definitions.schema_loader)" + schema: "*ref(schemas.top_headlines_stream_schema)" $options: name: "top_headlines" primary_key: "url" diff --git a/airbyte-integrations/connectors/source-gnews/source_gnews/schemas/search.json b/airbyte-integrations/connectors/source-gnews/source_gnews/schemas/search.json deleted file mode 100644 index 334bc8024057..000000000000 --- a/airbyte-integrations/connectors/source-gnews/source_gnews/schemas/search.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "title": { - "type": ["null", "string"], - "description": "The main title of the article." - }, - "description": { - "type": ["null", "string"], - "description": "The small paragraph under the title." - }, - "content": { - "type": ["null", "string"], - "description": "All the content of the article." - }, - "url": { - "type": ["null", "string"], - "description": "The URL of the article." - }, - "image": { - "type": ["null", "string"], - "description": "The main image of the article." - }, - "publishedAt": { - "type": ["null", "string"], - "description": "The date of publication of the article. The date is always in the UTC time zone." - }, - "source": { - "type": ["null", "object"], - "properties": { - "name": { - "type": ["null", "string"], - "description": "The name of the source." - }, - "url": { - "type": ["null", "string"], - "description": "The home page of the source." - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-gnews/source_gnews/schemas/top_headlines.json b/airbyte-integrations/connectors/source-gnews/source_gnews/schemas/top_headlines.json deleted file mode 100644 index 334bc8024057..000000000000 --- a/airbyte-integrations/connectors/source-gnews/source_gnews/schemas/top_headlines.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "title": { - "type": ["null", "string"], - "description": "The main title of the article." - }, - "description": { - "type": ["null", "string"], - "description": "The small paragraph under the title." - }, - "content": { - "type": ["null", "string"], - "description": "All the content of the article." - }, - "url": { - "type": ["null", "string"], - "description": "The URL of the article." - }, - "image": { - "type": ["null", "string"], - "description": "The main image of the article." - }, - "publishedAt": { - "type": ["null", "string"], - "description": "The date of publication of the article. The date is always in the UTC time zone." - }, - "source": { - "type": ["null", "object"], - "properties": { - "name": { - "type": ["null", "string"], - "description": "The name of the source." - }, - "url": { - "type": ["null", "string"], - "description": "The home page of the source." - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/.dockerignore b/airbyte-integrations/connectors/source-google-pagespeed-insights/.dockerignore new file mode 100644 index 000000000000..8bc1a03946fc --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/.dockerignore @@ -0,0 +1,6 @@ +* +!Dockerfile +!main.py +!source_google_pagespeed_insights +!setup.py +!secrets diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/Dockerfile b/airbyte-integrations/connectors/source-google-pagespeed-insights/Dockerfile new file mode 100644 index 000000000000..a2f5f4b2ad5e --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/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_google_pagespeed_insights ./source_google_pagespeed_insights + +ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" +ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] + +LABEL io.airbyte.version=0.1.0 +LABEL io.airbyte.name=airbyte/source-google-pagespeed-insights diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/README.md b/airbyte-integrations/connectors/source-google-pagespeed-insights/README.md new file mode 100644 index 000000000000..be430009b2c0 --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/README.md @@ -0,0 +1,79 @@ +# Google Pagespeed Insights Source + +This is the repository for the Google Pagespeed Insights configuration based source connector. +For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.io/integrations/sources/google-pagespeed-insights). + +## 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-google-pagespeed-insights:build +``` + +#### Create credentials +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.io/integrations/sources/google-pagespeed-insights) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_google_pagespeed_insights/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 google-pagespeed-insights 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-google-pagespeed-insights:dev +``` + +You can also build the connector image via Gradle: +``` +./gradlew :airbyte-integrations:connectors:source-google-pagespeed-insights: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-google-pagespeed-insights:dev spec +docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-google-pagespeed-insights:dev check --config /secrets/config.json +docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-google-pagespeed-insights:dev discover --config /secrets/config.json +docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-google-pagespeed-insights: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.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 docker + +### Using gradle to run tests +All commands should be run from airbyte project root. +To run unit tests: +``` +./gradlew :airbyte-integrations:connectors:source-google-pagespeed-insights:unitTest +``` +To run acceptance and custom integration tests: +``` +./gradlew :airbyte-integrations:connectors:source-google-pagespeed-insights: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-google-pagespeed-insights/__init__.py b/airbyte-integrations/connectors/source-google-pagespeed-insights/__init__.py new file mode 100644 index 000000000000..1100c1c58cf5 --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/__init__.py @@ -0,0 +1,3 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/acceptance-test-config.yml b/airbyte-integrations/connectors/source-google-pagespeed-insights/acceptance-test-config.yml new file mode 100644 index 000000000000..3332cb109e73 --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/acceptance-test-config.yml @@ -0,0 +1,38 @@ +# 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-google-pagespeed-insights:dev +acceptance_tests: + spec: + tests: + - spec_path: "source_google_pagespeed_insights/spec.yaml" + connection: + tests: + - config_path: "secrets/config.json" + status: "succeed" + timeout_seconds: 120 + - config_path: "integration_tests/invalid_config.json" + status: "failed" + timeout_seconds: 120 + discovery: + tests: + - config_path: "secrets/config.json" + basic_read: + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + empty_streams: [] + # Using expect_records we can make sure that our "categories-array" spec + # really works and produces multiple category request params + expect_records: + path: "integration_tests/expected_records.json" + extra_fields: yes + exact_order: yes + extra_records: no + incremental: + bypass_reason: "This connector does not implement incremental sync" + full_refresh: + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + ignored_fields: + pagespeed: ["lighthouseResult", "analysisUTCTimestamp"] # This differs between two runs, as they are newly generated per run diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/acceptance-test-docker.sh b/airbyte-integrations/connectors/source-google-pagespeed-insights/acceptance-test-docker.sh new file mode 100755 index 000000000000..c51577d10690 --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/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-google-pagespeed-insights/build.gradle b/airbyte-integrations/connectors/source-google-pagespeed-insights/build.gradle new file mode 100644 index 000000000000..34ae58a88362 --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/build.gradle @@ -0,0 +1,9 @@ +plugins { + id 'airbyte-python' + id 'airbyte-docker' + id 'airbyte-source-acceptance-test' +} + +airbytePython { + moduleDirectory 'source_google_pagespeed_insights' +} diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/__init__.py b/airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/__init__.py new file mode 100644 index 000000000000..1100c1c58cf5 --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/__init__.py @@ -0,0 +1,3 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/acceptance.py b/airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/acceptance.py new file mode 100644 index 000000000000..950b53b59d41 --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/acceptance.py @@ -0,0 +1,14 @@ +# +# 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.""" + yield diff --git a/airbyte-integrations/connectors/source-jira/integration_tests/labels_catalog.json b/airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/configured_catalog.json similarity index 59% rename from airbyte-integrations/connectors/source-jira/integration_tests/labels_catalog.json rename to airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/configured_catalog.json index 555962f6462b..4b3c1d05096d 100644 --- a/airbyte-integrations/connectors/source-jira/integration_tests/labels_catalog.json +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/configured_catalog.json @@ -2,10 +2,9 @@ "streams": [ { "stream": { - "name": "labels", + "name": "pagespeed", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": ["full_refresh"] }, "sync_mode": "full_refresh", "destination_sync_mode": "overwrite" diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/expected_records.json b/airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/expected_records.json new file mode 100644 index 000000000000..45c06e6af94a --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/expected_records.json @@ -0,0 +1 @@ +{"stream": "pagespeed", "data": { "captchaResult": "CAPTCHA_NOT_NEEDED", "kind": "pagespeedonline#result", "lighthouseResult": { "configSettings": { "onlyCategories": ["pwa", "performance"] }, "categories": { "performance": { "id": "performance" }, "pwa": { "id": "pwa" } } }}, "emitted_at": 1626172757000} diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/invalid_config.json b/airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/invalid_config.json new file mode 100644 index 000000000000..6e32db8fa465 --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/invalid_config.json @@ -0,0 +1,6 @@ +{ + "api_key": "invalid_key", + "urls": ["https://www.vol.at", "https://www.vienna.at"], + "strategies": ["desktop", "mobile"], + "categories": ["performance", "pwa"] +} diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/sample_config.json b/airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/sample_config.json new file mode 100644 index 000000000000..17b7ffa5f9e2 --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/integration_tests/sample_config.json @@ -0,0 +1,6 @@ +{ + "api_key": "sample", + "urls": ["https://www.vol.at", "https://www.vienna.at"], + "strategies": ["desktop", "mobile"], + "categories": ["performance", "pwa"] +} diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/main.py b/airbyte-integrations/connectors/source-google-pagespeed-insights/main.py new file mode 100644 index 000000000000..e187302297dd --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/main.py @@ -0,0 +1,13 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + + +import sys + +from airbyte_cdk.entrypoint import launch +from source_google_pagespeed_insights import SourceGooglePagespeedInsights + +if __name__ == "__main__": + source = SourceGooglePagespeedInsights() + launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/requirements.txt b/airbyte-integrations/connectors/source-google-pagespeed-insights/requirements.txt new file mode 100644 index 000000000000..0411042aa091 --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/requirements.txt @@ -0,0 +1,2 @@ +-e ../../bases/source-acceptance-test +-e . diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/setup.py b/airbyte-integrations/connectors/source-google-pagespeed-insights/setup.py new file mode 100644 index 000000000000..a5e62514c6ff --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/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.1", + "pytest-mock~=3.6.1", + "source-acceptance-test", +] + +setup( + name="source_google_pagespeed_insights", + description="Source implementation for Google Pagespeed Insights.", + 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-google-pagespeed-insights/source_google_pagespeed_insights/__init__.py b/airbyte-integrations/connectors/source-google-pagespeed-insights/source_google_pagespeed_insights/__init__.py new file mode 100644 index 000000000000..0809b1fb2bc7 --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/source_google_pagespeed_insights/__init__.py @@ -0,0 +1,8 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + + +from .source import SourceGooglePagespeedInsights + +__all__ = ["SourceGooglePagespeedInsights"] diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/source_google_pagespeed_insights/google_pagespeed_insights.yaml b/airbyte-integrations/connectors/source-google-pagespeed-insights/source_google_pagespeed_insights/google_pagespeed_insights.yaml new file mode 100644 index 000000000000..9c847ab32a19 --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/source_google_pagespeed_insights/google_pagespeed_insights.yaml @@ -0,0 +1,58 @@ +version: "0.1.0" +definitions: + selector: + extractor: + field_pointer: [] + url_stream_slicer: + type: "ListStreamSlicer" + slice_values: "{{ config['urls'] }}" + cursor_field: url + request_option: + field_name: "url" + inject_into: "request_parameter" + strategy_stream_slicer: + type: "ListStreamSlicer" + slice_values: "{{ config['strategies'] }}" + cursor_field: strategy + request_option: + field_name: "strategy" + inject_into: "request_parameter" + requester: + url_base: "https://www.googleapis.com/pagespeedonline/v5/" + http_method: "GET" + request_options_provider: + request_parameters: + key: "{{ config['api_key'] }}" + category: "{{ config['categories'] }}" + retriever: + record_selector: + $ref: "*ref(definitions.selector)" + paginator: + type: NoPagination + requester: + $ref: "*ref(definitions.requester)" + stream_slicer: + type: CartesianProductStreamSlicer + stream_slicers: + - "*ref(definitions.url_stream_slicer)" + - "*ref(definitions.strategy_stream_slicer)" + base_stream: + retriever: + $ref: "*ref(definitions.retriever)" + pagespeed_stream: + transformations: + - type: AddFields + fields: + - path: ["strategy"] + value: "{{ stream_slice.strategy }}" + $ref: "*ref(definitions.base_stream)" + $options: + name: "pagespeed" + path: "/runPagespeed" + +streams: + - "*ref(definitions.pagespeed_stream)" + +check: + stream_names: + - "pagespeed" 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 new file mode 100644 index 000000000000..b6503bd4d032 --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/source_google_pagespeed_insights/schemas/pagespeed.json @@ -0,0 +1,464 @@ +{ + "$schema": "http://json-schema.org/schema#", + "type": "object", + "properties": { + "strategy": { + "type": "string" + }, + "captchaResult": { + "type": "string" + }, + "kind": { + "type": "string" + }, + "id": { + "type": "string" + }, + "loadingExperience": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "metrics": { + "type": "object", + "properties": { + "CUMULATIVE_LAYOUT_SHIFT_SCORE": { + "type": "object", + "properties": { + "percentile": { + "type": "number" + }, + "distributions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "min": { + "type": "number" + }, + "max": { + "type": "number" + }, + "proportion": { + "type": "number" + } + } + } + }, + "category": { + "type": "string" + } + } + }, + "EXPERIMENTAL_INTERACTION_TO_NEXT_PAINT": { + "type": "object", + "properties": { + "percentile": { + "type": "number" + }, + "distributions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "min": { + "type": "number" + }, + "max": { + "type": "number" + }, + "proportion": { + "type": "number" + } + } + } + }, + "category": { + "type": "string" + } + } + }, + "EXPERIMENTAL_TIME_TO_FIRST_BYTE": { + "type": "object", + "properties": { + "percentile": { + "type": "number" + }, + "distributions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "min": { + "type": "number" + }, + "max": { + "type": "number" + }, + "proportion": { + "type": "number" + } + } + } + }, + "category": { + "type": "string" + } + } + }, + "FIRST_CONTENTFUL_PAINT_MS": { + "type": "object", + "properties": { + "percentile": { + "type": "number" + }, + "distributions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "min": { + "type": "number" + }, + "max": { + "type": "number" + }, + "proportion": { + "type": "number" + } + } + } + }, + "category": { + "type": "string" + } + } + }, + "FIRST_INPUT_DELAY_MS": { + "type": "object", + "properties": { + "percentile": { + "type": "number" + }, + "distributions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "min": { + "type": "number" + }, + "max": { + "type": "number" + }, + "proportion": { + "type": "number" + } + } + } + }, + "category": { + "type": "string" + } + } + }, + "LARGEST_CONTENTFUL_PAINT_MS": { + "type": "object", + "properties": { + "percentile": { + "type": "number" + }, + "distributions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "min": { + "type": "number" + }, + "max": { + "type": "number" + }, + "proportion": { + "type": "number" + } + } + } + }, + "category": { + "type": "string" + } + } + } + } + }, + "overall_category": { + "type": "string" + }, + "initial_url": { + "type": "string" + } + } + }, + "originLoadingExperience": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "metrics": { + "type": "object", + "properties": { + "CUMULATIVE_LAYOUT_SHIFT_SCORE": { + "type": "object", + "properties": { + "percentile": { + "type": "number" + }, + "distributions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "min": { + "type": "number" + }, + "max": { + "type": "number" + }, + "proportion": { + "type": "number" + } + } + } + }, + "category": { + "type": "string" + } + } + }, + "EXPERIMENTAL_INTERACTION_TO_NEXT_PAINT": { + "type": "object", + "properties": { + "percentile": { + "type": "number" + }, + "distributions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "min": { + "type": "number" + }, + "max": { + "type": "number" + }, + "proportion": { + "type": "number" + } + } + } + }, + "category": { + "type": "string" + } + } + }, + "EXPERIMENTAL_TIME_TO_FIRST_BYTE": { + "type": "object", + "properties": { + "percentile": { + "type": "number" + }, + "distributions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "min": { + "type": "number" + }, + "max": { + "type": "number" + }, + "proportion": { + "type": "number" + } + } + } + }, + "category": { + "type": "string" + } + } + }, + "FIRST_CONTENTFUL_PAINT_MS": { + "type": "object", + "properties": { + "percentile": { + "type": "number" + }, + "distributions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "min": { + "type": "number" + }, + "max": { + "type": "number" + }, + "proportion": { + "type": "number" + } + } + } + }, + "category": { + "type": "string" + } + } + }, + "FIRST_INPUT_DELAY_MS": { + "type": "object", + "properties": { + "percentile": { + "type": "number" + }, + "distributions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "min": { + "type": "number" + }, + "max": { + "type": "number" + }, + "proportion": { + "type": "number" + } + } + } + }, + "category": { + "type": "string" + } + } + }, + "LARGEST_CONTENTFUL_PAINT_MS": { + "type": "object", + "properties": { + "percentile": { + "type": "number" + }, + "distributions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "min": { + "type": "number" + }, + "max": { + "type": "number" + }, + "proportion": { + "type": "number" + } + } + } + }, + "category": { + "type": "string" + } + } + } + } + }, + "overall_category": { + "type": "string" + }, + "initial_url": { + "type": "string" + } + } + }, + "lighthouseResult": { + "type": "object", + "properties": { + "requestedUrl": { + "type": "string" + }, + "finalUrl": { + "type": "string" + }, + "lighthouseVersion": { + "type": "string" + }, + "userAgent": { + "type": "string" + }, + "fetchTime": { + "type": "string" + }, + "environment": { + "type": "object", + "properties": { + "networkUserAgent": { + "type": "string" + }, + "hostUserAgent": { + "type": "string" + }, + "benchmarkIndex": { + "type": "number" + } + } + }, + "runWarnings": { + "type": "array" + }, + "configSettings": { + "type": "object", + "properties": { + "emulatedFormFactor": { + "type": "string" + }, + "formFactor": { + "type": "string" + }, + "locale": { + "type": "string" + }, + "onlyCategories": { + "type": "array", + "items": { + "type": "string" + } + }, + "channel": { + "type": "string" + } + } + }, + "audits": { + "type": "object" + }, + "categories": { + "type": "object" + }, + "categoryGroups": { + "type": "object" + } + } + }, + "analysisUTCTimestamp": { + "type": "string" + } + } +} diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/source_google_pagespeed_insights/source.py b/airbyte-integrations/connectors/source-google-pagespeed-insights/source_google_pagespeed_insights/source.py new file mode 100644 index 000000000000..8c5a930baf44 --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/source_google_pagespeed_insights/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 SourceGooglePagespeedInsights(YamlDeclarativeSource): + def __init__(self): + super().__init__(**{"path_to_yaml": "google_pagespeed_insights.yaml"}) diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/source_google_pagespeed_insights/spec.yaml b/airbyte-integrations/connectors/source-google-pagespeed-insights/source_google_pagespeed_insights/spec.yaml new file mode 100644 index 000000000000..e16495561d3e --- /dev/null +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/source_google_pagespeed_insights/spec.yaml @@ -0,0 +1,48 @@ +documentationUrl: https://docs.airbyte.io/integrations/sources/google-pagespeed-insights +connectionSpecification: + $schema: http://json-schema.org/draft-07/schema# + title: Google PageSpeed Insights Spec + type: object + required: + - urls + - strategies + - categories + additionalProperties: true + properties: + api_key: + type: string + title: API Key + description: >- + Google PageSpeed API Key. See here. + The key is optional - however the API is heavily rate limited when using without API Key. + Creating and using the API key therefore is recommended. + The key is case sensitive. + airbyte_secret: true + urls: + type: array + items: + type: string + pattern: ^(?:origin:)?(http(s)?:\/\/)[\w.-]+(?:\.[\w\.-]+)+[\w\-\._~:\/?#[\]@!\$&'\(\)\*\+,;=.]+$ + title: URLs to analyse + description: >- + The URLs to retrieve pagespeed information from. The connector will attempt to sync + PageSpeed reports for all the defined URLs. + Format: https://(www.)url.domain + example: https://example.com + strategies: + type: array + items: + type: string + enum: ["desktop", "mobile"] + title: Analyses Strategies + description: >- + The analyses strategy to use. Either "desktop" or "mobile". + categories: + type: array + items: + type: string + enum: ["accessibility", "best-practices", "performance", "pwa", "seo"] + title: Lighthouse Categories + description: >- + Defines which Lighthouse category to run. One or many of: "accessibility", "best-practices", "performance", "pwa", "seo". diff --git a/airbyte-integrations/connectors/source-greenhouse/README.md b/airbyte-integrations/connectors/source-greenhouse/README.md index d43fca8ea66b..8b1c6864ab6a 100644 --- a/airbyte-integrations/connectors/source-greenhouse/README.md +++ b/airbyte-integrations/connectors/source-greenhouse/README.md @@ -47,10 +47,10 @@ and place them into `secrets/config.json`. ### Locally running the connector ``` -python main_dev.py spec -python main_dev.py check --config secrets/config.json -python main_dev.py discover --config secrets/config.json -python main_dev.py read --config secrets/config.json --catalog integration_tests/configured_catalog.json +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 ``` ### Unit Tests @@ -58,6 +58,15 @@ To run unit tests locally, from the connector directory run: ``` python -m pytest unit_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 +``` +docker build . --no-cache -t airbyte/source-greenhouse:dev \ +&& python -m pytest integration_tests -p integration_tests.acceptance +``` +To run your integration tests with docker ### Locally running the connector docker image diff --git a/airbyte-integrations/connectors/source-greenhouse/acceptance-test-config.yml b/airbyte-integrations/connectors/source-greenhouse/acceptance-test-config.yml index 96bbb9f0b59b..f432b6f0afd8 100644 --- a/airbyte-integrations/connectors/source-greenhouse/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-greenhouse/acceptance-test-config.yml @@ -1,38 +1,89 @@ # 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-greenhouse:dev -tests: +acceptance_tests: spec: - - spec_path: "source_greenhouse/spec.json" + tests: + - spec_path: "source_greenhouse/spec.json" connection: - - config_path: "secrets/config.json" - status: "succeed" - - config_path: "integration_tests/config_invalid.json" - status: "failed" + tests: + - config_path: "secrets/config.json" + status: "succeed" + - config_path: "integration_tests/config_invalid.json" + status: "failed" discovery: - - config_path: "secrets/config.json" - - config_path: "secrets/config_users_only.json" + tests: + - config_path: "secrets/config.json" + - config_path: "secrets/config_users_only.json" basic_read: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - expect_records: - path: "integration_tests/expected_records.txt" - - config_path: "secrets/config_users_only.json" - # test we do not fail when encounter 403 error - configured_catalog_path: "integration_tests/configured_catalog.json" - empty_streams: [ - "applications", "applications_demographics_answers", "applications_interviews", "candidates", "close_reasons", - "custom_fields", "degrees", "demographics_answers", "demographics_answer_options", "questions", - "demographics_answers_answer_options", "demographics_question_sets", "demographics_question_sets_questions", - "departments", "jobs", "jobs_openings", "interviews", "job_posts", "job_stages", "jobs_stages", "offers", - "rejection_reasons", "scorecards", "sources", "demographics_questions" - ] + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + expect_records: + path: "integration_tests/expected_records.txt" + - config_path: "secrets/config_users_only.json" + # test we do not fail when encounter 403 error + configured_catalog_path: "integration_tests/configured_catalog.json" + empty_streams: + - name: "applications" + bypass_reason: "Could return 0 records because of rate limits" + - name: "applications_demographics_answers" + bypass_reason: "Could return 0 records because of rate limits" + - name: "applications_interviews" + bypass_reason: "Could return 0 records because of rate limits" + - name: "candidates" + bypass_reason: "Could return 0 records because of rate limits" + - name: "close_reasons" + bypass_reason: "Could return 0 records because of rate limits" + - name: "custom_fields" + bypass_reason: "Could return 0 records because of rate limits" + - name: "degrees" + bypass_reason: "Could return 0 records because of rate limits" + - name: "demographics_answers" + bypass_reason: "Could return 0 records because of rate limits" + - name: "demographics_answer_options" + bypass_reason: "Could return 0 records because of rate limits" + - name: "questions" + bypass_reason: "Could return 0 records because of rate limits" + - name: "demographics_answers_answer_options" + bypass_reason: "Could return 0 records because of rate limits" + - name: "demographics_question_sets" + bypass_reason: "Could return 0 records because of rate limits" + - name: "demographics_question_sets_questions" + bypass_reason: "Could return 0 records because of rate limits" + - name: "departments" + bypass_reason: "Could return 0 records because of rate limits" + - name: "jobs" + bypass_reason: "Could return 0 records because of rate limits" + - name: "jobs_openings" + bypass_reason: "Could return 0 records because of rate limits" + - name: "interviews" + bypass_reason: "Could return 0 records because of rate limits" + - name: "job_posts" + bypass_reason: "Could return 0 records because of rate limits" + - name: "job_stages" + bypass_reason: "Could return 0 records because of rate limits" + - name: "jobs_stages" + bypass_reason: "Could return 0 records because of rate limits" + - name: "offers" + bypass_reason: "Could return 0 records because of rate limits" + - name: "rejection_reasons" + bypass_reason: "Could return 0 records because of rate limits" + - name: "scorecards" + bypass_reason: "Could return 0 records because of rate limits" + - name: "sources" + bypass_reason: "Could return 0 records because of rate limits" + - name: "demographics_questions" + bypass_reason: "Could return 0 records because of rate limits" full_refresh: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - - config_path: "secrets/config_users_only.json" - configured_catalog_path: "integration_tests/configured_catalog_users_only.json" + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + - config_path: "secrets/config_users_only.json" + configured_catalog_path: "integration_tests/configured_catalog_users_only.json" incremental: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/incremental_configured_catalog.json" - future_state_path: "integration_tests/abnormal_state.json" \ No newline at end of file + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/incremental_configured_catalog.json" + future_state: + future_state_path: "integration_tests/abnormal_state.json" \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-greenhouse/integration_tests/expected_records.txt b/airbyte-integrations/connectors/source-greenhouse/integration_tests/expected_records.txt index 5e2019e3b30d..51ad9db2688c 100644 --- a/airbyte-integrations/connectors/source-greenhouse/integration_tests/expected_records.txt +++ b/airbyte-integrations/connectors/source-greenhouse/integration_tests/expected_records.txt @@ -1,536 +1,65 @@ -{"stream": "applications", "data": {"status": "active", "source": {"public_name": "HRMARKET", "id": 4000067003}, "rejection_reason": null, "rejection_details": null, "rejected_at": null, "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": {"name": "John Lafleur", "id": 4218086003}}, "prospect": true, "location": null, "last_activity_at": "2020-11-24T23:24:37.049Z", "jobs": [], "job_post_id": null, "id": 19214950003, "current_stage": null, "credited_to": {"name": "John Lafleur", "last_name": "Lafleur", "id": 4218086003, "first_name": "John", "employee_id": null}, "candidate_id": 17130511003, "attachments": [], "applied_at": "2020-11-24T23:24:37.023Z", "answers": []}, "emitted_at": 1664285613728} -{"stream": "applications", "data": {"status": "active", "source": {"public_name": "Jobs page on your website", "id": 4000177003}, "rejection_reason": null, "rejection_details": null, "rejected_at": null, "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": {"name": "John Lafleur", "id": 4218086003}}, "prospect": true, "location": null, "last_activity_at": "2020-11-24T23:25:13.804Z", "jobs": [], "job_post_id": null, "id": 19214993003, "current_stage": null, "credited_to": {"name": "John Lafleur", "last_name": "Lafleur", "id": 4218086003, "first_name": "John", "employee_id": null}, "candidate_id": 17130554003, "attachments": [], "applied_at": "2020-11-24T23:25:13.781Z", "answers": []}, "emitted_at": 1664285613729} -{"stream": "applications", "data": {"status": "active", "source": {"public_name": "Internal Applicant", "id": 4000142003}, "rejection_reason": null, "rejection_details": null, "rejected_at": null, "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": null}, "prospect": false, "location": null, "last_activity_at": "2020-11-24T23:28:19.779Z", "jobs": [{"name": "Test job", "id": 4177046003}], "job_post_id": null, "id": 19215172003, "current_stage": {"name": "Preliminary Phone Screen", "id": 5245804003}, "credited_to": {"name": "John Lafleur", "last_name": "Lafleur", "id": 4218086003, "first_name": "John", "employee_id": null}, "candidate_id": 17130732003, "attachments": [], "applied_at": "2020-11-24T23:28:19.712Z", "answers": []}, "emitted_at": 1664285613729} -{"stream": "applications", "data": {"status": "rejected", "source": {"public_name": "Test agency", "id": 4013544003}, "rejection_reason": {"type": {"name": "We rejected them", "id": 4000000003}, "name": "Other (add notes below)", "id": 4000004003}, "rejection_details": {}, "rejected_at": "2021-09-29T16:38:03.637Z", "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": null}, "prospect": false, "location": null, "last_activity_at": "2021-09-29T16:38:03.660Z", "jobs": [{"name": "Test job", "id": 4177046003}], "job_post_id": null, "id": 44933447003, "current_stage": {"name": "Phone Interview", "id": 5245805003}, "credited_to": {"name": "John Lafleur", "last_name": "Lafleur", "id": 4218086003, "first_name": "John", "employee_id": null}, "candidate_id": 40513954003, "attachments": [], "applied_at": "2021-09-29T16:37:27.589Z", "answers": []}, "emitted_at": 1664285613730} -{"stream": "applications", "data": {"status": "active", "source": {"public_name": "Test agency", "id": 4013544003}, "rejection_reason": null, "rejection_details": null, "rejected_at": null, "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": null}, "prospect": false, "location": null, "last_activity_at": "2021-10-10T16:22:13.708Z", "jobs": [{"name": "Test job", "id": 4177046003}], "job_post_id": null, "id": 44937562003, "current_stage": {"name": "Preliminary Phone Screen", "id": 5245804003}, "credited_to": {"name": "Greenhouse Admin", "last_name": "Admin", "id": 4218085003, "first_name": "Greenhouse", "employee_id": null}, "candidate_id": 40517966003, "attachments": [], "applied_at": "2021-09-29T17:20:36.063Z", "answers": []}, "emitted_at": 1664285613730} -{"stream": "applications", "data": {"status": "active", "source": {"public_name": "Test agency", "id": 4013544003}, "rejection_reason": null, "rejection_details": null, "rejected_at": null, "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": null}, "prospect": false, "location": null, "last_activity_at": "2021-11-03T19:56:07.402Z", "jobs": [{"name": "Test job 3", "id": 4466310003}], "job_post_id": 4797691003, "id": 47459993003, "current_stage": {"name": "Application Review", "id": 7332462003}, "credited_to": {"name": "John Lafleur", "last_name": "Lafleur", "id": 4218086003, "first_name": "John", "employee_id": null}, "candidate_id": 42921157003, "attachments": [], "applied_at": "2021-11-03T19:51:14.644Z", "answers": [{"question": "Website", "answer": null}, {"question": "LinkedIn Profile", "answer": null}]}, "emitted_at": 1664285613730} -{"stream": "applications", "data": {"status": "active", "source": {"public_name": "Bubblesort", "id": 4000032003}, "rejection_reason": null, "rejection_details": null, "rejected_at": null, "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": null}, "prospect": false, "location": null, "last_activity_at": "2021-11-22T08:41:55.713Z", "jobs": [{"name": "Copy of Test Job 2", "id": 4446240003}], "job_post_id": null, "id": 48693310003, "current_stage": {"name": "Application Review", "id": 7179760003}, "credited_to": {"name": "emily.brooks+airbyte_integration@greenhouse.io", "last_name": null, "id": 4218087003, "first_name": null, "employee_id": null}, "candidate_id": 44081361003, "attachments": [], "applied_at": "2021-11-22T08:41:55.640Z", "answers": []}, "emitted_at": 1664285613731} -{"stream": "candidates", "data": {"website_addresses": [], "updated_at": "2020-11-24T23:24:37.050Z", "title": null, "tags": [], "social_media_addresses": [], "recruiter": null, "photo_url": null, "phone_numbers": [], "last_name": "Test", "last_activity": "2020-11-24T23:24:37.049Z", "is_private": false, "id": 17130511003, "first_name": "Test", "employments": [], "email_addresses": [], "educations": [], "created_at": "2020-11-24T23:24:37.018Z", "coordinator": null, "company": null, "can_email": true, "attachments": [], "applications": [{"status": "active", "source": {"public_name": "HRMARKET", "id": 4000067003}, "rejection_reason": null, "rejection_details": null, "rejected_at": null, "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": {"name": "John Lafleur", "id": 4218086003}}, "prospect": true, "location": null, "last_activity_at": "2020-11-24T23:24:37.049Z", "jobs": [], "job_post_id": null, "id": 19214950003, "current_stage": null, "credited_to": {"name": "John Lafleur", "last_name": "Lafleur", "id": 4218086003, "first_name": "John", "employee_id": null}, "candidate_id": 17130511003, "attachments": [], "applied_at": "2020-11-24T23:24:37.023Z", "answers": []}], "application_ids": [19214950003], "addresses": []}, "emitted_at": 1664285614231} -{"stream": "candidates", "data": {"website_addresses": [], "updated_at": "2020-11-24T23:25:13.806Z", "title": null, "tags": [], "social_media_addresses": [], "recruiter": null, "photo_url": null, "phone_numbers": [], "last_name": "Test2", "last_activity": "2020-11-24T23:25:13.804Z", "is_private": false, "id": 17130554003, "first_name": "Test2", "employments": [], "email_addresses": [], "educations": [], "created_at": "2020-11-24T23:25:13.777Z", "coordinator": null, "company": null, "can_email": true, "attachments": [], "applications": [{"status": "active", "source": {"public_name": "Jobs page on your website", "id": 4000177003}, "rejection_reason": null, "rejection_details": null, "rejected_at": null, "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": {"name": "John Lafleur", "id": 4218086003}}, "prospect": true, "location": null, "last_activity_at": "2020-11-24T23:25:13.804Z", "jobs": [], "job_post_id": null, "id": 19214993003, "current_stage": null, "credited_to": {"name": "John Lafleur", "last_name": "Lafleur", "id": 4218086003, "first_name": "John", "employee_id": null}, "candidate_id": 17130554003, "attachments": [], "applied_at": "2020-11-24T23:25:13.781Z", "answers": []}], "application_ids": [19214993003], "addresses": []}, "emitted_at": 1664285614233} -{"stream": "candidates", "data": {"website_addresses": [], "updated_at": "2020-11-24T23:28:19.781Z", "title": null, "tags": [], "social_media_addresses": [], "recruiter": null, "photo_url": null, "phone_numbers": [], "last_name": "Lastname", "last_activity": "2020-11-24T23:28:19.779Z", "is_private": false, "id": 17130732003, "first_name": "Name", "employments": [], "email_addresses": [], "educations": [], "created_at": "2020-11-24T23:28:19.710Z", "coordinator": null, "company": null, "can_email": true, "attachments": [], "applications": [{"status": "active", "source": {"public_name": "Internal Applicant", "id": 4000142003}, "rejection_reason": null, "rejection_details": null, "rejected_at": null, "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": null}, "prospect": false, "location": null, "last_activity_at": "2020-11-24T23:28:19.779Z", "jobs": [{"name": "Test job", "id": 4177046003}], "job_post_id": null, "id": 19215172003, "current_stage": {"name": "Preliminary Phone Screen", "id": 5245804003}, "credited_to": {"name": "John Lafleur", "last_name": "Lafleur", "id": 4218086003, "first_name": "John", "employee_id": null}, "candidate_id": 17130732003, "attachments": [], "applied_at": "2020-11-24T23:28:19.712Z", "answers": []}], "application_ids": [19215172003], "addresses": []}, "emitted_at": 1664285614233} -{"stream": "candidates", "data": {"website_addresses": [], "updated_at": "2021-09-29T16:38:03.672Z", "title": null, "tags": [], "social_media_addresses": [], "recruiter": null, "photo_url": null, "phone_numbers": [], "last_name": "User", "last_activity": "2021-09-29T16:38:03.660Z", "is_private": false, "id": 40513954003, "first_name": "Test", "employments": [], "email_addresses": [], "educations": [], "created_at": "2021-09-29T16:37:27.585Z", "coordinator": null, "company": null, "can_email": true, "attachments": [], "applications": [{"status": "rejected", "source": {"public_name": "Test agency", "id": 4013544003}, "rejection_reason": {"type": {"name": "We rejected them", "id": 4000000003}, "name": "Other (add notes below)", "id": 4000004003}, "rejection_details": {}, "rejected_at": "2021-09-29T16:38:03.637Z", "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": null}, "prospect": false, "location": null, "last_activity_at": "2021-09-29T16:38:03.660Z", "jobs": [{"name": "Test job", "id": 4177046003}], "job_post_id": null, "id": 44933447003, "current_stage": {"name": "Phone Interview", "id": 5245805003}, "credited_to": {"name": "John Lafleur", "last_name": "Lafleur", "id": 4218086003, "first_name": "John", "employee_id": null}, "candidate_id": 40513954003, "attachments": [], "applied_at": "2021-09-29T16:37:27.589Z", "answers": []}], "application_ids": [44933447003], "addresses": []}, "emitted_at": 1664285614233} -{"stream": "candidates", "data": {"website_addresses": [], "updated_at": "2021-10-10T16:22:13.718Z", "title": null, "tags": [], "social_media_addresses": [], "recruiter": null, "photo_url": null, "phone_numbers": [], "last_name": "Scheduled Interview", "last_activity": "2021-10-10T16:22:13.708Z", "is_private": false, "id": 40517966003, "first_name": "Test", "employments": [], "email_addresses": [{"value": "vadym.hevlich@zazmic.com", "type": "personal"}], "educations": [], "created_at": "2021-09-29T17:20:36.038Z", "coordinator": null, "company": null, "can_email": true, "attachments": [], "applications": [{"status": "active", "source": {"public_name": "Test agency", "id": 4013544003}, "rejection_reason": null, "rejection_details": null, "rejected_at": null, "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": null}, "prospect": false, "location": null, "last_activity_at": "2021-10-10T16:22:13.708Z", "jobs": [{"name": "Test job", "id": 4177046003}], "job_post_id": null, "id": 44937562003, "current_stage": {"name": "Preliminary Phone Screen", "id": 5245804003}, "credited_to": {"name": "Greenhouse Admin", "last_name": "Admin", "id": 4218085003, "first_name": "Greenhouse", "employee_id": null}, "candidate_id": 40517966003, "attachments": [], "applied_at": "2021-09-29T17:20:36.063Z", "answers": []}], "application_ids": [44937562003], "addresses": []}, "emitted_at": 1664285614234} -{"stream": "candidates", "data": {"website_addresses": [], "updated_at": "2021-11-03T19:56:07.423Z", "title": null, "tags": [], "social_media_addresses": [], "recruiter": null, "photo_url": null, "phone_numbers": [], "last_name": "Candidate", "last_activity": "2021-11-03T19:56:07.402Z", "is_private": false, "id": 42921157003, "first_name": "Test", "employments": [], "email_addresses": [{"value": "vadym.hevlich@zazmic.com", "type": "work"}], "educations": [], "created_at": "2021-11-03T19:51:14.639Z", "coordinator": null, "company": null, "can_email": true, "attachments": [], "applications": [{"status": "active", "source": {"public_name": "Test agency", "id": 4013544003}, "rejection_reason": null, "rejection_details": null, "rejected_at": null, "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": null}, "prospect": false, "location": null, "last_activity_at": "2021-11-03T19:56:07.402Z", "jobs": [{"name": "Test job 3", "id": 4466310003}], "job_post_id": 4797691003, "id": 47459993003, "current_stage": {"name": "Application Review", "id": 7332462003}, "credited_to": {"name": "John Lafleur", "last_name": "Lafleur", "id": 4218086003, "first_name": "John", "employee_id": null}, "candidate_id": 42921157003, "attachments": [], "applied_at": "2021-11-03T19:51:14.644Z", "answers": [{"question": "Website", "answer": null}, {"question": "LinkedIn Profile", "answer": null}]}], "application_ids": [47459993003], "addresses": []}, "emitted_at": 1664285614234} -{"stream": "candidates", "data": {"website_addresses": [], "updated_at": "2021-11-22T08:41:55.716Z", "title": null, "tags": [], "social_media_addresses": [], "recruiter": null, "photo_url": null, "phone_numbers": [], "last_name": "Cherniaev", "last_activity": "2021-11-22T08:41:55.713Z", "is_private": false, "id": 44081361003, "first_name": "Yurii", "employments": [], "email_addresses": [], "educations": [], "created_at": "2021-11-22T08:41:55.634Z", "coordinator": null, "company": null, "can_email": true, "attachments": [], "applications": [{"status": "active", "source": {"public_name": "Bubblesort", "id": 4000032003}, "rejection_reason": null, "rejection_details": null, "rejected_at": null, "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": null}, "prospect": false, "location": null, "last_activity_at": "2021-11-22T08:41:55.713Z", "jobs": [{"name": "Copy of Test Job 2", "id": 4446240003}], "job_post_id": null, "id": 48693310003, "current_stage": {"name": "Application Review", "id": 7179760003}, "credited_to": {"name": "emily.brooks+airbyte_integration@greenhouse.io", "last_name": null, "id": 4218087003, "first_name": null, "employee_id": null}, "candidate_id": 44081361003, "attachments": [], "applied_at": "2021-11-22T08:41:55.640Z", "answers": []}], "application_ids": [48693310003], "addresses": []}, "emitted_at": 1664285614234} -{"stream": "close_reasons", "data": {"id": 4010635003, "name": "Not Filling"}, "emitted_at": 1664285614694} -{"stream": "close_reasons", "data": {"id": 4010634003, "name": "On Hold"}, "emitted_at": 1664285614695} -{"stream": "close_reasons", "data": {"id": 4010633003, "name": "Hire - New Headcount"}, "emitted_at": 1664285614695} -{"stream": "close_reasons", "data": {"id": 4010632003, "name": "Hire - Backfill"}, "emitted_at": 1664285614695} -{"stream": "degrees", "data": {"id": 10848287003, "name": "High School", "priority": 0, "external_id": null}, "emitted_at": 1664285615360} -{"stream": "degrees", "data": {"id": 10848288003, "name": "Associate's Degree", "priority": 1, "external_id": null}, "emitted_at": 1664285615361} -{"stream": "degrees", "data": {"id": 10848289003, "name": "Bachelor's Degree", "priority": 2, "external_id": null}, "emitted_at": 1664285615361} -{"stream": "degrees", "data": {"id": 10848290003, "name": "Master's Degree", "priority": 3, "external_id": null}, "emitted_at": 1664285615361} -{"stream": "degrees", "data": {"id": 10848291003, "name": "Master of Business Administration (M.B.A.)", "priority": 4, "external_id": null}, "emitted_at": 1664285615361} -{"stream": "degrees", "data": {"id": 10848292003, "name": "Juris Doctor (J.D.)", "priority": 5, "external_id": null}, "emitted_at": 1664285615361} -{"stream": "degrees", "data": {"id": 10848293003, "name": "Doctor of Medicine (M.D.)", "priority": 6, "external_id": null}, "emitted_at": 1664285615362} -{"stream": "degrees", "data": {"id": 10848294003, "name": "Doctor of Philosophy (Ph.D.)", "priority": 7, "external_id": null}, "emitted_at": 1664285615362} -{"stream": "degrees", "data": {"id": 10848295003, "name": "Engineer's Degree", "priority": 8, "external_id": null}, "emitted_at": 1664285615362} -{"stream": "degrees", "data": {"id": 10848296003, "name": "Other", "priority": 9, "external_id": null}, "emitted_at": 1664285615362} -{"stream": "departments", "data": {"id": 4028123003, "name": "test dep 2", "parent_id": null, "parent_department_external_id": null, "child_ids": [], "child_department_external_ids": [], "external_id": null}, "emitted_at": 1664285616280} -{"stream": "departments", "data": {"id": 4028122003, "name": "Test dep1", "parent_id": null, "parent_department_external_id": null, "child_ids": [], "child_department_external_ids": [], "external_id": null}, "emitted_at": 1664285616281} -{"stream": "job_posts", "data": {"id": 4252332003, "active": true, "live": false, "first_published_at": null, "title": "Test job", "location": {"id": 4219721003, "name": "test", "office_id": null, "job_post_location_type": {"id": 4000000003, "name": "Free Text"}}, "internal": false, "external": true, "job_id": 4177046003, "content": "

    Test description

    ", "internal_content": null, "updated_at": "2021-04-02T17:38:54.835Z", "created_at": "2020-11-24T23:29:24.315Z", "demographic_question_set_id": null, "questions": [{"required": true, "private": false, "label": "First Name", "name": "first_name", "type": "short_text", "values": [], "description": null}, {"required": true, "private": false, "label": "Last Name", "name": "last_name", "type": "short_text", "values": [], "description": null}, {"required": true, "private": false, "label": "Email", "name": "email", "type": "short_text", "values": [], "description": null}, {"required": false, "private": false, "label": "Phone", "name": "phone", "type": "short_text", "values": [], "description": null}, {"required": false, "private": false, "label": "Resume", "name": "resume", "type": "attachment", "values": [], "description": null}, {"required": false, "private": false, "label": "Cover Letter", "name": "cover_letter", "type": "attachment", "values": [], "description": null}, {"required": null, "private": false, "label": "LinkedIn Profile", "name": "question_5125927003", "type": "short_text", "values": [], "description": null}, {"required": null, "private": false, "label": "Website", "name": "question_5125928003", "type": "short_text", "values": [], "description": null}]}, "emitted_at": 1664285617008} -{"stream": "job_posts", "data": {"id": 4751597003, "active": true, "live": false, "first_published_at": null, "title": "Test Job 2", "location": {"id": 4700649003, "name": "US", "office_id": null, "job_post_location_type": {"id": 4000000003, "name": "Free Text"}}, "internal": false, "external": true, "job_id": 4177048003, "content": "

    Job post content

    ", "internal_content": null, "updated_at": "2021-10-07T18:46:59.032Z", "created_at": "2021-10-07T18:46:58.846Z", "demographic_question_set_id": null, "questions": [{"required": true, "private": false, "label": "First Name", "name": "first_name", "type": "short_text", "values": [], "description": null}, {"required": true, "private": false, "label": "Last Name", "name": "last_name", "type": "short_text", "values": [], "description": null}, {"required": true, "private": false, "label": "Email", "name": "email", "type": "short_text", "values": [], "description": null}, {"required": false, "private": false, "label": "Phone", "name": "phone", "type": "short_text", "values": [], "description": null}, {"required": false, "private": false, "label": "Resume", "name": "resume", "type": "attachment", "values": [], "description": null}, {"required": false, "private": false, "label": "Cover Letter", "name": "cover_letter", "type": "attachment", "values": [], "description": null}, {"required": null, "private": false, "label": "LinkedIn Profile", "name": "question_7911674003", "type": "short_text", "values": [], "description": null}, {"required": null, "private": false, "label": "Website", "name": "question_7911675003", "type": "short_text", "values": [], "description": null}]}, "emitted_at": 1664285617009} -{"stream": "job_posts", "data": {"id": 4752433003, "active": true, "live": false, "first_published_at": null, "title": "Test Job 2", "location": {"id": 4701484003, "name": "US", "office_id": null, "job_post_location_type": {"id": 4000000003, "name": "Free Text"}}, "internal": false, "external": true, "job_id": 4446240003, "content": "

    Job post content

    ", "internal_content": null, "updated_at": "2021-10-08T08:19:42.720Z", "created_at": "2021-10-08T08:19:42.720Z", "demographic_question_set_id": null, "questions": [{"required": true, "private": false, "label": "First Name", "name": "first_name", "type": "short_text", "values": [], "description": null}, {"required": true, "private": false, "label": "Last Name", "name": "last_name", "type": "short_text", "values": [], "description": null}, {"required": true, "private": false, "label": "Email", "name": "email", "type": "short_text", "values": [], "description": null}, {"required": false, "private": false, "label": "Phone", "name": "phone", "type": "short_text", "values": [], "description": null}, {"required": false, "private": false, "label": "Resume", "name": "resume", "type": "attachment", "values": [], "description": null}, {"required": false, "private": false, "label": "Cover Letter", "name": "cover_letter", "type": "attachment", "values": [], "description": null}, {"required": null, "private": false, "label": "LinkedIn Profile", "name": "question_7918434003", "type": "short_text", "values": [], "description": null}, {"required": null, "private": false, "label": "Website", "name": "question_7918435003", "type": "short_text", "values": [], "description": null}]}, "emitted_at": 1664285617009} -{"stream": "job_posts", "data": {"id": 4797691003, "active": true, "live": false, "first_published_at": null, "title": "Test job 3", "location": {"id": 4746722003, "name": "US", "office_id": null, "job_post_location_type": {"id": 4000000003, "name": "Free Text"}}, "internal": false, "external": true, "job_id": 4466310003, "content": "

    job description

    ", "internal_content": null, "updated_at": "2021-11-03T19:48:29.808Z", "created_at": "2021-11-03T19:48:29.629Z", "demographic_question_set_id": 4000198003, "questions": [{"required": true, "private": false, "label": "First Name", "name": "first_name", "type": "short_text", "values": [], "description": null}, {"required": true, "private": false, "label": "Last Name", "name": "last_name", "type": "short_text", "values": [], "description": null}, {"required": true, "private": false, "label": "Email", "name": "email", "type": "short_text", "values": [], "description": null}, {"required": false, "private": false, "label": "Phone", "name": "phone", "type": "short_text", "values": [], "description": null}, {"required": false, "private": false, "label": "Resume", "name": "resume", "type": "attachment", "values": [], "description": null}, {"required": false, "private": false, "label": "Cover Letter", "name": "cover_letter", "type": "attachment", "values": [], "description": null}, {"required": null, "private": false, "label": "LinkedIn Profile", "name": "question_8215275003", "type": "short_text", "values": [], "description": null}, {"required": null, "private": false, "label": "Website", "name": "question_8215276003", "type": "short_text", "values": [], "description": null}]}, "emitted_at": 1664285617010} -{"stream": "jobs", "data": {"id": 4177046003, "name": "Test job", "requisition_id": "3", "notes": null, "confidential": false, "is_template": true, "copied_from_id": null, "status": "open", "created_at": "2020-11-24T23:27:11.699Z", "opened_at": "2020-11-24T23:27:11.878Z", "closed_at": null, "updated_at": "2021-04-21T17:48:24.779Z", "departments": [{"id": 4028122003, "name": "Test dep1", "parent_id": null, "parent_department_external_id": null, "child_ids": [], "child_department_external_ids": [], "external_id": null}], "offices": [{"id": 4019854003, "name": "Test office", "location": {"name": null}, "primary_contact_user_id": 4218086003, "parent_id": null, "parent_office_external_id": null, "child_ids": [], "child_office_external_ids": [], "external_id": null}], "hiring_team": {"hiring_managers": [], "recruiters": [], "coordinators": [], "sourcers": []}, "openings": [{"id": 4320015003, "opening_id": "3-1", "status": "open", "opened_at": "2020-11-24T23:27:11.723Z", "closed_at": null, "application_id": null, "close_reason": null}], "custom_fields": {"employment_type": null}, "keyed_custom_fields": {"employment_type": {"name": "Employment Type", "type": "single_select", "value": null}}}, "emitted_at": 1664285617812} -{"stream": "jobs", "data": {"id": 4177048003, "name": "Test Job 2", "requisition_id": "4", "notes": null, "confidential": false, "is_template": false, "copied_from_id": null, "status": "open", "created_at": "2020-11-24T23:27:45.634Z", "opened_at": "2020-11-24T23:27:45.878Z", "closed_at": null, "updated_at": "2021-10-07T18:46:58.982Z", "departments": [{"id": 4028123003, "name": "test dep 2", "parent_id": null, "parent_department_external_id": null, "child_ids": [], "child_department_external_ids": [], "external_id": null}], "offices": [{"id": 4019854003, "name": "Test office", "location": {"name": null}, "primary_contact_user_id": 4218086003, "parent_id": null, "parent_office_external_id": null, "child_ids": [], "child_office_external_ids": [], "external_id": null}], "hiring_team": {"hiring_managers": [], "recruiters": [], "coordinators": [], "sourcers": []}, "openings": [{"id": 4320018003, "opening_id": "4-1", "status": "open", "opened_at": "2020-11-24T23:27:45.665Z", "closed_at": null, "application_id": null, "close_reason": null}], "custom_fields": {"employment_type": null}, "keyed_custom_fields": {"employment_type": {"name": "Employment Type", "type": "single_select", "value": null}}}, "emitted_at": 1664285617813} -{"stream": "jobs", "data": {"id": 4446240003, "name": "Copy of Test Job 2", "requisition_id": "5", "notes": null, "confidential": false, "is_template": false, "copied_from_id": 4177048003, "status": "open", "created_at": "2021-10-08T08:19:42.383Z", "opened_at": "2021-10-08T08:19:42.818Z", "closed_at": null, "updated_at": "2021-10-08T08:19:42.821Z", "departments": [{"id": 4028123003, "name": "test dep 2", "parent_id": null, "parent_department_external_id": null, "child_ids": [], "child_department_external_ids": [], "external_id": null}], "offices": [{"id": 4019854003, "name": "Test office", "location": {"name": null}, "primary_contact_user_id": 4218086003, "parent_id": null, "parent_office_external_id": null, "child_ids": [], "child_office_external_ids": [], "external_id": null}], "hiring_team": {"hiring_managers": [], "recruiters": [], "coordinators": [], "sourcers": []}, "openings": [{"id": 4928188003, "opening_id": "5-2", "status": "open", "opened_at": "2021-10-10T16:39:24.949Z", "closed_at": null, "application_id": null, "close_reason": null}, {"id": 4928187003, "opening_id": "5-2", "status": "open", "opened_at": "2021-10-10T16:39:08.365Z", "closed_at": null, "application_id": null, "close_reason": null}, {"id": 4928186003, "opening_id": "5-1", "status": "open", "opened_at": "2021-10-10T16:38:57.407Z", "closed_at": null, "application_id": null, "close_reason": null}, {"id": 4926182003, "opening_id": "5-1", "status": "open", "opened_at": "2021-10-08T08:19:42.457Z", "closed_at": null, "application_id": null, "close_reason": null}, {"id": 4926183003, "opening_id": "5-2", "status": "open", "opened_at": "2021-10-08T08:19:42.457Z", "closed_at": null, "application_id": null, "close_reason": null}], "custom_fields": {"employment_type": "Full-time"}, "keyed_custom_fields": {"employment_type": {"name": "Employment Type", "type": "single_select", "value": "Full-time"}}}, "emitted_at": 1664285617813} -{"stream": "jobs", "data": {"id": 4466310003, "name": "Test job 3", "requisition_id": "6", "notes": null, "confidential": false, "is_template": false, "copied_from_id": null, "status": "open", "created_at": "2021-11-03T19:46:51.107Z", "opened_at": "2021-11-03T19:46:51.347Z", "closed_at": null, "updated_at": "2021-11-03T19:48:29.760Z", "departments": [{"id": 4028122003, "name": "Test dep1", "parent_id": null, "parent_department_external_id": null, "child_ids": [], "child_department_external_ids": [], "external_id": null}], "offices": [{"id": 4019854003, "name": "Test office", "location": {"name": null}, "primary_contact_user_id": 4218086003, "parent_id": null, "parent_office_external_id": null, "child_ids": [], "child_office_external_ids": [], "external_id": null}], "hiring_team": {"hiring_managers": [], "recruiters": [], "coordinators": [], "sourcers": []}, "openings": [{"id": 4970166003, "opening_id": "6-1", "status": "open", "opened_at": "2021-11-30T01:00:00.000Z", "closed_at": null, "application_id": null, "close_reason": null}], "custom_fields": {"employment_type": "Full-time"}, "keyed_custom_fields": {"employment_type": {"name": "Employment Type", "type": "single_select", "value": "Full-time"}}}, "emitted_at": 1664285617814} -{"stream": "offers", "data": {"id": 4154100003, "version": 1, "application_id": 19215333003, "created_at": "2020-11-24T23:32:25.760Z", "updated_at": "2020-11-24T23:32:25.772Z", "sent_at": null, "resolved_at": null, "starts_at": "2020-12-04", "status": "unresolved", "job_id": 4177048003, "candidate_id": 17130848003, "opening": {"id": 4320018003, "opening_id": "4-1", "status": "open", "opened_at": "2020-11-24T23:27:45.665Z", "closed_at": null, "application_id": null, "close_reason": null}, "custom_fields": {"employment_type": "Contract"}, "keyed_custom_fields": {"employment_type": {"name": "Employment Type", "type": "single_select", "value": "Contract"}}}, "emitted_at": 1664285618339} -{"stream": "scorecards", "data": {"id": 5253031003, "updated_at": "2020-11-24T23:33:10.440Z", "created_at": "2020-11-24T23:33:10.440Z", "interview": "Application Review", "interview_step": {"id": 5628634003, "name": "Application Review"}, "candidate_id": 17130848003, "application_id": 19215333003, "interviewed_at": "2020-11-25T01:00:00.000Z", "submitted_by": {"id": 4218086003, "first_name": "John", "last_name": "Lafleur", "name": "John Lafleur", "employee_id": null}, "interviewer": {"id": 4218086003, "first_name": "John", "last_name": "Lafleur", "name": "John Lafleur", "employee_id": null}, "submitted_at": "2020-11-24T23:33:10.440Z", "overall_recommendation": "no_decision", "attributes": [{"name": "Willing to do required travel", "type": "Details", "note": null, "rating": "no_decision"}, {"name": "Three to five years of experience", "type": "Qualifications", "note": null, "rating": "no_decision"}, {"name": "Personable", "type": "Personality Traits", "note": null, "rating": "no_decision"}, {"name": "Passionate", "type": "Personality Traits", "note": null, "rating": "no_decision"}, {"name": "Organizational Skills", "type": "Skills", "note": null, "rating": "no_decision"}, {"name": "Manage competing priorities", "type": "Skills", "note": null, "rating": "no_decision"}, {"name": "Fits our salary range", "type": "Details", "note": null, "rating": "no_decision"}, {"name": "Empathetic", "type": "Personality Traits", "note": null, "rating": "no_decision"}, {"name": "Currently based locally", "type": "Details", "note": null, "rating": "no_decision"}, {"name": "Communication", "type": "Skills", "note": null, "rating": "no_decision"}], "ratings": {"definitely_not": [], "no": [], "mixed": [], "yes": [], "strong_yes": []}, "questions": [{"id": null, "question": "Key Take-Aways", "answer": ""}, {"id": null, "question": "Private Notes", "answer": ""}]}, "emitted_at": 1664285619010} -{"stream": "scorecards", "data": {"id": 9664505003, "updated_at": "2021-09-29T17:23:11.468Z", "created_at": "2021-09-29T17:23:11.468Z", "interview": "Preliminary Screening Call", "interview_step": {"id": 5628615003, "name": "Preliminary Screening Call"}, "candidate_id": 40517966003, "application_id": 44937562003, "interviewed_at": "2021-09-29T01:00:00.000Z", "submitted_by": {"id": 4218086003, "first_name": "John", "last_name": "Lafleur", "name": "John Lafleur", "employee_id": null}, "interviewer": {"id": 4218086003, "first_name": "John", "last_name": "Lafleur", "name": "John Lafleur", "employee_id": null}, "submitted_at": "2021-09-29T17:23:11.468Z", "overall_recommendation": "no_decision", "attributes": [{"name": "Willing to do required travel", "type": "Details", "note": null, "rating": "yes"}, {"name": "Three to five years of experience", "type": "Qualifications", "note": null, "rating": "mixed"}, {"name": "Personable", "type": "Personality Traits", "note": null, "rating": "yes"}, {"name": "Passionate", "type": "Personality Traits", "note": null, "rating": "mixed"}, {"name": "Organizational Skills", "type": "Skills", "note": null, "rating": "yes"}, {"name": "Manage competing priorities", "type": "Skills", "note": null, "rating": "yes"}, {"name": "Fits our salary range", "type": "Details", "note": null, "rating": "yes"}, {"name": "Empathetic", "type": "Personality Traits", "note": null, "rating": "strong_yes"}, {"name": "Currently based locally", "type": "Details", "note": null, "rating": "mixed"}, {"name": "Communication", "type": "Skills", "note": null, "rating": "no"}], "ratings": {"definitely_not": [], "no": ["Communication"], "mixed": ["Three to five years of experience", "Passionate", "Currently based locally"], "yes": ["Willing to do required travel", "Personable", "Organizational Skills", "Manage competing priorities", "Fits our salary range"], "strong_yes": ["Empathetic"]}, "questions": [{"id": null, "question": "Key Take-Aways", "answer": "test"}, {"id": null, "question": "Private Notes", "answer": ""}]}, "emitted_at": 1664285619011} -{"stream": "users", "data": {"id": 4218085003, "name": "Greenhouse Admin", "first_name": "Greenhouse", "last_name": "Admin", "primary_email_address": "scrubbed_email_vq8-rm4513etm7xxd9d1qq@example.com", "updated_at": "2020-11-18T14:09:08.401Z", "created_at": "2020-11-18T14:09:08.401Z", "disabled": false, "site_admin": true, "emails": ["scrubbed_email_vq8-rm4513etm7xxd9d1qq@example.com"], "employee_id": null, "linked_candidate_ids": [], "offices": [], "departments": []}, "emitted_at": 1664285619554} -{"stream": "users", "data": {"id": 4218086003, "name": "John Lafleur", "first_name": "John", "last_name": "Lafleur", "primary_email_address": "integration-test@airbyte.io", "updated_at": "2022-09-27T13:00:12.685Z", "created_at": "2020-11-18T14:09:08.481Z", "disabled": false, "site_admin": true, "emails": ["integration-test@airbyte.io"], "employee_id": null, "linked_candidate_ids": [], "offices": [], "departments": []}, "emitted_at": 1664285619555} -{"stream": "users", "data": {"id": 4218087003, "name": "emily.brooks+airbyte_integration@greenhouse.io", "first_name": null, "last_name": null, "primary_email_address": "emily.brooks+airbyte_integration@greenhouse.io", "updated_at": "2020-11-18T14:09:08.991Z", "created_at": "2020-11-18T14:09:08.809Z", "disabled": false, "site_admin": true, "emails": ["emily.brooks+airbyte_integration@greenhouse.io"], "employee_id": null, "linked_candidate_ids": [], "offices": [], "departments": []}, "emitted_at": 1664285619555} -{"stream": "users", "data": {"id": 4460715003, "name": "Vadym Ratniuk", "first_name": "Vadym", "last_name": "Ratniuk", "primary_email_address": "vadym.ratniuk@globallogic.com", "updated_at": "2021-09-18T10:09:16.846Z", "created_at": "2021-09-14T14:03:01.050Z", "disabled": false, "site_admin": false, "emails": ["vadym.ratniuk@globallogic.com"], "employee_id": null, "linked_candidate_ids": [], "offices": [], "departments": []}, "emitted_at": 1664285619556} -{"stream": "users", "data": {"id": 4481107003, "name": "Vadym Hevlich", "first_name": "Vadym", "last_name": "Hevlich", "primary_email_address": "vadym.hevlich@zazmic.com", "updated_at": "2021-10-10T17:49:28.058Z", "created_at": "2021-10-10T17:48:41.978Z", "disabled": false, "site_admin": true, "emails": ["vadym.hevlich@zazmic.com"], "employee_id": null, "linked_candidate_ids": [], "offices": [], "departments": []}, "emitted_at": 1664285619556} -{"stream": "custom_fields", "data": {"id": 4680898003, "name": "School Name", "active": true, "field_type": "candidate", "priority": 0, "value_type": "single_select", "private": false, "required": false, "require_approval": false, "trigger_new_version": false, "name_key": "school_name", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": [{"id": 10845822003, "name": "Abraham Baldwin Agricultural College", "priority": 0, "external_id": null}, {"id": 10845823003, "name": "Academy of Art University", "priority": 1, "external_id": null}, {"id": 10845824003, "name": "Acadia University", "priority": 2, "external_id": null}, {"id": 10845825003, "name": "Adams State University", "priority": 3, "external_id": null}, {"id": 10845826003, "name": "Adelphi University", "priority": 4, "external_id": null}, {"id": 10845827003, "name": "Adrian College", "priority": 5, "external_id": null}, {"id": 10845828003, "name": "Adventist University of Health Sciences", "priority": 6, "external_id": null}, {"id": 10845829003, "name": "Agnes Scott College", "priority": 7, "external_id": null}, {"id": 10845830003, "name": "AIB College of Business", "priority": 8, "external_id": null}, {"id": 10845831003, "name": "Alaska Pacific University", "priority": 9, "external_id": null}, {"id": 10845832003, "name": "Albany College of Pharmacy and Health Sciences", "priority": 10, "external_id": null}, {"id": 10845833003, "name": "Albany State University", "priority": 11, "external_id": null}, {"id": 10845834003, "name": "Albertus Magnus College", "priority": 12, "external_id": null}, {"id": 10845835003, "name": "Albion College", "priority": 13, "external_id": null}, {"id": 10845836003, "name": "Albright College", "priority": 14, "external_id": null}, {"id": 10845837003, "name": "Alderson Broaddus University", "priority": 15, "external_id": null}, {"id": 10845838003, "name": "Alfred University", "priority": 16, "external_id": null}, {"id": 10845839003, "name": "Alice Lloyd College", "priority": 17, "external_id": null}, {"id": 10845840003, "name": "Allegheny College", "priority": 18, "external_id": null}, {"id": 10845841003, "name": "Allen College", "priority": 19, "external_id": null}, {"id": 10845842003, "name": "Allen University", "priority": 20, "external_id": null}, {"id": 10845843003, "name": "Alliant International University", "priority": 21, "external_id": null}, {"id": 10845844003, "name": "Alma College", "priority": 22, "external_id": null}, {"id": 10845845003, "name": "Alvernia University", "priority": 23, "external_id": null}, {"id": 10845846003, "name": "Alverno College", "priority": 24, "external_id": null}, {"id": 10845847003, "name": "Amberton University", "priority": 25, "external_id": null}, {"id": 10845848003, "name": "American Academy of Art", "priority": 26, "external_id": null}, {"id": 10845849003, "name": "American Indian College of the Assemblies of God", "priority": 27, "external_id": null}, {"id": 10845850003, "name": "American InterContinental University", "priority": 28, "external_id": null}, {"id": 10845851003, "name": "American International College", "priority": 29, "external_id": null}, {"id": 10845852003, "name": "American Jewish University", "priority": 30, "external_id": null}, {"id": 10845853003, "name": "American Public University System", "priority": 31, "external_id": null}, {"id": 10845854003, "name": "American University", "priority": 32, "external_id": null}, {"id": 10845855003, "name": "American University in Bulgaria", "priority": 33, "external_id": null}, {"id": 10845856003, "name": "American University in Cairo", "priority": 34, "external_id": null}, {"id": 10845857003, "name": "American University of Beirut", "priority": 35, "external_id": null}, {"id": 10845858003, "name": "American University of Paris", "priority": 36, "external_id": null}, {"id": 10845859003, "name": "American University of Puerto Rico", "priority": 37, "external_id": null}, {"id": 10845860003, "name": "Amherst College", "priority": 38, "external_id": null}, {"id": 10845861003, "name": "Amridge University", "priority": 39, "external_id": null}, {"id": 10845862003, "name": "Anderson University", "priority": 40, "external_id": null}, {"id": 10845863003, "name": "Andrews University", "priority": 41, "external_id": null}, {"id": 10845864003, "name": "Angelo State University", "priority": 42, "external_id": null}, {"id": 10845865003, "name": "Anna Maria College", "priority": 43, "external_id": null}, {"id": 10845866003, "name": "Antioch University", "priority": 44, "external_id": null}, {"id": 10845867003, "name": "Appalachian Bible College", "priority": 45, "external_id": null}, {"id": 10845868003, "name": "Aquinas College", "priority": 46, "external_id": null}, {"id": 10845869003, "name": "Arcadia University", "priority": 47, "external_id": null}, {"id": 10845870003, "name": "Argosy University", "priority": 48, "external_id": null}, {"id": 10845871003, "name": "Arizona Christian University", "priority": 49, "external_id": null}, {"id": 10845872003, "name": "Arizona State University - West", "priority": 50, "external_id": null}, {"id": 10845873003, "name": "Arkansas Baptist College", "priority": 51, "external_id": null}, {"id": 10845874003, "name": "Arkansas Tech University", "priority": 52, "external_id": null}, {"id": 10845875003, "name": "Armstrong Atlantic State University", "priority": 53, "external_id": null}, {"id": 10845876003, "name": "Art Academy of Cincinnati", "priority": 54, "external_id": null}, {"id": 10845877003, "name": "Art Center College of Design", "priority": 55, "external_id": null}, {"id": 10845878003, "name": "Art Institute of Atlanta", "priority": 56, "external_id": null}, {"id": 10845879003, "name": "Art Institute of Colorado", "priority": 57, "external_id": null}, {"id": 10845880003, "name": "Art Institute of Houston", "priority": 58, "external_id": null}, {"id": 10845881003, "name": "Art Institute of Pittsburgh", "priority": 59, "external_id": null}, {"id": 10845882003, "name": "Art Institute of Portland", "priority": 60, "external_id": null}, {"id": 10845883003, "name": "Art Institute of Seattle", "priority": 61, "external_id": null}, {"id": 10845884003, "name": "Asbury University", "priority": 62, "external_id": null}, {"id": 10845885003, "name": "Ashford University", "priority": 63, "external_id": null}, {"id": 10845886003, "name": "Ashland University", "priority": 64, "external_id": null}, {"id": 10845887003, "name": "Assumption College", "priority": 65, "external_id": null}, {"id": 10845888003, "name": "Athens State University", "priority": 66, "external_id": null}, {"id": 10845889003, "name": "Auburn University - Montgomery", "priority": 67, "external_id": null}, {"id": 10845890003, "name": "Augsburg College", "priority": 68, "external_id": null}, {"id": 10845891003, "name": "Augustana College", "priority": 69, "external_id": null}, {"id": 10845892003, "name": "Aurora University", "priority": 70, "external_id": null}, {"id": 10845893003, "name": "Austin College", "priority": 71, "external_id": null}, {"id": 10845894003, "name": "Alcorn State University", "priority": 72, "external_id": null}, {"id": 10845895003, "name": "Ave Maria University", "priority": 73, "external_id": null}, {"id": 10845896003, "name": "Averett University", "priority": 74, "external_id": null}, {"id": 10845897003, "name": "Avila University", "priority": 75, "external_id": null}, {"id": 10845898003, "name": "Azusa Pacific University", "priority": 76, "external_id": null}, {"id": 10845899003, "name": "Babson College", "priority": 77, "external_id": null}, {"id": 10845900003, "name": "Bacone College", "priority": 78, "external_id": null}, {"id": 10845901003, "name": "Baker College of Flint", "priority": 79, "external_id": null}, {"id": 10845902003, "name": "Baker University", "priority": 80, "external_id": null}, {"id": 10845903003, "name": "Baldwin Wallace University", "priority": 81, "external_id": null}, {"id": 10845904003, "name": "Christian Brothers University", "priority": 82, "external_id": null}, {"id": 10845905003, "name": "Abilene Christian University", "priority": 83, "external_id": null}, {"id": 10845906003, "name": "Arizona State University", "priority": 84, "external_id": null}, {"id": 10845907003, "name": "Auburn University", "priority": 85, "external_id": null}, {"id": 10845908003, "name": "Alabama A&M University", "priority": 86, "external_id": null}, {"id": 10845909003, "name": "Alabama State University", "priority": 87, "external_id": null}, {"id": 10845910003, "name": "Arkansas State University", "priority": 88, "external_id": null}, {"id": 10845911003, "name": "Baptist Bible College", "priority": 89, "external_id": null}, {"id": 10845912003, "name": "Baptist Bible College and Seminary", "priority": 90, "external_id": null}, {"id": 10845913003, "name": "Baptist College of Florida", "priority": 91, "external_id": null}, {"id": 10845914003, "name": "Baptist Memorial College of Health Sciences", "priority": 92, "external_id": null}, {"id": 10845915003, "name": "Baptist Missionary Association Theological Seminary", "priority": 93, "external_id": null}, {"id": 10845916003, "name": "Bard College", "priority": 94, "external_id": null}, {"id": 10845917003, "name": "Bard College at Simon's Rock", "priority": 95, "external_id": null}, {"id": 10845918003, "name": "Barnard College", "priority": 96, "external_id": null}, {"id": 10845919003, "name": "Barry University", "priority": 97, "external_id": null}, {"id": 10845920003, "name": "Barton College", "priority": 98, "external_id": null}, {"id": 10845921003, "name": "Bastyr University", "priority": 99, "external_id": null}, {"id": 10845922003, "name": "Bates College", "priority": 100, "external_id": null}, {"id": 10845923003, "name": "Bauder College", "priority": 101, "external_id": null}, {"id": 10845924003, "name": "Bay Path College", "priority": 102, "external_id": null}, {"id": 10845925003, "name": "Bay State College", "priority": 103, "external_id": null}, {"id": 10845926003, "name": "Bayamon Central University", "priority": 104, "external_id": null}, {"id": 10845927003, "name": "Beacon College", "priority": 105, "external_id": null}, {"id": 10845928003, "name": "Becker College", "priority": 106, "external_id": null}, {"id": 10845929003, "name": "Belhaven University", "priority": 107, "external_id": null}, {"id": 10845930003, "name": "Bellarmine University", "priority": 108, "external_id": null}, {"id": 10845931003, "name": "Bellevue College", "priority": 109, "external_id": null}, {"id": 10845932003, "name": "Bellevue University", "priority": 110, "external_id": null}, {"id": 10845933003, "name": "Bellin College", "priority": 111, "external_id": null}, {"id": 10845934003, "name": "Belmont Abbey College", "priority": 112, "external_id": null}, {"id": 10845935003, "name": "Belmont University", "priority": 113, "external_id": null}, {"id": 10845936003, "name": "Beloit College", "priority": 114, "external_id": null}, {"id": 10845937003, "name": "Bemidji State University", "priority": 115, "external_id": null}, {"id": 10845938003, "name": "Benedict College", "priority": 116, "external_id": null}, {"id": 10845939003, "name": "Benedictine College", "priority": 117, "external_id": null}, {"id": 10845940003, "name": "Benedictine University", "priority": 118, "external_id": null}, {"id": 10845941003, "name": "Benjamin Franklin Institute of Technology", "priority": 119, "external_id": null}, {"id": 10845942003, "name": "Bennett College", "priority": 120, "external_id": null}, {"id": 10845943003, "name": "Bennington College", "priority": 121, "external_id": null}, {"id": 10845944003, "name": "Bentley University", "priority": 122, "external_id": null}, {"id": 10845945003, "name": "Berea College", "priority": 123, "external_id": null}, {"id": 10845946003, "name": "Berkeley College", "priority": 124, "external_id": null}, {"id": 10845947003, "name": "Berklee College of Music", "priority": 125, "external_id": null}, {"id": 10845948003, "name": "Berry College", "priority": 126, "external_id": null}, {"id": 10845949003, "name": "Bethany College", "priority": 127, "external_id": null}, {"id": 10845950003, "name": "Bethany Lutheran College", "priority": 128, "external_id": null}, {"id": 10845951003, "name": "Bethel College", "priority": 129, "external_id": null}, {"id": 10845952003, "name": "Bethel University", "priority": 130, "external_id": null}, {"id": 10845953003, "name": "BI Norwegian Business School", "priority": 131, "external_id": null}, {"id": 10845954003, "name": "Binghamton University - SUNY", "priority": 132, "external_id": null}, {"id": 10845955003, "name": "Biola University", "priority": 133, "external_id": null}, {"id": 10845956003, "name": "Birmingham-Southern College", "priority": 134, "external_id": null}, {"id": 10845957003, "name": "Bismarck State College", "priority": 135, "external_id": null}, {"id": 10845958003, "name": "Black Hills State University", "priority": 136, "external_id": null}, {"id": 10845959003, "name": "Blackburn College", "priority": 137, "external_id": null}, {"id": 10845960003, "name": "Blessing-Rieman College of Nursing", "priority": 138, "external_id": null}, {"id": 10845961003, "name": "Bloomfield College", "priority": 139, "external_id": null}, {"id": 10845962003, "name": "Bloomsburg University of Pennsylvania", "priority": 140, "external_id": null}, {"id": 10845963003, "name": "Blue Mountain College", "priority": 141, "external_id": null}, {"id": 10845964003, "name": "Bluefield College", "priority": 142, "external_id": null}, {"id": 10845965003, "name": "Bluefield State College", "priority": 143, "external_id": null}, {"id": 10845966003, "name": "Bluffton University", "priority": 144, "external_id": null}, {"id": 10845967003, "name": "Boricua College", "priority": 145, "external_id": null}, {"id": 10845968003, "name": "Boston Architectural College", "priority": 146, "external_id": null}, {"id": 10845969003, "name": "Boston Conservatory", "priority": 147, "external_id": null}, {"id": 10845970003, "name": "Boston University", "priority": 148, "external_id": null}, {"id": 10845971003, "name": "Bowdoin College", "priority": 149, "external_id": null}, {"id": 10845972003, "name": "Bowie State University", "priority": 150, "external_id": null}, {"id": 10845973003, "name": "Bradley University", "priority": 151, "external_id": null}, {"id": 10845974003, "name": "Brandeis University", "priority": 152, "external_id": null}, {"id": 10845975003, "name": "Brandman University", "priority": 153, "external_id": null}, {"id": 10845976003, "name": "Brazosport College", "priority": 154, "external_id": null}, {"id": 10845977003, "name": "Brenau University", "priority": 155, "external_id": null}, {"id": 10845978003, "name": "Brescia University", "priority": 156, "external_id": null}, {"id": 10845979003, "name": "Brevard College", "priority": 157, "external_id": null}, {"id": 10845980003, "name": "Brewton-Parker College", "priority": 158, "external_id": null}, {"id": 10845981003, "name": "Briar Cliff University", "priority": 159, "external_id": null}, {"id": 10845982003, "name": "Briarcliffe College", "priority": 160, "external_id": null}, {"id": 10845983003, "name": "Bridgewater College", "priority": 161, "external_id": null}, {"id": 10845984003, "name": "Bridgewater State University", "priority": 162, "external_id": null}, {"id": 10845985003, "name": "Brigham Young University - Hawaii", "priority": 163, "external_id": null}, {"id": 10845986003, "name": "Brigham Young University - Idaho", "priority": 164, "external_id": null}, {"id": 10845987003, "name": "Brock University", "priority": 165, "external_id": null}, {"id": 10845988003, "name": "Bryan College", "priority": 166, "external_id": null}, {"id": 10845989003, "name": "Bryn Athyn College of the New Church", "priority": 167, "external_id": null}, {"id": 10845990003, "name": "Bryn Mawr College", "priority": 168, "external_id": null}, {"id": 10845991003, "name": "Boston College", "priority": 169, "external_id": null}, {"id": 10845992003, "name": "Buena Vista University", "priority": 170, "external_id": null}, {"id": 10845993003, "name": "Burlington College", "priority": 171, "external_id": null}, {"id": 10845994003, "name": "Bowling Green State University", "priority": 172, "external_id": null}, {"id": 10845995003, "name": "Brown University", "priority": 173, "external_id": null}, {"id": 10845996003, "name": "Appalachian State University", "priority": 174, "external_id": null}, {"id": 10845997003, "name": "Brigham Young University - Provo", "priority": 175, "external_id": null}, {"id": 10845998003, "name": "Boise State University", "priority": 176, "external_id": null}, {"id": 10845999003, "name": "Bethune-Cookman University", "priority": 177, "external_id": null}, {"id": 10846000003, "name": "Bryant University", "priority": 178, "external_id": null}, {"id": 10846001003, "name": "Cabarrus College of Health Sciences", "priority": 179, "external_id": null}, {"id": 10846002003, "name": "Cabrini College", "priority": 180, "external_id": null}, {"id": 10846003003, "name": "Cairn University", "priority": 181, "external_id": null}, {"id": 10846004003, "name": "Caldwell College", "priority": 182, "external_id": null}, {"id": 10846005003, "name": "California Baptist University", "priority": 183, "external_id": null}, {"id": 10846006003, "name": "California College of the Arts", "priority": 184, "external_id": null}, {"id": 10846007003, "name": "California Institute of Integral Studies", "priority": 185, "external_id": null}, {"id": 10846008003, "name": "California Institute of Technology", "priority": 186, "external_id": null}, {"id": 10846009003, "name": "California Institute of the Arts", "priority": 187, "external_id": null}, {"id": 10846010003, "name": "California Lutheran University", "priority": 188, "external_id": null}, {"id": 10846011003, "name": "California Maritime Academy", "priority": 189, "external_id": null}, {"id": 10846012003, "name": "California State Polytechnic University - Pomona", "priority": 190, "external_id": null}, {"id": 10846013003, "name": "California State University - Bakersfield", "priority": 191, "external_id": null}, {"id": 10846014003, "name": "California State University - Channel Islands", "priority": 192, "external_id": null}, {"id": 10846015003, "name": "California State University - Chico", "priority": 193, "external_id": null}, {"id": 10846016003, "name": "California State University - Dominguez Hills", "priority": 194, "external_id": null}, {"id": 10846017003, "name": "California State University - East Bay", "priority": 195, "external_id": null}, {"id": 10846018003, "name": "California State University - Fullerton", "priority": 196, "external_id": null}, {"id": 10846019003, "name": "California State University - Los Angeles", "priority": 197, "external_id": null}, {"id": 10846020003, "name": "California State University - Monterey Bay", "priority": 198, "external_id": null}, {"id": 10846021003, "name": "California State University - Northridge", "priority": 199, "external_id": null}, {"id": 10846022003, "name": "California State University - San Bernardino", "priority": 200, "external_id": null}, {"id": 10846023003, "name": "California State University - San Marcos", "priority": 201, "external_id": null}, {"id": 10846024003, "name": "California State University - Stanislaus", "priority": 202, "external_id": null}, {"id": 10846025003, "name": "California University of Pennsylvania", "priority": 203, "external_id": null}, {"id": 10846026003, "name": "Calumet College of St. Joseph", "priority": 204, "external_id": null}, {"id": 10846027003, "name": "Calvary Bible College and Theological Seminary", "priority": 205, "external_id": null}, {"id": 10846028003, "name": "Calvin College", "priority": 206, "external_id": null}, {"id": 10846029003, "name": "Cambridge College", "priority": 207, "external_id": null}, {"id": 10846030003, "name": "Cameron University", "priority": 208, "external_id": null}, {"id": 10846031003, "name": "Campbellsville University", "priority": 209, "external_id": null}, {"id": 10846032003, "name": "Canisius College", "priority": 210, "external_id": null}, {"id": 10846033003, "name": "Capella University", "priority": 211, "external_id": null}, {"id": 10846034003, "name": "Capital University", "priority": 212, "external_id": null}, {"id": 10846035003, "name": "Capitol College", "priority": 213, "external_id": null}, {"id": 10846036003, "name": "Cardinal Stritch University", "priority": 214, "external_id": null}, {"id": 10846037003, "name": "Caribbean University", "priority": 215, "external_id": null}, {"id": 10846038003, "name": "Carleton College", "priority": 216, "external_id": null}, {"id": 10846039003, "name": "Carleton University", "priority": 217, "external_id": null}, {"id": 10846040003, "name": "Carlos Albizu University", "priority": 218, "external_id": null}, {"id": 10846041003, "name": "Carlow University", "priority": 219, "external_id": null}, {"id": 10846042003, "name": "Carnegie Mellon University", "priority": 220, "external_id": null}, {"id": 10846043003, "name": "Carroll College", "priority": 221, "external_id": null}, {"id": 10846044003, "name": "Carroll University", "priority": 222, "external_id": null}, {"id": 10846045003, "name": "Carson-Newman University", "priority": 223, "external_id": null}, {"id": 10846046003, "name": "Carthage College", "priority": 224, "external_id": null}, {"id": 10846047003, "name": "Case Western Reserve University", "priority": 225, "external_id": null}, {"id": 10846048003, "name": "Castleton State College", "priority": 226, "external_id": null}, {"id": 10846049003, "name": "Catawba College", "priority": 227, "external_id": null}, {"id": 10846050003, "name": "Cazenovia College", "priority": 228, "external_id": null}, {"id": 10846051003, "name": "Cedar Crest College", "priority": 229, "external_id": null}, {"id": 10846052003, "name": "Cedarville University", "priority": 230, "external_id": null}, {"id": 10846053003, "name": "Centenary College", "priority": 231, "external_id": null}, {"id": 10846054003, "name": "Centenary College of Louisiana", "priority": 232, "external_id": null}, {"id": 10846055003, "name": "Central Baptist College", "priority": 233, "external_id": null}, {"id": 10846056003, "name": "Central Bible College", "priority": 234, "external_id": null}, {"id": 10846057003, "name": "Central Christian College", "priority": 235, "external_id": null}, {"id": 10846058003, "name": "Central College", "priority": 236, "external_id": null}, {"id": 10846059003, "name": "Central Methodist University", "priority": 237, "external_id": null}, {"id": 10846060003, "name": "Central Penn College", "priority": 238, "external_id": null}, {"id": 10846061003, "name": "Central State University", "priority": 239, "external_id": null}, {"id": 10846062003, "name": "Central Washington University", "priority": 240, "external_id": null}, {"id": 10846063003, "name": "Centre College", "priority": 241, "external_id": null}, {"id": 10846064003, "name": "Chadron State College", "priority": 242, "external_id": null}, {"id": 10846065003, "name": "Chamberlain College of Nursing", "priority": 243, "external_id": null}, {"id": 10846066003, "name": "Chaminade University of Honolulu", "priority": 244, "external_id": null}, {"id": 10846067003, "name": "Champlain College", "priority": 245, "external_id": null}, {"id": 10846068003, "name": "Chancellor University", "priority": 246, "external_id": null}, {"id": 10846069003, "name": "Chapman University", "priority": 247, "external_id": null}, {"id": 10846070003, "name": "Charles R. Drew University of Medicine and Science", "priority": 248, "external_id": null}, {"id": 10846071003, "name": "Charter Oak State College", "priority": 249, "external_id": null}, {"id": 10846072003, "name": "Chatham University", "priority": 250, "external_id": null}, {"id": 10846073003, "name": "Chestnut Hill College", "priority": 251, "external_id": null}, {"id": 10846074003, "name": "Cheyney University of Pennsylvania", "priority": 252, "external_id": null}, {"id": 10846075003, "name": "Chicago State University", "priority": 253, "external_id": null}, {"id": 10846076003, "name": "Chipola College", "priority": 254, "external_id": null}, {"id": 10846077003, "name": "Chowan University", "priority": 255, "external_id": null}, {"id": 10846078003, "name": "Christendom College", "priority": 256, "external_id": null}, {"id": 10846079003, "name": "Baylor University", "priority": 257, "external_id": null}, {"id": 10846080003, "name": "Central Connecticut State University", "priority": 258, "external_id": null}, {"id": 10846081003, "name": "Central Michigan University", "priority": 259, "external_id": null}, {"id": 10846082003, "name": "Charleston Southern University", "priority": 260, "external_id": null}, {"id": 10846083003, "name": "California State University - Sacramento", "priority": 261, "external_id": null}, {"id": 10846084003, "name": "California State University - Fresno", "priority": 262, "external_id": null}, {"id": 10846085003, "name": "Campbell University", "priority": 263, "external_id": null}, {"id": 10846086003, "name": "Christopher Newport University", "priority": 264, "external_id": null}, {"id": 10846087003, "name": "Cincinnati Christian University", "priority": 265, "external_id": null}, {"id": 10846088003, "name": "Cincinnati College of Mortuary Science", "priority": 266, "external_id": null}, {"id": 10846089003, "name": "City University of Seattle", "priority": 267, "external_id": null}, {"id": 10846090003, "name": "Claflin University", "priority": 268, "external_id": null}, {"id": 10846091003, "name": "Claremont McKenna College", "priority": 269, "external_id": null}, {"id": 10846092003, "name": "Clarion University of Pennsylvania", "priority": 270, "external_id": null}, {"id": 10846093003, "name": "Clark Atlanta University", "priority": 271, "external_id": null}, {"id": 10846094003, "name": "Clark University", "priority": 272, "external_id": null}, {"id": 10846095003, "name": "Clarke University", "priority": 273, "external_id": null}, {"id": 10846096003, "name": "Clarkson College", "priority": 274, "external_id": null}, {"id": 10846097003, "name": "Clarkson University", "priority": 275, "external_id": null}, {"id": 10846098003, "name": "Clayton State University", "priority": 276, "external_id": null}, {"id": 10846099003, "name": "Clear Creek Baptist Bible College", "priority": 277, "external_id": null}, {"id": 10846100003, "name": "Clearwater Christian College", "priority": 278, "external_id": null}, {"id": 10846101003, "name": "Cleary University", "priority": 279, "external_id": null}, {"id": 10846102003, "name": "College of William and Mary", "priority": 280, "external_id": null}, {"id": 10846103003, "name": "Cleveland Chiropractic College", "priority": 281, "external_id": null}, {"id": 10846104003, "name": "Cleveland Institute of Art", "priority": 282, "external_id": null}, {"id": 10846105003, "name": "Cleveland Institute of Music", "priority": 283, "external_id": null}, {"id": 10846106003, "name": "Cleveland State University", "priority": 284, "external_id": null}, {"id": 10846107003, "name": "Coe College", "priority": 285, "external_id": null}, {"id": 10846108003, "name": "Cogswell Polytechnical College", "priority": 286, "external_id": null}, {"id": 10846109003, "name": "Coker College", "priority": 287, "external_id": null}, {"id": 10846110003, "name": "Colby College", "priority": 288, "external_id": null}, {"id": 10846111003, "name": "Colby-Sawyer College", "priority": 289, "external_id": null}, {"id": 10846112003, "name": "College at Brockport - SUNY", "priority": 290, "external_id": null}, {"id": 10846113003, "name": "College for Creative Studies", "priority": 291, "external_id": null}, {"id": 10846114003, "name": "College of Charleston", "priority": 292, "external_id": null}, {"id": 10846115003, "name": "College of Idaho", "priority": 293, "external_id": null}, {"id": 10846116003, "name": "College of Mount St. Joseph", "priority": 294, "external_id": null}, {"id": 10846117003, "name": "College of Mount St. Vincent", "priority": 295, "external_id": null}, {"id": 10846118003, "name": "College of New Jersey", "priority": 296, "external_id": null}, {"id": 10846119003, "name": "College of New Rochelle", "priority": 297, "external_id": null}, {"id": 10846120003, "name": "College of Our Lady of the Elms", "priority": 298, "external_id": null}, {"id": 10846121003, "name": "College of Saints John Fisher & Thomas More", "priority": 299, "external_id": null}, {"id": 10846122003, "name": "College of Southern Nevada", "priority": 300, "external_id": null}, {"id": 10846123003, "name": "College of St. Benedict", "priority": 301, "external_id": null}, {"id": 10846124003, "name": "College of St. Elizabeth", "priority": 302, "external_id": null}, {"id": 10846125003, "name": "College of St. Joseph", "priority": 303, "external_id": null}, {"id": 10846126003, "name": "College of St. Mary", "priority": 304, "external_id": null}, {"id": 10846127003, "name": "College of St. Rose", "priority": 305, "external_id": null}, {"id": 10846128003, "name": "College of St. Scholastica", "priority": 306, "external_id": null}, {"id": 10846129003, "name": "College of the Atlantic", "priority": 307, "external_id": null}, {"id": 10846130003, "name": "College of the Holy Cross", "priority": 308, "external_id": null}, {"id": 10846131003, "name": "College of the Ozarks", "priority": 309, "external_id": null}, {"id": 10846132003, "name": "College of Wooster", "priority": 310, "external_id": null}, {"id": 10846133003, "name": "Colorado Christian University", "priority": 311, "external_id": null}, {"id": 10846134003, "name": "Colorado College", "priority": 312, "external_id": null}, {"id": 10846135003, "name": "Colorado Mesa University", "priority": 313, "external_id": null}, {"id": 10846136003, "name": "Colorado School of Mines", "priority": 314, "external_id": null}, {"id": 10846137003, "name": "Colorado State University - Pueblo", "priority": 315, "external_id": null}, {"id": 10846138003, "name": "Colorado Technical University", "priority": 316, "external_id": null}, {"id": 10846139003, "name": "Columbia College", "priority": 317, "external_id": null}, {"id": 10846140003, "name": "Columbia College Chicago", "priority": 318, "external_id": null}, {"id": 10846141003, "name": "Columbia College of Nursing", "priority": 319, "external_id": null}, {"id": 10846142003, "name": "Columbia International University", "priority": 320, "external_id": null}, {"id": 10846143003, "name": "Columbus College of Art and Design", "priority": 321, "external_id": null}, {"id": 10846144003, "name": "Columbus State University", "priority": 322, "external_id": null}, {"id": 10846145003, "name": "Conception Seminary College", "priority": 323, "external_id": null}, {"id": 10846146003, "name": "Concord University", "priority": 324, "external_id": null}, {"id": 10846147003, "name": "Concordia College", "priority": 325, "external_id": null}, {"id": 10846148003, "name": "Concordia College - Moorhead", "priority": 326, "external_id": null}, {"id": 10846149003, "name": "Concordia University", "priority": 327, "external_id": null}, {"id": 10846150003, "name": "Concordia University Chicago", "priority": 328, "external_id": null}, {"id": 10846151003, "name": "Concordia University Texas", "priority": 329, "external_id": null}, {"id": 10846152003, "name": "Concordia University Wisconsin", "priority": 330, "external_id": null}, {"id": 10846153003, "name": "Concordia University - St. Paul", "priority": 331, "external_id": null}, {"id": 10846154003, "name": "Connecticut College", "priority": 332, "external_id": null}, {"id": 10846155003, "name": "Converse College", "priority": 333, "external_id": null}, {"id": 10846156003, "name": "Cooper Union", "priority": 334, "external_id": null}, {"id": 10846157003, "name": "Coppin State University", "priority": 335, "external_id": null}, {"id": 10846158003, "name": "Corban University", "priority": 336, "external_id": null}, {"id": 10846159003, "name": "Corcoran College of Art and Design", "priority": 337, "external_id": null}, {"id": 10846160003, "name": "Cornell College", "priority": 338, "external_id": null}, {"id": 10846161003, "name": "Cornerstone University", "priority": 339, "external_id": null}, {"id": 10846162003, "name": "Cornish College of the Arts", "priority": 340, "external_id": null}, {"id": 10846163003, "name": "Covenant College", "priority": 341, "external_id": null}, {"id": 10846164003, "name": "Cox College", "priority": 342, "external_id": null}, {"id": 10846165003, "name": "Creighton University", "priority": 343, "external_id": null}, {"id": 10846166003, "name": "Criswell College", "priority": 344, "external_id": null}, {"id": 10846167003, "name": "Crown College", "priority": 345, "external_id": null}, {"id": 10846168003, "name": "Culinary Institute of America", "priority": 346, "external_id": null}, {"id": 10846169003, "name": "Culver-Stockton College", "priority": 347, "external_id": null}, {"id": 10846170003, "name": "Cumberland University", "priority": 348, "external_id": null}, {"id": 10846171003, "name": "Columbia University", "priority": 349, "external_id": null}, {"id": 10846172003, "name": "Cornell University", "priority": 350, "external_id": null}, {"id": 10846173003, "name": "Colorado State University", "priority": 351, "external_id": null}, {"id": 10846174003, "name": "University of Virginia", "priority": 352, "external_id": null}, {"id": 10846175003, "name": "Colgate University", "priority": 353, "external_id": null}, {"id": 10846176003, "name": "CUNY - Baruch College", "priority": 354, "external_id": null}, {"id": 10846177003, "name": "CUNY - Brooklyn College", "priority": 355, "external_id": null}, {"id": 10846178003, "name": "CUNY - City College", "priority": 356, "external_id": null}, {"id": 10846179003, "name": "CUNY - College of Staten Island", "priority": 357, "external_id": null}, {"id": 10846180003, "name": "CUNY - Hunter College", "priority": 358, "external_id": null}, {"id": 10846181003, "name": "CUNY - John Jay College of Criminal Justice", "priority": 359, "external_id": null}, {"id": 10846182003, "name": "CUNY - Lehman College", "priority": 360, "external_id": null}, {"id": 10846183003, "name": "CUNY - Medgar Evers College", "priority": 361, "external_id": null}, {"id": 10846184003, "name": "CUNY - New York City College of Technology", "priority": 362, "external_id": null}, {"id": 10846185003, "name": "CUNY - Queens College", "priority": 363, "external_id": null}, {"id": 10846186003, "name": "CUNY - York College", "priority": 364, "external_id": null}, {"id": 10846187003, "name": "Curry College", "priority": 365, "external_id": null}, {"id": 10846188003, "name": "Curtis Institute of Music", "priority": 366, "external_id": null}, {"id": 10846189003, "name": "D'Youville College", "priority": 367, "external_id": null}, {"id": 10846190003, "name": "Daemen College", "priority": 368, "external_id": null}, {"id": 10846191003, "name": "Dakota State University", "priority": 369, "external_id": null}, {"id": 10846192003, "name": "Dakota Wesleyan University", "priority": 370, "external_id": null}, {"id": 10846193003, "name": "Dalhousie University", "priority": 371, "external_id": null}, {"id": 10846194003, "name": "Dallas Baptist University", "priority": 372, "external_id": null}, {"id": 10846195003, "name": "Dallas Christian College", "priority": 373, "external_id": null}, {"id": 10846196003, "name": "Dalton State College", "priority": 374, "external_id": null}, {"id": 10846197003, "name": "Daniel Webster College", "priority": 375, "external_id": null}, {"id": 10846198003, "name": "Davenport University", "priority": 376, "external_id": null}, {"id": 10846199003, "name": "Davis and Elkins College", "priority": 377, "external_id": null}, {"id": 10846200003, "name": "Davis College", "priority": 378, "external_id": null}, {"id": 10846201003, "name": "Daytona State College", "priority": 379, "external_id": null}, {"id": 10846202003, "name": "Dean College", "priority": 380, "external_id": null}, {"id": 10846203003, "name": "Defiance College", "priority": 381, "external_id": null}, {"id": 10846204003, "name": "Delaware Valley College", "priority": 382, "external_id": null}, {"id": 10846205003, "name": "Delta State University", "priority": 383, "external_id": null}, {"id": 10846206003, "name": "Denison University", "priority": 384, "external_id": null}, {"id": 10846207003, "name": "DePaul University", "priority": 385, "external_id": null}, {"id": 10846208003, "name": "DePauw University", "priority": 386, "external_id": null}, {"id": 10846209003, "name": "DEREE - The American College of Greece", "priority": 387, "external_id": null}, {"id": 10846210003, "name": "DeSales University", "priority": 388, "external_id": null}, {"id": 10846211003, "name": "DeVry University", "priority": 389, "external_id": null}, {"id": 10846212003, "name": "Dickinson College", "priority": 390, "external_id": null}, {"id": 10846213003, "name": "Dickinson State University", "priority": 391, "external_id": null}, {"id": 10846214003, "name": "Dillard University", "priority": 392, "external_id": null}, {"id": 10846215003, "name": "Divine Word College", "priority": 393, "external_id": null}, {"id": 10846216003, "name": "Dixie State College of Utah", "priority": 394, "external_id": null}, {"id": 10846217003, "name": "Doane College", "priority": 395, "external_id": null}, {"id": 10846218003, "name": "Dominican College", "priority": 396, "external_id": null}, {"id": 10846219003, "name": "Dominican University", "priority": 397, "external_id": null}, {"id": 10846220003, "name": "Dominican University of California", "priority": 398, "external_id": null}, {"id": 10846221003, "name": "Donnelly College", "priority": 399, "external_id": null}, {"id": 10846222003, "name": "Dordt College", "priority": 400, "external_id": null}, {"id": 10846223003, "name": "Dowling College", "priority": 401, "external_id": null}, {"id": 10846224003, "name": "Drew University", "priority": 402, "external_id": null}, {"id": 10846225003, "name": "Drexel University", "priority": 403, "external_id": null}, {"id": 10846226003, "name": "Drury University", "priority": 404, "external_id": null}, {"id": 10846227003, "name": "Dunwoody College of Technology", "priority": 405, "external_id": null}, {"id": 10846228003, "name": "Earlham College", "priority": 406, "external_id": null}, {"id": 10846229003, "name": "Drake University", "priority": 407, "external_id": null}, {"id": 10846230003, "name": "East Central University", "priority": 408, "external_id": null}, {"id": 10846231003, "name": "East Stroudsburg University of Pennsylvania", "priority": 409, "external_id": null}, {"id": 10846232003, "name": "East Tennessee State University", "priority": 410, "external_id": null}, {"id": 10846233003, "name": "East Texas Baptist University", "priority": 411, "external_id": null}, {"id": 10846234003, "name": "East-West University", "priority": 412, "external_id": null}, {"id": 10846235003, "name": "Eastern Connecticut State University", "priority": 413, "external_id": null}, {"id": 10846236003, "name": "Eastern Mennonite University", "priority": 414, "external_id": null}, {"id": 10846237003, "name": "Eastern Nazarene College", "priority": 415, "external_id": null}, {"id": 10846238003, "name": "Eastern New Mexico University", "priority": 416, "external_id": null}, {"id": 10846239003, "name": "Eastern Oregon University", "priority": 417, "external_id": null}, {"id": 10846240003, "name": "Eastern University", "priority": 418, "external_id": null}, {"id": 10846241003, "name": "Eckerd College", "priority": 419, "external_id": null}, {"id": 10846242003, "name": "ECPI University", "priority": 420, "external_id": null}, {"id": 10846243003, "name": "Edgewood College", "priority": 421, "external_id": null}, {"id": 10846244003, "name": "Edinboro University of Pennsylvania", "priority": 422, "external_id": null}, {"id": 10846245003, "name": "Edison State College", "priority": 423, "external_id": null}, {"id": 10846246003, "name": "Edward Waters College", "priority": 424, "external_id": null}, {"id": 10846247003, "name": "Elizabeth City State University", "priority": 425, "external_id": null}, {"id": 10846248003, "name": "Elizabethtown College", "priority": 426, "external_id": null}, {"id": 10846249003, "name": "Elmhurst College", "priority": 427, "external_id": null}, {"id": 10846250003, "name": "Elmira College", "priority": 428, "external_id": null}, {"id": 10846251003, "name": "Embry-Riddle Aeronautical University", "priority": 429, "external_id": null}, {"id": 10846252003, "name": "Embry-Riddle Aeronautical University - Prescott", "priority": 430, "external_id": null}, {"id": 10846253003, "name": "Emerson College", "priority": 431, "external_id": null}, {"id": 10846254003, "name": "Duquesne University", "priority": 432, "external_id": null}, {"id": 10846255003, "name": "Eastern Washington University", "priority": 433, "external_id": null}, {"id": 10846256003, "name": "Eastern Illinois University", "priority": 434, "external_id": null}, {"id": 10846257003, "name": "Eastern Kentucky University", "priority": 435, "external_id": null}, {"id": 10846258003, "name": "Eastern Michigan University", "priority": 436, "external_id": null}, {"id": 10846259003, "name": "Elon University", "priority": 437, "external_id": null}, {"id": 10846260003, "name": "Delaware State University", "priority": 438, "external_id": null}, {"id": 10846261003, "name": "Duke University", "priority": 439, "external_id": null}, {"id": 10846262003, "name": "California Polytechnic State University - San Luis Obispo", "priority": 440, "external_id": null}, {"id": 10846263003, "name": "Emmanuel College", "priority": 441, "external_id": null}, {"id": 10846264003, "name": "Emmaus Bible College", "priority": 442, "external_id": null}, {"id": 10846265003, "name": "Emory and Henry College", "priority": 443, "external_id": null}, {"id": 10846266003, "name": "Emory University", "priority": 444, "external_id": null}, {"id": 10846267003, "name": "Emporia State University", "priority": 445, "external_id": null}, {"id": 10846268003, "name": "Endicott College", "priority": 446, "external_id": null}, {"id": 10846269003, "name": "Erskine College", "priority": 447, "external_id": null}, {"id": 10846270003, "name": "Escuela de Artes Plasticas de Puerto Rico", "priority": 448, "external_id": null}, {"id": 10846271003, "name": "Eureka College", "priority": 449, "external_id": null}, {"id": 10846272003, "name": "Evangel University", "priority": 450, "external_id": null}, {"id": 10846273003, "name": "Everest College - Phoenix", "priority": 451, "external_id": null}, {"id": 10846274003, "name": "Everglades University", "priority": 452, "external_id": null}, {"id": 10846275003, "name": "Evergreen State College", "priority": 453, "external_id": null}, {"id": 10846276003, "name": "Excelsior College", "priority": 454, "external_id": null}, {"id": 10846277003, "name": "Fairfield University", "priority": 455, "external_id": null}, {"id": 10846278003, "name": "Fairleigh Dickinson University", "priority": 456, "external_id": null}, {"id": 10846279003, "name": "Fairmont State University", "priority": 457, "external_id": null}, {"id": 10846280003, "name": "Faith Baptist Bible College and Theological Seminary", "priority": 458, "external_id": null}, {"id": 10846281003, "name": "Farmingdale State College - SUNY", "priority": 459, "external_id": null}, {"id": 10846282003, "name": "Fashion Institute of Technology", "priority": 460, "external_id": null}, {"id": 10846283003, "name": "Faulkner University", "priority": 461, "external_id": null}, {"id": 10846284003, "name": "Fayetteville State University", "priority": 462, "external_id": null}, {"id": 10846285003, "name": "Felician College", "priority": 463, "external_id": null}, {"id": 10846286003, "name": "Ferris State University", "priority": 464, "external_id": null}, {"id": 10846287003, "name": "Ferrum College", "priority": 465, "external_id": null}, {"id": 10846288003, "name": "Finlandia University", "priority": 466, "external_id": null}, {"id": 10846289003, "name": "Fisher College", "priority": 467, "external_id": null}, {"id": 10846290003, "name": "Fisk University", "priority": 468, "external_id": null}, {"id": 10846291003, "name": "Fitchburg State University", "priority": 469, "external_id": null}, {"id": 10846292003, "name": "Five Towns College", "priority": 470, "external_id": null}, {"id": 10846293003, "name": "Flagler College", "priority": 471, "external_id": null}, {"id": 10846294003, "name": "Florida Christian College", "priority": 472, "external_id": null}, {"id": 10846295003, "name": "Florida College", "priority": 473, "external_id": null}, {"id": 10846296003, "name": "Florida Gulf Coast University", "priority": 474, "external_id": null}, {"id": 10846297003, "name": "Florida Institute of Technology", "priority": 475, "external_id": null}, {"id": 10846298003, "name": "Florida Memorial University", "priority": 476, "external_id": null}, {"id": 10846299003, "name": "Florida Southern College", "priority": 477, "external_id": null}, {"id": 10846300003, "name": "Florida State College - Jacksonville", "priority": 478, "external_id": null}, {"id": 10846301003, "name": "Fontbonne University", "priority": 479, "external_id": null}, {"id": 10846302003, "name": "Fort Hays State University", "priority": 480, "external_id": null}, {"id": 10846303003, "name": "Fort Lewis College", "priority": 481, "external_id": null}, {"id": 10846304003, "name": "Fort Valley State University", "priority": 482, "external_id": null}, {"id": 10846305003, "name": "Framingham State University", "priority": 483, "external_id": null}, {"id": 10846306003, "name": "Francis Marion University", "priority": 484, "external_id": null}, {"id": 10846307003, "name": "Franciscan University of Steubenville", "priority": 485, "external_id": null}, {"id": 10846308003, "name": "Frank Lloyd Wright School of Architecture", "priority": 486, "external_id": null}, {"id": 10846309003, "name": "Franklin and Marshall College", "priority": 487, "external_id": null}, {"id": 10846310003, "name": "Franklin College", "priority": 488, "external_id": null}, {"id": 10846311003, "name": "Franklin College Switzerland", "priority": 489, "external_id": null}, {"id": 10846312003, "name": "Franklin Pierce University", "priority": 490, "external_id": null}, {"id": 10846313003, "name": "Franklin University", "priority": 491, "external_id": null}, {"id": 10846314003, "name": "Franklin W. Olin College of Engineering", "priority": 492, "external_id": null}, {"id": 10846315003, "name": "Freed-Hardeman University", "priority": 493, "external_id": null}, {"id": 10846316003, "name": "Fresno Pacific University", "priority": 494, "external_id": null}, {"id": 10846317003, "name": "Friends University", "priority": 495, "external_id": null}, {"id": 10846318003, "name": "Frostburg State University", "priority": 496, "external_id": null}, {"id": 10846319003, "name": "Gallaudet University", "priority": 497, "external_id": null}, {"id": 10846320003, "name": "Gannon University", "priority": 498, "external_id": null}, {"id": 10846321003, "name": "Geneva College", "priority": 499, "external_id": null}, {"id": 10846322003, "name": "George Fox University", "priority": 500, "external_id": null}, {"id": 10846323003, "name": "George Mason University", "priority": 501, "external_id": null}, {"id": 10846324003, "name": "George Washington University", "priority": 502, "external_id": null}, {"id": 10846325003, "name": "Georgetown College", "priority": 503, "external_id": null}, {"id": 10846326003, "name": "Georgia College & State University", "priority": 504, "external_id": null}, {"id": 10846327003, "name": "Georgia Gwinnett College", "priority": 505, "external_id": null}, {"id": 10846328003, "name": "Georgia Regents University", "priority": 506, "external_id": null}, {"id": 10846329003, "name": "Georgia Southwestern State University", "priority": 507, "external_id": null}, {"id": 10846330003, "name": "Georgian Court University", "priority": 508, "external_id": null}, {"id": 10846331003, "name": "Gettysburg College", "priority": 509, "external_id": null}, {"id": 10846332003, "name": "Glenville State College", "priority": 510, "external_id": null}, {"id": 10846333003, "name": "God's Bible School and College", "priority": 511, "external_id": null}, {"id": 10846334003, "name": "Goddard College", "priority": 512, "external_id": null}, {"id": 10846335003, "name": "Golden Gate University", "priority": 513, "external_id": null}, {"id": 10846336003, "name": "Goldey-Beacom College", "priority": 514, "external_id": null}, {"id": 10846337003, "name": "Goldfarb School of Nursing at Barnes-Jewish College", "priority": 515, "external_id": null}, {"id": 10846338003, "name": "Gonzaga University", "priority": 516, "external_id": null}, {"id": 10846339003, "name": "Gordon College", "priority": 517, "external_id": null}, {"id": 10846340003, "name": "Fordham University", "priority": 518, "external_id": null}, {"id": 10846341003, "name": "Georgia Institute of Technology", "priority": 519, "external_id": null}, {"id": 10846342003, "name": "Gardner-Webb University", "priority": 520, "external_id": null}, {"id": 10846343003, "name": "Georgia Southern University", "priority": 521, "external_id": null}, {"id": 10846344003, "name": "Georgia State University", "priority": 522, "external_id": null}, {"id": 10846345003, "name": "Florida State University", "priority": 523, "external_id": null}, {"id": 10846346003, "name": "Dartmouth College", "priority": 524, "external_id": null}, {"id": 10846347003, "name": "Florida International University", "priority": 525, "external_id": null}, {"id": 10846348003, "name": "Georgetown University", "priority": 526, "external_id": null}, {"id": 10846349003, "name": "Furman University", "priority": 527, "external_id": null}, {"id": 10846350003, "name": "Gordon State College", "priority": 528, "external_id": null}, {"id": 10846351003, "name": "Goshen College", "priority": 529, "external_id": null}, {"id": 10846352003, "name": "Goucher College", "priority": 530, "external_id": null}, {"id": 10846353003, "name": "Governors State University", "priority": 531, "external_id": null}, {"id": 10846354003, "name": "Grace Bible College", "priority": 532, "external_id": null}, {"id": 10846355003, "name": "Grace College and Seminary", "priority": 533, "external_id": null}, {"id": 10846356003, "name": "Grace University", "priority": 534, "external_id": null}, {"id": 10846357003, "name": "Graceland University", "priority": 535, "external_id": null}, {"id": 10846358003, "name": "Grand Canyon University", "priority": 536, "external_id": null}, {"id": 10846359003, "name": "Grand Valley State University", "priority": 537, "external_id": null}, {"id": 10846360003, "name": "Grand View University", "priority": 538, "external_id": null}, {"id": 10846361003, "name": "Granite State College", "priority": 539, "external_id": null}, {"id": 10846362003, "name": "Gratz College", "priority": 540, "external_id": null}, {"id": 10846363003, "name": "Great Basin College", "priority": 541, "external_id": null}, {"id": 10846364003, "name": "Great Lakes Christian College", "priority": 542, "external_id": null}, {"id": 10846365003, "name": "Green Mountain College", "priority": 543, "external_id": null}, {"id": 10846366003, "name": "Greensboro College", "priority": 544, "external_id": null}, {"id": 10846367003, "name": "Greenville College", "priority": 545, "external_id": null}, {"id": 10846368003, "name": "Grinnell College", "priority": 546, "external_id": null}, {"id": 10846369003, "name": "Grove City College", "priority": 547, "external_id": null}, {"id": 10846370003, "name": "Guilford College", "priority": 548, "external_id": null}, {"id": 10846371003, "name": "Gustavus Adolphus College", "priority": 549, "external_id": null}, {"id": 10846372003, "name": "Gwynedd-Mercy College", "priority": 550, "external_id": null}, {"id": 10846373003, "name": "Hamilton College", "priority": 551, "external_id": null}, {"id": 10846374003, "name": "Hamline University", "priority": 552, "external_id": null}, {"id": 10846375003, "name": "Hampden-Sydney College", "priority": 553, "external_id": null}, {"id": 10846376003, "name": "Hampshire College", "priority": 554, "external_id": null}, {"id": 10846377003, "name": "Hannibal-LaGrange University", "priority": 555, "external_id": null}, {"id": 10846378003, "name": "Hanover College", "priority": 556, "external_id": null}, {"id": 10846379003, "name": "Hardin-Simmons University", "priority": 557, "external_id": null}, {"id": 10846380003, "name": "Harding University", "priority": 558, "external_id": null}, {"id": 10846381003, "name": "Harrington College of Design", "priority": 559, "external_id": null}, {"id": 10846382003, "name": "Harris-Stowe State University", "priority": 560, "external_id": null}, {"id": 10846383003, "name": "Harrisburg University of Science and Technology", "priority": 561, "external_id": null}, {"id": 10846384003, "name": "Hartwick College", "priority": 562, "external_id": null}, {"id": 10846385003, "name": "Harvey Mudd College", "priority": 563, "external_id": null}, {"id": 10846386003, "name": "Haskell Indian Nations University", "priority": 564, "external_id": null}, {"id": 10846387003, "name": "Hastings College", "priority": 565, "external_id": null}, {"id": 10846388003, "name": "Haverford College", "priority": 566, "external_id": null}, {"id": 10846389003, "name": "Hawaii Pacific University", "priority": 567, "external_id": null}, {"id": 10846390003, "name": "Hebrew Theological College", "priority": 568, "external_id": null}, {"id": 10846391003, "name": "Heidelberg University", "priority": 569, "external_id": null}, {"id": 10846392003, "name": "Hellenic College", "priority": 570, "external_id": null}, {"id": 10846393003, "name": "Henderson State University", "priority": 571, "external_id": null}, {"id": 10846394003, "name": "Hendrix College", "priority": 572, "external_id": null}, {"id": 10846395003, "name": "Heritage University", "priority": 573, "external_id": null}, {"id": 10846396003, "name": "Herzing University", "priority": 574, "external_id": null}, {"id": 10846397003, "name": "Hesser College", "priority": 575, "external_id": null}, {"id": 10846398003, "name": "High Point University", "priority": 576, "external_id": null}, {"id": 10846399003, "name": "Hilbert College", "priority": 577, "external_id": null}, {"id": 10846400003, "name": "Hillsdale College", "priority": 578, "external_id": null}, {"id": 10846401003, "name": "Hiram College", "priority": 579, "external_id": null}, {"id": 10846402003, "name": "Hobart and William Smith Colleges", "priority": 580, "external_id": null}, {"id": 10846403003, "name": "Hodges University", "priority": 581, "external_id": null}, {"id": 10846404003, "name": "Hofstra University", "priority": 582, "external_id": null}, {"id": 10846405003, "name": "Hollins University", "priority": 583, "external_id": null}, {"id": 10846406003, "name": "Holy Apostles College and Seminary", "priority": 584, "external_id": null}, {"id": 10846407003, "name": "Indiana State University", "priority": 585, "external_id": null}, {"id": 10846408003, "name": "Holy Family University", "priority": 586, "external_id": null}, {"id": 10846409003, "name": "Holy Names University", "priority": 587, "external_id": null}, {"id": 10846410003, "name": "Hood College", "priority": 588, "external_id": null}, {"id": 10846411003, "name": "Hope College", "priority": 589, "external_id": null}, {"id": 10846412003, "name": "Hope International University", "priority": 590, "external_id": null}, {"id": 10846413003, "name": "Houghton College", "priority": 591, "external_id": null}, {"id": 10846414003, "name": "Howard Payne University", "priority": 592, "external_id": null}, {"id": 10846415003, "name": "Hult International Business School", "priority": 593, "external_id": null}, {"id": 10846416003, "name": "Humboldt State University", "priority": 594, "external_id": null}, {"id": 10846417003, "name": "Humphreys College", "priority": 595, "external_id": null}, {"id": 10846418003, "name": "Huntingdon College", "priority": 596, "external_id": null}, {"id": 10846419003, "name": "Huntington University", "priority": 597, "external_id": null}, {"id": 10846420003, "name": "Husson University", "priority": 598, "external_id": null}, {"id": 10846421003, "name": "Huston-Tillotson University", "priority": 599, "external_id": null}, {"id": 10846422003, "name": "Illinois College", "priority": 600, "external_id": null}, {"id": 10846423003, "name": "Illinois Institute of Art at Chicago", "priority": 601, "external_id": null}, {"id": 10846424003, "name": "Illinois Institute of Technology", "priority": 602, "external_id": null}, {"id": 10846425003, "name": "Illinois Wesleyan University", "priority": 603, "external_id": null}, {"id": 10846426003, "name": "Immaculata University", "priority": 604, "external_id": null}, {"id": 10846427003, "name": "Indian River State College", "priority": 605, "external_id": null}, {"id": 10846428003, "name": "Indiana Institute of Technology", "priority": 606, "external_id": null}, {"id": 10846429003, "name": "Indiana University East", "priority": 607, "external_id": null}, {"id": 10846430003, "name": "Indiana University Northwest", "priority": 608, "external_id": null}, {"id": 10846431003, "name": "Indiana University of Pennsylvania", "priority": 609, "external_id": null}, {"id": 10846432003, "name": "Indiana University Southeast", "priority": 610, "external_id": null}, {"id": 10846433003, "name": "Illinois State University", "priority": 611, "external_id": null}, {"id": 10846434003, "name": "Indiana University - Bloomington", "priority": 612, "external_id": null}, {"id": 10846435003, "name": "Davidson College", "priority": 613, "external_id": null}, {"id": 10846436003, "name": "Idaho State University", "priority": 614, "external_id": null}, {"id": 10846437003, "name": "Harvard University", "priority": 615, "external_id": null}, {"id": 10846438003, "name": "Howard University", "priority": 616, "external_id": null}, {"id": 10846439003, "name": "Houston Baptist University", "priority": 617, "external_id": null}, {"id": 10846440003, "name": "Indiana University - Kokomo", "priority": 618, "external_id": null}, {"id": 10846441003, "name": "Indiana University - South Bend", "priority": 619, "external_id": null}, {"id": 10846442003, "name": "Indiana University-Purdue University - Fort Wayne", "priority": 620, "external_id": null}, {"id": 10846443003, "name": "Indiana University-Purdue University - Indianapolis", "priority": 621, "external_id": null}, {"id": 10846444003, "name": "Indiana Wesleyan University", "priority": 622, "external_id": null}, {"id": 10846445003, "name": "Institute of American Indian and Alaska Native Culture and Arts Development", "priority": 623, "external_id": null}, {"id": 10846446003, "name": "Inter American University of Puerto Rico - Aguadilla", "priority": 624, "external_id": null}, {"id": 10846447003, "name": "Inter American University of Puerto Rico - Arecibo", "priority": 625, "external_id": null}, {"id": 10846448003, "name": "Inter American University of Puerto Rico - Barranquitas", "priority": 626, "external_id": null}, {"id": 10846449003, "name": "Inter American University of Puerto Rico - Bayamon", "priority": 627, "external_id": null}, {"id": 10846450003, "name": "Inter American University of Puerto Rico - Fajardo", "priority": 628, "external_id": null}, {"id": 10846451003, "name": "Inter American University of Puerto Rico - Guayama", "priority": 629, "external_id": null}, {"id": 10846452003, "name": "Inter American University of Puerto Rico - Metropolitan Campus", "priority": 630, "external_id": null}, {"id": 10846453003, "name": "Inter American University of Puerto Rico - Ponce", "priority": 631, "external_id": null}, {"id": 10846454003, "name": "Inter American University of Puerto Rico - San German", "priority": 632, "external_id": null}, {"id": 10846455003, "name": "International College of the Cayman Islands", "priority": 633, "external_id": null}, {"id": 10846456003, "name": "Iona College", "priority": 634, "external_id": null}, {"id": 10846457003, "name": "Iowa Wesleyan College", "priority": 635, "external_id": null}, {"id": 10846458003, "name": "Ithaca College", "priority": 636, "external_id": null}, {"id": 10846459003, "name": "Jarvis Christian College", "priority": 637, "external_id": null}, {"id": 10846460003, "name": "Jewish Theological Seminary of America", "priority": 638, "external_id": null}, {"id": 10846461003, "name": "John Brown University", "priority": 639, "external_id": null}, {"id": 10846462003, "name": "John Carroll University", "priority": 640, "external_id": null}, {"id": 10846463003, "name": "John F. Kennedy University", "priority": 641, "external_id": null}, {"id": 10846464003, "name": "Johns Hopkins University", "priority": 642, "external_id": null}, {"id": 10846465003, "name": "Johnson & Wales University", "priority": 643, "external_id": null}, {"id": 10846466003, "name": "Johnson C. Smith University", "priority": 644, "external_id": null}, {"id": 10846467003, "name": "Johnson State College", "priority": 645, "external_id": null}, {"id": 10846468003, "name": "Johnson University", "priority": 646, "external_id": null}, {"id": 10846469003, "name": "Jones International University", "priority": 647, "external_id": null}, {"id": 10846470003, "name": "Judson College", "priority": 648, "external_id": null}, {"id": 10846471003, "name": "Judson University", "priority": 649, "external_id": null}, {"id": 10846472003, "name": "Juilliard School", "priority": 650, "external_id": null}, {"id": 10846473003, "name": "Juniata College", "priority": 651, "external_id": null}, {"id": 10846474003, "name": "Kalamazoo College", "priority": 652, "external_id": null}, {"id": 10846475003, "name": "Kansas City Art Institute", "priority": 653, "external_id": null}, {"id": 10846476003, "name": "Kansas Wesleyan University", "priority": 654, "external_id": null}, {"id": 10846477003, "name": "Kaplan University", "priority": 655, "external_id": null}, {"id": 10846478003, "name": "Kean University", "priority": 656, "external_id": null}, {"id": 10846479003, "name": "Keene State College", "priority": 657, "external_id": null}, {"id": 10846480003, "name": "Keiser University", "priority": 658, "external_id": null}, {"id": 10846481003, "name": "Kendall College", "priority": 659, "external_id": null}, {"id": 10846482003, "name": "Kennesaw State University", "priority": 660, "external_id": null}, {"id": 10846483003, "name": "Kentucky Christian University", "priority": 661, "external_id": null}, {"id": 10846484003, "name": "Kentucky State University", "priority": 662, "external_id": null}, {"id": 10846485003, "name": "Kentucky Wesleyan College", "priority": 663, "external_id": null}, {"id": 10846486003, "name": "Kenyon College", "priority": 664, "external_id": null}, {"id": 10846487003, "name": "Kettering College", "priority": 665, "external_id": null}, {"id": 10846488003, "name": "Kettering University", "priority": 666, "external_id": null}, {"id": 10846489003, "name": "Keuka College", "priority": 667, "external_id": null}, {"id": 10846490003, "name": "Keystone College", "priority": 668, "external_id": null}, {"id": 10846491003, "name": "King University", "priority": 669, "external_id": null}, {"id": 10846492003, "name": "King's College", "priority": 670, "external_id": null}, {"id": 10846493003, "name": "Knox College", "priority": 671, "external_id": null}, {"id": 10846494003, "name": "Kutztown University of Pennsylvania", "priority": 672, "external_id": null}, {"id": 10846495003, "name": "Kuyper College", "priority": 673, "external_id": null}, {"id": 10846496003, "name": "La Roche College", "priority": 674, "external_id": null}, {"id": 10846497003, "name": "La Salle University", "priority": 675, "external_id": null}, {"id": 10846498003, "name": "La Sierra University", "priority": 676, "external_id": null}, {"id": 10846499003, "name": "LaGrange College", "priority": 677, "external_id": null}, {"id": 10846500003, "name": "Laguna College of Art and Design", "priority": 678, "external_id": null}, {"id": 10846501003, "name": "Lake Erie College", "priority": 679, "external_id": null}, {"id": 10846502003, "name": "Lake Forest College", "priority": 680, "external_id": null}, {"id": 10846503003, "name": "Lake Superior State University", "priority": 681, "external_id": null}, {"id": 10846504003, "name": "Lakeland College", "priority": 682, "external_id": null}, {"id": 10846505003, "name": "Lakeview College of Nursing", "priority": 683, "external_id": null}, {"id": 10846506003, "name": "Lancaster Bible College", "priority": 684, "external_id": null}, {"id": 10846507003, "name": "Lander University", "priority": 685, "external_id": null}, {"id": 10846508003, "name": "Lane College", "priority": 686, "external_id": null}, {"id": 10846509003, "name": "Langston University", "priority": 687, "external_id": null}, {"id": 10846510003, "name": "Lasell College", "priority": 688, "external_id": null}, {"id": 10846511003, "name": "Lawrence Technological University", "priority": 689, "external_id": null}, {"id": 10846512003, "name": "Lawrence University", "priority": 690, "external_id": null}, {"id": 10846513003, "name": "Le Moyne College", "priority": 691, "external_id": null}, {"id": 10846514003, "name": "Lebanon Valley College", "priority": 692, "external_id": null}, {"id": 10846515003, "name": "Lee University", "priority": 693, "external_id": null}, {"id": 10846516003, "name": "Lees-McRae College", "priority": 694, "external_id": null}, {"id": 10846517003, "name": "Kansas State University", "priority": 695, "external_id": null}, {"id": 10846518003, "name": "James Madison University", "priority": 696, "external_id": null}, {"id": 10846519003, "name": "Lafayette College", "priority": 697, "external_id": null}, {"id": 10846520003, "name": "Jacksonville University", "priority": 698, "external_id": null}, {"id": 10846521003, "name": "Kent State University", "priority": 699, "external_id": null}, {"id": 10846522003, "name": "Lamar University", "priority": 700, "external_id": null}, {"id": 10846523003, "name": "Jackson State University", "priority": 701, "external_id": null}, {"id": 10846524003, "name": "Lehigh University", "priority": 702, "external_id": null}, {"id": 10846525003, "name": "Jacksonville State University", "priority": 703, "external_id": null}, {"id": 10846526003, "name": "LeMoyne-Owen College", "priority": 704, "external_id": null}, {"id": 10846527003, "name": "Lenoir-Rhyne University", "priority": 705, "external_id": null}, {"id": 10846528003, "name": "Lesley University", "priority": 706, "external_id": null}, {"id": 10846529003, "name": "LeTourneau University", "priority": 707, "external_id": null}, {"id": 10846530003, "name": "Lewis & Clark College", "priority": 708, "external_id": null}, {"id": 10846531003, "name": "Lewis University", "priority": 709, "external_id": null}, {"id": 10846532003, "name": "Lewis-Clark State College", "priority": 710, "external_id": null}, {"id": 10846533003, "name": "Lexington College", "priority": 711, "external_id": null}, {"id": 10846534003, "name": "Life Pacific College", "priority": 712, "external_id": null}, {"id": 10846535003, "name": "Life University", "priority": 713, "external_id": null}, {"id": 10846536003, "name": "LIM College", "priority": 714, "external_id": null}, {"id": 10846537003, "name": "Limestone College", "priority": 715, "external_id": null}, {"id": 10846538003, "name": "Lincoln Christian University", "priority": 716, "external_id": null}, {"id": 10846539003, "name": "Lincoln College", "priority": 717, "external_id": null}, {"id": 10846540003, "name": "Lincoln Memorial University", "priority": 718, "external_id": null}, {"id": 10846541003, "name": "Lincoln University", "priority": 719, "external_id": null}, {"id": 10846542003, "name": "Lindenwood University", "priority": 720, "external_id": null}, {"id": 10846543003, "name": "Lindsey Wilson College", "priority": 721, "external_id": null}, {"id": 10846544003, "name": "Linfield College", "priority": 722, "external_id": null}, {"id": 10846545003, "name": "Lipscomb University", "priority": 723, "external_id": null}, {"id": 10846546003, "name": "LIU Post", "priority": 724, "external_id": null}, {"id": 10846547003, "name": "Livingstone College", "priority": 725, "external_id": null}, {"id": 10846548003, "name": "Lock Haven University of Pennsylvania", "priority": 726, "external_id": null}, {"id": 10846549003, "name": "Loma Linda University", "priority": 727, "external_id": null}, {"id": 10846550003, "name": "Longwood University", "priority": 728, "external_id": null}, {"id": 10846551003, "name": "Loras College", "priority": 729, "external_id": null}, {"id": 10846552003, "name": "Louisiana College", "priority": 730, "external_id": null}, {"id": 10846553003, "name": "Louisiana State University Health Sciences Center", "priority": 731, "external_id": null}, {"id": 10846554003, "name": "Louisiana State University - Alexandria", "priority": 732, "external_id": null}, {"id": 10846555003, "name": "Louisiana State University - Shreveport", "priority": 733, "external_id": null}, {"id": 10846556003, "name": "Lourdes University", "priority": 734, "external_id": null}, {"id": 10846557003, "name": "Loyola Marymount University", "priority": 735, "external_id": null}, {"id": 10846558003, "name": "Loyola University Chicago", "priority": 736, "external_id": null}, {"id": 10846559003, "name": "Loyola University Maryland", "priority": 737, "external_id": null}, {"id": 10846560003, "name": "Loyola University New Orleans", "priority": 738, "external_id": null}, {"id": 10846561003, "name": "Lubbock Christian University", "priority": 739, "external_id": null}, {"id": 10846562003, "name": "Luther College", "priority": 740, "external_id": null}, {"id": 10846563003, "name": "Lycoming College", "priority": 741, "external_id": null}, {"id": 10846564003, "name": "Lyme Academy College of Fine Arts", "priority": 742, "external_id": null}, {"id": 10846565003, "name": "Lynchburg College", "priority": 743, "external_id": null}, {"id": 10846566003, "name": "Lyndon State College", "priority": 744, "external_id": null}, {"id": 10846567003, "name": "Lynn University", "priority": 745, "external_id": null}, {"id": 10846568003, "name": "Lyon College", "priority": 746, "external_id": null}, {"id": 10846569003, "name": "Macalester College", "priority": 747, "external_id": null}, {"id": 10846570003, "name": "MacMurray College", "priority": 748, "external_id": null}, {"id": 10846571003, "name": "Madonna University", "priority": 749, "external_id": null}, {"id": 10846572003, "name": "Maharishi University of Management", "priority": 750, "external_id": null}, {"id": 10846573003, "name": "Maine College of Art", "priority": 751, "external_id": null}, {"id": 10846574003, "name": "Maine Maritime Academy", "priority": 752, "external_id": null}, {"id": 10846575003, "name": "Malone University", "priority": 753, "external_id": null}, {"id": 10846576003, "name": "Manchester University", "priority": 754, "external_id": null}, {"id": 10846577003, "name": "Manhattan Christian College", "priority": 755, "external_id": null}, {"id": 10846578003, "name": "Manhattan College", "priority": 756, "external_id": null}, {"id": 10846579003, "name": "Manhattan School of Music", "priority": 757, "external_id": null}, {"id": 10846580003, "name": "Manhattanville College", "priority": 758, "external_id": null}, {"id": 10846581003, "name": "Mansfield University of Pennsylvania", "priority": 759, "external_id": null}, {"id": 10846582003, "name": "Maranatha Baptist Bible College", "priority": 760, "external_id": null}, {"id": 10846583003, "name": "Marian University", "priority": 761, "external_id": null}, {"id": 10846584003, "name": "Marietta College", "priority": 762, "external_id": null}, {"id": 10846585003, "name": "Marlboro College", "priority": 763, "external_id": null}, {"id": 10846586003, "name": "Marquette University", "priority": 764, "external_id": null}, {"id": 10846587003, "name": "Mars Hill University", "priority": 765, "external_id": null}, {"id": 10846588003, "name": "Martin Luther College", "priority": 766, "external_id": null}, {"id": 10846589003, "name": "Martin Methodist College", "priority": 767, "external_id": null}, {"id": 10846590003, "name": "Martin University", "priority": 768, "external_id": null}, {"id": 10846591003, "name": "Mary Baldwin College", "priority": 769, "external_id": null}, {"id": 10846592003, "name": "Marygrove College", "priority": 770, "external_id": null}, {"id": 10846593003, "name": "Maryland Institute College of Art", "priority": 771, "external_id": null}, {"id": 10846594003, "name": "Marylhurst University", "priority": 772, "external_id": null}, {"id": 10846595003, "name": "Marymount Manhattan College", "priority": 773, "external_id": null}, {"id": 10846596003, "name": "Marymount University", "priority": 774, "external_id": null}, {"id": 10846597003, "name": "Maryville College", "priority": 775, "external_id": null}, {"id": 10846598003, "name": "Maryville University of St. Louis", "priority": 776, "external_id": null}, {"id": 10846599003, "name": "Marywood University", "priority": 777, "external_id": null}, {"id": 10846600003, "name": "Massachusetts College of Art and Design", "priority": 778, "external_id": null}, {"id": 10846601003, "name": "Massachusetts College of Liberal Arts", "priority": 779, "external_id": null}, {"id": 10846602003, "name": "Massachusetts College of Pharmacy and Health Sciences", "priority": 780, "external_id": null}, {"id": 10846603003, "name": "Massachusetts Institute of Technology", "priority": 781, "external_id": null}, {"id": 10846604003, "name": "Massachusetts Maritime Academy", "priority": 782, "external_id": null}, {"id": 10846605003, "name": "Master's College and Seminary", "priority": 783, "external_id": null}, {"id": 10846606003, "name": "Mayville State University", "priority": 784, "external_id": null}, {"id": 10846607003, "name": "McDaniel College", "priority": 785, "external_id": null}, {"id": 10846608003, "name": "McGill University", "priority": 786, "external_id": null}, {"id": 10846609003, "name": "McKendree University", "priority": 787, "external_id": null}, {"id": 10846610003, "name": "McMurry University", "priority": 788, "external_id": null}, {"id": 10846611003, "name": "McPherson College", "priority": 789, "external_id": null}, {"id": 10846612003, "name": "Medaille College", "priority": 790, "external_id": null}, {"id": 10846613003, "name": "Marist College", "priority": 791, "external_id": null}, {"id": 10846614003, "name": "McNeese State University", "priority": 792, "external_id": null}, {"id": 10846615003, "name": "Louisiana Tech University", "priority": 793, "external_id": null}, {"id": 10846616003, "name": "Marshall University", "priority": 794, "external_id": null}, {"id": 10846617003, "name": "Medical University of South Carolina", "priority": 795, "external_id": null}, {"id": 10846618003, "name": "Memorial University of Newfoundland", "priority": 796, "external_id": null}, {"id": 10846619003, "name": "Memphis College of Art", "priority": 797, "external_id": null}, {"id": 10846620003, "name": "Menlo College", "priority": 798, "external_id": null}, {"id": 10846621003, "name": "Mercy College", "priority": 799, "external_id": null}, {"id": 10846622003, "name": "Mercy College of Health Sciences", "priority": 800, "external_id": null}, {"id": 10846623003, "name": "Mercy College of Ohio", "priority": 801, "external_id": null}, {"id": 10846624003, "name": "Mercyhurst University", "priority": 802, "external_id": null}, {"id": 10846625003, "name": "Meredith College", "priority": 803, "external_id": null}, {"id": 10846626003, "name": "Merrimack College", "priority": 804, "external_id": null}, {"id": 10846627003, "name": "Messiah College", "priority": 805, "external_id": null}, {"id": 10846628003, "name": "Methodist University", "priority": 806, "external_id": null}, {"id": 10846629003, "name": "Metropolitan College of New York", "priority": 807, "external_id": null}, {"id": 10846630003, "name": "Metropolitan State University", "priority": 808, "external_id": null}, {"id": 10846631003, "name": "Metropolitan State University of Denver", "priority": 809, "external_id": null}, {"id": 10846632003, "name": "Miami Dade College", "priority": 810, "external_id": null}, {"id": 10846633003, "name": "Miami International University of Art & Design", "priority": 811, "external_id": null}, {"id": 10846634003, "name": "Michigan Technological University", "priority": 812, "external_id": null}, {"id": 10846635003, "name": "Mid-America Christian University", "priority": 813, "external_id": null}, {"id": 10846636003, "name": "Mid-Atlantic Christian University", "priority": 814, "external_id": null}, {"id": 10846637003, "name": "Mid-Continent University", "priority": 815, "external_id": null}, {"id": 10846638003, "name": "MidAmerica Nazarene University", "priority": 816, "external_id": null}, {"id": 10846639003, "name": "Middle Georgia State College", "priority": 817, "external_id": null}, {"id": 10846640003, "name": "Middlebury College", "priority": 818, "external_id": null}, {"id": 10846641003, "name": "Midland College", "priority": 819, "external_id": null}, {"id": 10846642003, "name": "Midland University", "priority": 820, "external_id": null}, {"id": 10846643003, "name": "Midstate College", "priority": 821, "external_id": null}, {"id": 10846644003, "name": "Midway College", "priority": 822, "external_id": null}, {"id": 10846645003, "name": "Midwestern State University", "priority": 823, "external_id": null}, {"id": 10846646003, "name": "Miles College", "priority": 824, "external_id": null}, {"id": 10846647003, "name": "Millersville University of Pennsylvania", "priority": 825, "external_id": null}, {"id": 10846648003, "name": "Milligan College", "priority": 826, "external_id": null}, {"id": 10846649003, "name": "Millikin University", "priority": 827, "external_id": null}, {"id": 10846650003, "name": "Mills College", "priority": 828, "external_id": null}, {"id": 10846651003, "name": "Millsaps College", "priority": 829, "external_id": null}, {"id": 10846652003, "name": "Milwaukee Institute of Art and Design", "priority": 830, "external_id": null}, {"id": 10846653003, "name": "Milwaukee School of Engineering", "priority": 831, "external_id": null}, {"id": 10846654003, "name": "Minneapolis College of Art and Design", "priority": 832, "external_id": null}, {"id": 10846655003, "name": "Minnesota State University - Mankato", "priority": 833, "external_id": null}, {"id": 10846656003, "name": "Minnesota State University - Moorhead", "priority": 834, "external_id": null}, {"id": 10846657003, "name": "Minot State University", "priority": 835, "external_id": null}, {"id": 10846658003, "name": "Misericordia University", "priority": 836, "external_id": null}, {"id": 10846659003, "name": "Mississippi College", "priority": 837, "external_id": null}, {"id": 10846660003, "name": "Mississippi University for Women", "priority": 838, "external_id": null}, {"id": 10846661003, "name": "Missouri Baptist University", "priority": 839, "external_id": null}, {"id": 10846662003, "name": "Missouri Southern State University", "priority": 840, "external_id": null}, {"id": 10846663003, "name": "Missouri University of Science & Technology", "priority": 841, "external_id": null}, {"id": 10846664003, "name": "Missouri Valley College", "priority": 842, "external_id": null}, {"id": 10846665003, "name": "Missouri Western State University", "priority": 843, "external_id": null}, {"id": 10846666003, "name": "Mitchell College", "priority": 844, "external_id": null}, {"id": 10846667003, "name": "Molloy College", "priority": 845, "external_id": null}, {"id": 10846668003, "name": "Monmouth College", "priority": 846, "external_id": null}, {"id": 10846669003, "name": "Monroe College", "priority": 847, "external_id": null}, {"id": 10846670003, "name": "Montana State University - Billings", "priority": 848, "external_id": null}, {"id": 10846671003, "name": "Montana State University - Northern", "priority": 849, "external_id": null}, {"id": 10846672003, "name": "Montana Tech of the University of Montana", "priority": 850, "external_id": null}, {"id": 10846673003, "name": "Montclair State University", "priority": 851, "external_id": null}, {"id": 10846674003, "name": "Monterrey Institute of Technology and Higher Education - Monterrey", "priority": 852, "external_id": null}, {"id": 10846675003, "name": "Montreat College", "priority": 853, "external_id": null}, {"id": 10846676003, "name": "Montserrat College of Art", "priority": 854, "external_id": null}, {"id": 10846677003, "name": "Moody Bible Institute", "priority": 855, "external_id": null}, {"id": 10846678003, "name": "Moore College of Art & Design", "priority": 856, "external_id": null}, {"id": 10846679003, "name": "Moravian College", "priority": 857, "external_id": null}, {"id": 10846680003, "name": "Morehouse College", "priority": 858, "external_id": null}, {"id": 10846681003, "name": "Morningside College", "priority": 859, "external_id": null}, {"id": 10846682003, "name": "Morris College", "priority": 860, "external_id": null}, {"id": 10846683003, "name": "Morrisville State College", "priority": 861, "external_id": null}, {"id": 10846684003, "name": "Mount Aloysius College", "priority": 862, "external_id": null}, {"id": 10846685003, "name": "Mount Angel Seminary", "priority": 863, "external_id": null}, {"id": 10846686003, "name": "Mount Carmel College of Nursing", "priority": 864, "external_id": null}, {"id": 10846687003, "name": "Mount Holyoke College", "priority": 865, "external_id": null}, {"id": 10846688003, "name": "Mount Ida College", "priority": 866, "external_id": null}, {"id": 10846689003, "name": "Mount Marty College", "priority": 867, "external_id": null}, {"id": 10846690003, "name": "Mount Mary University", "priority": 868, "external_id": null}, {"id": 10846691003, "name": "Mount Mercy University", "priority": 869, "external_id": null}, {"id": 10846692003, "name": "Mount Olive College", "priority": 870, "external_id": null}, {"id": 10846693003, "name": "Mississippi State University", "priority": 871, "external_id": null}, {"id": 10846694003, "name": "Montana State University", "priority": 872, "external_id": null}, {"id": 10846695003, "name": "Mississippi Valley State University", "priority": 873, "external_id": null}, {"id": 10846696003, "name": "Monmouth University", "priority": 874, "external_id": null}, {"id": 10846697003, "name": "Morehead State University", "priority": 875, "external_id": null}, {"id": 10846698003, "name": "Miami University - Oxford", "priority": 876, "external_id": null}, {"id": 10846699003, "name": "Morgan State University", "priority": 877, "external_id": null}, {"id": 10846700003, "name": "Missouri State University", "priority": 878, "external_id": null}, {"id": 10846701003, "name": "Michigan State University", "priority": 879, "external_id": null}, {"id": 10846702003, "name": "Mount St. Mary College", "priority": 880, "external_id": null}, {"id": 10846703003, "name": "Mount St. Mary's College", "priority": 881, "external_id": null}, {"id": 10846704003, "name": "Mount St. Mary's University", "priority": 882, "external_id": null}, {"id": 10846705003, "name": "Mount Vernon Nazarene University", "priority": 883, "external_id": null}, {"id": 10846706003, "name": "Muhlenberg College", "priority": 884, "external_id": null}, {"id": 10846707003, "name": "Multnomah University", "priority": 885, "external_id": null}, {"id": 10846708003, "name": "Muskingum University", "priority": 886, "external_id": null}, {"id": 10846709003, "name": "Naropa University", "priority": 887, "external_id": null}, {"id": 10846710003, "name": "National American University", "priority": 888, "external_id": null}, {"id": 10846711003, "name": "National Graduate School of Quality Management", "priority": 889, "external_id": null}, {"id": 10846712003, "name": "National Hispanic University", "priority": 890, "external_id": null}, {"id": 10846713003, "name": "National Labor College", "priority": 891, "external_id": null}, {"id": 10846714003, "name": "National University", "priority": 892, "external_id": null}, {"id": 10846715003, "name": "National-Louis University", "priority": 893, "external_id": null}, {"id": 10846716003, "name": "Nazarene Bible College", "priority": 894, "external_id": null}, {"id": 10846717003, "name": "Nazareth College", "priority": 895, "external_id": null}, {"id": 10846718003, "name": "Nebraska Methodist College", "priority": 896, "external_id": null}, {"id": 10846719003, "name": "Nebraska Wesleyan University", "priority": 897, "external_id": null}, {"id": 10846720003, "name": "Neumann University", "priority": 898, "external_id": null}, {"id": 10846721003, "name": "Nevada State College", "priority": 899, "external_id": null}, {"id": 10846722003, "name": "New College of Florida", "priority": 900, "external_id": null}, {"id": 10846723003, "name": "New England College", "priority": 901, "external_id": null}, {"id": 10846724003, "name": "New England Conservatory of Music", "priority": 902, "external_id": null}, {"id": 10846725003, "name": "New England Institute of Art", "priority": 903, "external_id": null}, {"id": 10846726003, "name": "New England Institute of Technology", "priority": 904, "external_id": null}, {"id": 10846727003, "name": "New Jersey City University", "priority": 905, "external_id": null}, {"id": 10846728003, "name": "New Jersey Institute of Technology", "priority": 906, "external_id": null}, {"id": 10846729003, "name": "New Mexico Highlands University", "priority": 907, "external_id": null}, {"id": 10846730003, "name": "New Mexico Institute of Mining and Technology", "priority": 908, "external_id": null}, {"id": 10846731003, "name": "New Orleans Baptist Theological Seminary", "priority": 909, "external_id": null}, {"id": 10846732003, "name": "New School", "priority": 910, "external_id": null}, {"id": 10846733003, "name": "New York Institute of Technology", "priority": 911, "external_id": null}, {"id": 10846734003, "name": "New York University", "priority": 912, "external_id": null}, {"id": 10846735003, "name": "Newberry College", "priority": 913, "external_id": null}, {"id": 10846736003, "name": "Newbury College", "priority": 914, "external_id": null}, {"id": 10846737003, "name": "Newman University", "priority": 915, "external_id": null}, {"id": 10846738003, "name": "Niagara University", "priority": 916, "external_id": null}, {"id": 10846739003, "name": "Nichols College", "priority": 917, "external_id": null}, {"id": 10846740003, "name": "North Carolina Wesleyan College", "priority": 918, "external_id": null}, {"id": 10846741003, "name": "North Central College", "priority": 919, "external_id": null}, {"id": 10846742003, "name": "North Central University", "priority": 920, "external_id": null}, {"id": 10846743003, "name": "North Greenville University", "priority": 921, "external_id": null}, {"id": 10846744003, "name": "North Park University", "priority": 922, "external_id": null}, {"id": 10846745003, "name": "Northcentral University", "priority": 923, "external_id": null}, {"id": 10846746003, "name": "Northeastern Illinois University", "priority": 924, "external_id": null}, {"id": 10846747003, "name": "Northeastern State University", "priority": 925, "external_id": null}, {"id": 10846748003, "name": "Northeastern University", "priority": 926, "external_id": null}, {"id": 10846749003, "name": "Northern Kentucky University", "priority": 927, "external_id": null}, {"id": 10846750003, "name": "Northern Michigan University", "priority": 928, "external_id": null}, {"id": 10846751003, "name": "Northern New Mexico College", "priority": 929, "external_id": null}, {"id": 10846752003, "name": "Northern State University", "priority": 930, "external_id": null}, {"id": 10846753003, "name": "Northland College", "priority": 931, "external_id": null}, {"id": 10846754003, "name": "Northwest Christian University", "priority": 932, "external_id": null}, {"id": 10846755003, "name": "Northwest Florida State College", "priority": 933, "external_id": null}, {"id": 10846756003, "name": "Northwest Missouri State University", "priority": 934, "external_id": null}, {"id": 10846757003, "name": "Northwest Nazarene University", "priority": 935, "external_id": null}, {"id": 10846758003, "name": "Northwest University", "priority": 936, "external_id": null}, {"id": 10846759003, "name": "Northwestern College", "priority": 937, "external_id": null}, {"id": 10846760003, "name": "Northwestern Health Sciences University", "priority": 938, "external_id": null}, {"id": 10846761003, "name": "Northwestern Oklahoma State University", "priority": 939, "external_id": null}, {"id": 10846762003, "name": "Northwood University", "priority": 940, "external_id": null}, {"id": 10846763003, "name": "Norwich University", "priority": 941, "external_id": null}, {"id": 10846764003, "name": "Notre Dame College of Ohio", "priority": 942, "external_id": null}, {"id": 10846765003, "name": "Notre Dame de Namur University", "priority": 943, "external_id": null}, {"id": 10846766003, "name": "Notre Dame of Maryland University", "priority": 944, "external_id": null}, {"id": 10846767003, "name": "Nova Scotia College of Art and Design", "priority": 945, "external_id": null}, {"id": 10846768003, "name": "Nova Southeastern University", "priority": 946, "external_id": null}, {"id": 10846769003, "name": "Nyack College", "priority": 947, "external_id": null}, {"id": 10846770003, "name": "Oakland City University", "priority": 948, "external_id": null}, {"id": 10846771003, "name": "Oakland University", "priority": 949, "external_id": null}, {"id": 10846772003, "name": "Oakwood University", "priority": 950, "external_id": null}, {"id": 10846773003, "name": "Oberlin College", "priority": 951, "external_id": null}, {"id": 10846774003, "name": "Occidental College", "priority": 952, "external_id": null}, {"id": 10846775003, "name": "Oglala Lakota College", "priority": 953, "external_id": null}, {"id": 10846776003, "name": "North Carolina A&T State University", "priority": 954, "external_id": null}, {"id": 10846777003, "name": "Northern Illinois University", "priority": 955, "external_id": null}, {"id": 10846778003, "name": "North Dakota State University", "priority": 956, "external_id": null}, {"id": 10846779003, "name": "Nicholls State University", "priority": 957, "external_id": null}, {"id": 10846780003, "name": "North Carolina Central University", "priority": 958, "external_id": null}, {"id": 10846781003, "name": "Norfolk State University", "priority": 959, "external_id": null}, {"id": 10846782003, "name": "Northwestern State University of Louisiana", "priority": 960, "external_id": null}, {"id": 10846783003, "name": "Northern Arizona University", "priority": 961, "external_id": null}, {"id": 10846784003, "name": "North Carolina State University - Raleigh", "priority": 962, "external_id": null}, {"id": 10846785003, "name": "Northwestern University", "priority": 963, "external_id": null}, {"id": 10846786003, "name": "Oglethorpe University", "priority": 964, "external_id": null}, {"id": 10846787003, "name": "Ohio Christian University", "priority": 965, "external_id": null}, {"id": 10846788003, "name": "Ohio Dominican University", "priority": 966, "external_id": null}, {"id": 10846789003, "name": "Ohio Northern University", "priority": 967, "external_id": null}, {"id": 10846790003, "name": "Ohio Valley University", "priority": 968, "external_id": null}, {"id": 10846791003, "name": "Ohio Wesleyan University", "priority": 969, "external_id": null}, {"id": 10846792003, "name": "Oklahoma Baptist University", "priority": 970, "external_id": null}, {"id": 10846793003, "name": "Oklahoma Christian University", "priority": 971, "external_id": null}, {"id": 10846794003, "name": "Oklahoma City University", "priority": 972, "external_id": null}, {"id": 10846795003, "name": "Oklahoma Panhandle State University", "priority": 973, "external_id": null}, {"id": 10846796003, "name": "Oklahoma State University Institute of Technology - Okmulgee", "priority": 974, "external_id": null}, {"id": 10846797003, "name": "Oklahoma State University - Oklahoma City", "priority": 975, "external_id": null}, {"id": 10846798003, "name": "Oklahoma Wesleyan University", "priority": 976, "external_id": null}, {"id": 10846799003, "name": "Olivet College", "priority": 977, "external_id": null}, {"id": 10846800003, "name": "Olivet Nazarene University", "priority": 978, "external_id": null}, {"id": 10846801003, "name": "Olympic College", "priority": 979, "external_id": null}, {"id": 10846802003, "name": "Oral Roberts University", "priority": 980, "external_id": null}, {"id": 10846803003, "name": "Oregon College of Art and Craft", "priority": 981, "external_id": null}, {"id": 10846804003, "name": "Oregon Health and Science University", "priority": 982, "external_id": null}, {"id": 10846805003, "name": "Oregon Institute of Technology", "priority": 983, "external_id": null}, {"id": 10846806003, "name": "Otis College of Art and Design", "priority": 984, "external_id": null}, {"id": 10846807003, "name": "Ottawa University", "priority": 985, "external_id": null}, {"id": 10846808003, "name": "Otterbein University", "priority": 986, "external_id": null}, {"id": 10846809003, "name": "Ouachita Baptist University", "priority": 987, "external_id": null}, {"id": 10846810003, "name": "Our Lady of Holy Cross College", "priority": 988, "external_id": null}, {"id": 10846811003, "name": "Our Lady of the Lake College", "priority": 989, "external_id": null}, {"id": 10846812003, "name": "Our Lady of the Lake University", "priority": 990, "external_id": null}, {"id": 10846813003, "name": "Pace University", "priority": 991, "external_id": null}, {"id": 10846814003, "name": "Pacific Lutheran University", "priority": 992, "external_id": null}, {"id": 10846815003, "name": "Pacific Northwest College of Art", "priority": 993, "external_id": null}, {"id": 10846816003, "name": "Pacific Oaks College", "priority": 994, "external_id": null}, {"id": 10846817003, "name": "Pacific Union College", "priority": 995, "external_id": null}, {"id": 10846818003, "name": "Pacific University", "priority": 996, "external_id": null}, {"id": 10846819003, "name": "Paine College", "priority": 997, "external_id": null}, {"id": 10846820003, "name": "Palm Beach Atlantic University", "priority": 998, "external_id": null}, {"id": 10846821003, "name": "Palmer College of Chiropractic", "priority": 999, "external_id": null}, {"id": 10846822003, "name": "Park University", "priority": 1000, "external_id": null}, {"id": 10846823003, "name": "Parker University", "priority": 1001, "external_id": null}, {"id": 10846824003, "name": "Patten University", "priority": 1002, "external_id": null}, {"id": 10846825003, "name": "Paul Smith's College", "priority": 1003, "external_id": null}, {"id": 10846826003, "name": "Peirce College", "priority": 1004, "external_id": null}, {"id": 10846827003, "name": "Peninsula College", "priority": 1005, "external_id": null}, {"id": 10846828003, "name": "Pennsylvania College of Art and Design", "priority": 1006, "external_id": null}, {"id": 10846829003, "name": "Pennsylvania College of Technology", "priority": 1007, "external_id": null}, {"id": 10846830003, "name": "Pennsylvania State University - Erie, The Behrend College", "priority": 1008, "external_id": null}, {"id": 10846831003, "name": "Pennsylvania State University - Harrisburg", "priority": 1009, "external_id": null}, {"id": 10846832003, "name": "Pepperdine University", "priority": 1010, "external_id": null}, {"id": 10846833003, "name": "Peru State College", "priority": 1011, "external_id": null}, {"id": 10846834003, "name": "Pfeiffer University", "priority": 1012, "external_id": null}, {"id": 10846835003, "name": "Philadelphia University", "priority": 1013, "external_id": null}, {"id": 10846836003, "name": "Philander Smith College", "priority": 1014, "external_id": null}, {"id": 10846837003, "name": "Piedmont College", "priority": 1015, "external_id": null}, {"id": 10846838003, "name": "Pine Manor College", "priority": 1016, "external_id": null}, {"id": 10846839003, "name": "Pittsburg State University", "priority": 1017, "external_id": null}, {"id": 10846840003, "name": "Pitzer College", "priority": 1018, "external_id": null}, {"id": 10846841003, "name": "Plaza College", "priority": 1019, "external_id": null}, {"id": 10846842003, "name": "Plymouth State University", "priority": 1020, "external_id": null}, {"id": 10846843003, "name": "Point Loma Nazarene University", "priority": 1021, "external_id": null}, {"id": 10846844003, "name": "Point Park University", "priority": 1022, "external_id": null}, {"id": 10846845003, "name": "Point University", "priority": 1023, "external_id": null}, {"id": 10846846003, "name": "Polytechnic Institute of New York University", "priority": 1024, "external_id": null}, {"id": 10846847003, "name": "Pomona College", "priority": 1025, "external_id": null}, {"id": 10846848003, "name": "Pontifical Catholic University of Puerto Rico", "priority": 1026, "external_id": null}, {"id": 10846849003, "name": "Pontifical College Josephinum", "priority": 1027, "external_id": null}, {"id": 10846850003, "name": "Post University", "priority": 1028, "external_id": null}, {"id": 10846851003, "name": "Potomac College", "priority": 1029, "external_id": null}, {"id": 10846852003, "name": "Pratt Institute", "priority": 1030, "external_id": null}, {"id": 10846853003, "name": "Prescott College", "priority": 1031, "external_id": null}, {"id": 10846854003, "name": "Presentation College", "priority": 1032, "external_id": null}, {"id": 10846855003, "name": "Principia College", "priority": 1033, "external_id": null}, {"id": 10846856003, "name": "Providence College", "priority": 1034, "external_id": null}, {"id": 10846857003, "name": "Puerto Rico Conservatory of Music", "priority": 1035, "external_id": null}, {"id": 10846858003, "name": "Purchase College - SUNY", "priority": 1036, "external_id": null}, {"id": 10846859003, "name": "Purdue University - Calumet", "priority": 1037, "external_id": null}, {"id": 10846860003, "name": "Purdue University - North Central", "priority": 1038, "external_id": null}, {"id": 10846861003, "name": "Queens University of Charlotte", "priority": 1039, "external_id": null}, {"id": 10846862003, "name": "Oklahoma State University", "priority": 1040, "external_id": null}, {"id": 10846863003, "name": "Oregon State University", "priority": 1041, "external_id": null}, {"id": 10846864003, "name": "Portland State University", "priority": 1042, "external_id": null}, {"id": 10846865003, "name": "Old Dominion University", "priority": 1043, "external_id": null}, {"id": 10846866003, "name": "Prairie View A&M University", "priority": 1044, "external_id": null}, {"id": 10846867003, "name": "Presbyterian College", "priority": 1045, "external_id": null}, {"id": 10846868003, "name": "Purdue University - West Lafayette", "priority": 1046, "external_id": null}, {"id": 10846869003, "name": "Ohio University", "priority": 1047, "external_id": null}, {"id": 10846870003, "name": "Princeton University", "priority": 1048, "external_id": null}, {"id": 10846871003, "name": "Quincy University", "priority": 1049, "external_id": null}, {"id": 10846872003, "name": "Quinnipiac University", "priority": 1050, "external_id": null}, {"id": 10846873003, "name": "Radford University", "priority": 1051, "external_id": null}, {"id": 10846874003, "name": "Ramapo College of New Jersey", "priority": 1052, "external_id": null}, {"id": 10846875003, "name": "Randolph College", "priority": 1053, "external_id": null}, {"id": 10846876003, "name": "Randolph-Macon College", "priority": 1054, "external_id": null}, {"id": 10846877003, "name": "Ranken Technical College", "priority": 1055, "external_id": null}, {"id": 10846878003, "name": "Reed College", "priority": 1056, "external_id": null}, {"id": 10846879003, "name": "Regent University", "priority": 1057, "external_id": null}, {"id": 10846880003, "name": "Regent's American College London", "priority": 1058, "external_id": null}, {"id": 10846881003, "name": "Regis College", "priority": 1059, "external_id": null}, {"id": 10846882003, "name": "Regis University", "priority": 1060, "external_id": null}, {"id": 10846883003, "name": "Reinhardt University", "priority": 1061, "external_id": null}, {"id": 10846884003, "name": "Rensselaer Polytechnic Institute", "priority": 1062, "external_id": null}, {"id": 10846885003, "name": "Research College of Nursing", "priority": 1063, "external_id": null}, {"id": 10846886003, "name": "Resurrection University", "priority": 1064, "external_id": null}, {"id": 10846887003, "name": "Rhode Island College", "priority": 1065, "external_id": null}, {"id": 10846888003, "name": "Rhode Island School of Design", "priority": 1066, "external_id": null}, {"id": 10846889003, "name": "Rhodes College", "priority": 1067, "external_id": null}, {"id": 10846890003, "name": "Richard Stockton College of New Jersey", "priority": 1068, "external_id": null}, {"id": 10846891003, "name": "Richmond - The American International University in London", "priority": 1069, "external_id": null}, {"id": 10846892003, "name": "Rider University", "priority": 1070, "external_id": null}, {"id": 10846893003, "name": "Ringling College of Art and Design", "priority": 1071, "external_id": null}, {"id": 10846894003, "name": "Ripon College", "priority": 1072, "external_id": null}, {"id": 10846895003, "name": "Rivier University", "priority": 1073, "external_id": null}, {"id": 10846896003, "name": "Roanoke College", "priority": 1074, "external_id": null}, {"id": 10846897003, "name": "Robert B. Miller College", "priority": 1075, "external_id": null}, {"id": 10846898003, "name": "Roberts Wesleyan College", "priority": 1076, "external_id": null}, {"id": 10846899003, "name": "Rochester College", "priority": 1077, "external_id": null}, {"id": 10846900003, "name": "Rochester Institute of Technology", "priority": 1078, "external_id": null}, {"id": 10846901003, "name": "Rockford University", "priority": 1079, "external_id": null}, {"id": 10846902003, "name": "Rockhurst University", "priority": 1080, "external_id": null}, {"id": 10846903003, "name": "Rocky Mountain College", "priority": 1081, "external_id": null}, {"id": 10846904003, "name": "Rocky Mountain College of Art and Design", "priority": 1082, "external_id": null}, {"id": 10846905003, "name": "Roger Williams University", "priority": 1083, "external_id": null}, {"id": 10846906003, "name": "Rogers State University", "priority": 1084, "external_id": null}, {"id": 10846907003, "name": "Rollins College", "priority": 1085, "external_id": null}, {"id": 10846908003, "name": "Roosevelt University", "priority": 1086, "external_id": null}, {"id": 10846909003, "name": "Rosalind Franklin University of Medicine and Science", "priority": 1087, "external_id": null}, {"id": 10846910003, "name": "Rose-Hulman Institute of Technology", "priority": 1088, "external_id": null}, {"id": 10846911003, "name": "Rosemont College", "priority": 1089, "external_id": null}, {"id": 10846912003, "name": "Rowan University", "priority": 1090, "external_id": null}, {"id": 10846913003, "name": "Rush University", "priority": 1091, "external_id": null}, {"id": 10846914003, "name": "Rust College", "priority": 1092, "external_id": null}, {"id": 10846915003, "name": "Rutgers, the State University of New Jersey - Camden", "priority": 1093, "external_id": null}, {"id": 10846916003, "name": "Rutgers, the State University of New Jersey - Newark", "priority": 1094, "external_id": null}, {"id": 10846917003, "name": "Ryerson University", "priority": 1095, "external_id": null}, {"id": 10846918003, "name": "Sacred Heart Major Seminary", "priority": 1096, "external_id": null}, {"id": 10846919003, "name": "Saginaw Valley State University", "priority": 1097, "external_id": null}, {"id": 10846920003, "name": "Salem College", "priority": 1098, "external_id": null}, {"id": 10846921003, "name": "Salem International University", "priority": 1099, "external_id": null}, {"id": 10846922003, "name": "Salem State University", "priority": 1100, "external_id": null}, {"id": 10846923003, "name": "Salisbury University", "priority": 1101, "external_id": null}, {"id": 10846924003, "name": "Salish Kootenai College", "priority": 1102, "external_id": null}, {"id": 10846925003, "name": "Salve Regina University", "priority": 1103, "external_id": null}, {"id": 10846926003, "name": "Samuel Merritt University", "priority": 1104, "external_id": null}, {"id": 10846927003, "name": "San Diego Christian College", "priority": 1105, "external_id": null}, {"id": 10846928003, "name": "San Francisco Art Institute", "priority": 1106, "external_id": null}, {"id": 10846929003, "name": "San Francisco Conservatory of Music", "priority": 1107, "external_id": null}, {"id": 10846930003, "name": "San Francisco State University", "priority": 1108, "external_id": null}, {"id": 10846931003, "name": "Sanford College of Nursing", "priority": 1109, "external_id": null}, {"id": 10846932003, "name": "Santa Clara University", "priority": 1110, "external_id": null}, {"id": 10846933003, "name": "Santa Fe University of Art and Design", "priority": 1111, "external_id": null}, {"id": 10846934003, "name": "Sarah Lawrence College", "priority": 1112, "external_id": null}, {"id": 10846935003, "name": "Savannah College of Art and Design", "priority": 1113, "external_id": null}, {"id": 10846936003, "name": "School of the Art Institute of Chicago", "priority": 1114, "external_id": null}, {"id": 10846937003, "name": "School of Visual Arts", "priority": 1115, "external_id": null}, {"id": 10846938003, "name": "Schreiner University", "priority": 1116, "external_id": null}, {"id": 10846939003, "name": "Scripps College", "priority": 1117, "external_id": null}, {"id": 10846940003, "name": "Seattle Pacific University", "priority": 1118, "external_id": null}, {"id": 10846941003, "name": "Seattle University", "priority": 1119, "external_id": null}, {"id": 10846942003, "name": "Seton Hall University", "priority": 1120, "external_id": null}, {"id": 10846943003, "name": "Seton Hill University", "priority": 1121, "external_id": null}, {"id": 10846944003, "name": "Sewanee - University of the South", "priority": 1122, "external_id": null}, {"id": 10846945003, "name": "Shaw University", "priority": 1123, "external_id": null}, {"id": 10846946003, "name": "Shawnee State University", "priority": 1124, "external_id": null}, {"id": 10846947003, "name": "Shenandoah University", "priority": 1125, "external_id": null}, {"id": 10846948003, "name": "Shepherd University", "priority": 1126, "external_id": null}, {"id": 10846949003, "name": "Shimer College", "priority": 1127, "external_id": null}, {"id": 10846950003, "name": "Sacred Heart University", "priority": 1128, "external_id": null}, {"id": 10846951003, "name": "Robert Morris University", "priority": 1129, "external_id": null}, {"id": 10846952003, "name": "Sam Houston State University", "priority": 1130, "external_id": null}, {"id": 10846953003, "name": "Samford University", "priority": 1131, "external_id": null}, {"id": 10846954003, "name": "Savannah State University", "priority": 1132, "external_id": null}, {"id": 10846955003, "name": "San Jose State University", "priority": 1133, "external_id": null}, {"id": 10846956003, "name": "Rutgers, the State University of New Jersey - New Brunswick", "priority": 1134, "external_id": null}, {"id": 10846957003, "name": "San Diego State University", "priority": 1135, "external_id": null}, {"id": 10846958003, "name": "Shippensburg University of Pennsylvania", "priority": 1136, "external_id": null}, {"id": 10846959003, "name": "Shorter University", "priority": 1137, "external_id": null}, {"id": 10846960003, "name": "Siena College", "priority": 1138, "external_id": null}, {"id": 10846961003, "name": "Siena Heights University", "priority": 1139, "external_id": null}, {"id": 10846962003, "name": "Sierra Nevada College", "priority": 1140, "external_id": null}, {"id": 10846963003, "name": "Silver Lake College", "priority": 1141, "external_id": null}, {"id": 10846964003, "name": "Simmons College", "priority": 1142, "external_id": null}, {"id": 10846965003, "name": "Simon Fraser University", "priority": 1143, "external_id": null}, {"id": 10846966003, "name": "Simpson College", "priority": 1144, "external_id": null}, {"id": 10846967003, "name": "Simpson University", "priority": 1145, "external_id": null}, {"id": 10846968003, "name": "Sinte Gleska University", "priority": 1146, "external_id": null}, {"id": 10846969003, "name": "Sitting Bull College", "priority": 1147, "external_id": null}, {"id": 10846970003, "name": "Skidmore College", "priority": 1148, "external_id": null}, {"id": 10846971003, "name": "Slippery Rock University of Pennsylvania", "priority": 1149, "external_id": null}, {"id": 10846972003, "name": "Smith College", "priority": 1150, "external_id": null}, {"id": 10846973003, "name": "Sojourner-Douglass College", "priority": 1151, "external_id": null}, {"id": 10846974003, "name": "Soka University of America", "priority": 1152, "external_id": null}, {"id": 10846975003, "name": "Sonoma State University", "priority": 1153, "external_id": null}, {"id": 10846976003, "name": "South College", "priority": 1154, "external_id": null}, {"id": 10846977003, "name": "South Dakota School of Mines and Technology", "priority": 1155, "external_id": null}, {"id": 10846978003, "name": "South Seattle Community College", "priority": 1156, "external_id": null}, {"id": 10846979003, "name": "South Texas College", "priority": 1157, "external_id": null}, {"id": 10846980003, "name": "South University", "priority": 1158, "external_id": null}, {"id": 10846981003, "name": "Southeastern Oklahoma State University", "priority": 1159, "external_id": null}, {"id": 10846982003, "name": "Southeastern University", "priority": 1160, "external_id": null}, {"id": 10846983003, "name": "Southern Adventist University", "priority": 1161, "external_id": null}, {"id": 10846984003, "name": "Southern Arkansas University", "priority": 1162, "external_id": null}, {"id": 10846985003, "name": "Southern Baptist Theological Seminary", "priority": 1163, "external_id": null}, {"id": 10846986003, "name": "Southern California Institute of Architecture", "priority": 1164, "external_id": null}, {"id": 10846987003, "name": "Southern Connecticut State University", "priority": 1165, "external_id": null}, {"id": 10846988003, "name": "Southern Illinois University - Edwardsville", "priority": 1166, "external_id": null}, {"id": 10846989003, "name": "Southern Nazarene University", "priority": 1167, "external_id": null}, {"id": 10846990003, "name": "Southern New Hampshire University", "priority": 1168, "external_id": null}, {"id": 10846991003, "name": "Southern Oregon University", "priority": 1169, "external_id": null}, {"id": 10846992003, "name": "Southern Polytechnic State University", "priority": 1170, "external_id": null}, {"id": 10846993003, "name": "Southern University - New Orleans", "priority": 1171, "external_id": null}, {"id": 10846994003, "name": "Southern Vermont College", "priority": 1172, "external_id": null}, {"id": 10846995003, "name": "Southern Wesleyan University", "priority": 1173, "external_id": null}, {"id": 10846996003, "name": "Southwest Baptist University", "priority": 1174, "external_id": null}, {"id": 10846997003, "name": "Southwest Minnesota State University", "priority": 1175, "external_id": null}, {"id": 10846998003, "name": "Southwest University of Visual Arts", "priority": 1176, "external_id": null}, {"id": 10846999003, "name": "Southwestern Adventist University", "priority": 1177, "external_id": null}, {"id": 10847000003, "name": "Southwestern Assemblies of God University", "priority": 1178, "external_id": null}, {"id": 10847001003, "name": "Southwestern Christian College", "priority": 1179, "external_id": null}, {"id": 10847002003, "name": "Southwestern Christian University", "priority": 1180, "external_id": null}, {"id": 10847003003, "name": "Southwestern College", "priority": 1181, "external_id": null}, {"id": 10847004003, "name": "Southwestern Oklahoma State University", "priority": 1182, "external_id": null}, {"id": 10847005003, "name": "Southwestern University", "priority": 1183, "external_id": null}, {"id": 10847006003, "name": "Spalding University", "priority": 1184, "external_id": null}, {"id": 10847007003, "name": "Spelman College", "priority": 1185, "external_id": null}, {"id": 10847008003, "name": "Spring Arbor University", "priority": 1186, "external_id": null}, {"id": 10847009003, "name": "Spring Hill College", "priority": 1187, "external_id": null}, {"id": 10847010003, "name": "Springfield College", "priority": 1188, "external_id": null}, {"id": 10847011003, "name": "St. Ambrose University", "priority": 1189, "external_id": null}, {"id": 10847012003, "name": "St. Anselm College", "priority": 1190, "external_id": null}, {"id": 10847013003, "name": "St. Anthony College of Nursing", "priority": 1191, "external_id": null}, {"id": 10847014003, "name": "St. Augustine College", "priority": 1192, "external_id": null}, {"id": 10847015003, "name": "St. Augustine's University", "priority": 1193, "external_id": null}, {"id": 10847016003, "name": "St. Bonaventure University", "priority": 1194, "external_id": null}, {"id": 10847017003, "name": "St. Catharine College", "priority": 1195, "external_id": null}, {"id": 10847018003, "name": "St. Catherine University", "priority": 1196, "external_id": null}, {"id": 10847019003, "name": "St. Charles Borromeo Seminary", "priority": 1197, "external_id": null}, {"id": 10847020003, "name": "St. Cloud State University", "priority": 1198, "external_id": null}, {"id": 10847021003, "name": "St. Edward's University", "priority": 1199, "external_id": null}, {"id": 10847022003, "name": "St. Francis College", "priority": 1200, "external_id": null}, {"id": 10847023003, "name": "St. Francis Medical Center College of Nursing", "priority": 1201, "external_id": null}, {"id": 10847024003, "name": "St. Gregory's University", "priority": 1202, "external_id": null}, {"id": 10847025003, "name": "St. John Fisher College", "priority": 1203, "external_id": null}, {"id": 10847026003, "name": "St. John Vianney College Seminary", "priority": 1204, "external_id": null}, {"id": 10847027003, "name": "St. John's College", "priority": 1205, "external_id": null}, {"id": 10847028003, "name": "St. John's University", "priority": 1206, "external_id": null}, {"id": 10847029003, "name": "St. Joseph Seminary College", "priority": 1207, "external_id": null}, {"id": 10847030003, "name": "St. Joseph's College", "priority": 1208, "external_id": null}, {"id": 10847031003, "name": "St. Joseph's College New York", "priority": 1209, "external_id": null}, {"id": 10847032003, "name": "St. Joseph's University", "priority": 1210, "external_id": null}, {"id": 10847033003, "name": "St. Lawrence University", "priority": 1211, "external_id": null}, {"id": 10847034003, "name": "St. Leo University", "priority": 1212, "external_id": null}, {"id": 10847035003, "name": "Southern University and A&M College", "priority": 1213, "external_id": null}, {"id": 10847036003, "name": "Southern Methodist University", "priority": 1214, "external_id": null}, {"id": 10847037003, "name": "Southeast Missouri State University", "priority": 1215, "external_id": null}, {"id": 10847038003, "name": "Southern Utah University", "priority": 1216, "external_id": null}, {"id": 10847039003, "name": "South Dakota State University", "priority": 1217, "external_id": null}, {"id": 10847040003, "name": "St. Francis University", "priority": 1218, "external_id": null}, {"id": 10847041003, "name": "Southeastern Louisiana University", "priority": 1219, "external_id": null}, {"id": 10847042003, "name": "Southern Illinois University - Carbondale", "priority": 1220, "external_id": null}, {"id": 10847043003, "name": "St. Louis College of Pharmacy", "priority": 1221, "external_id": null}, {"id": 10847044003, "name": "St. Louis University", "priority": 1222, "external_id": null}, {"id": 10847045003, "name": "St. Luke's College of Health Sciences", "priority": 1223, "external_id": null}, {"id": 10847046003, "name": "St. Martin's University", "priority": 1224, "external_id": null}, {"id": 10847047003, "name": "St. Mary's College", "priority": 1225, "external_id": null}, {"id": 10847048003, "name": "St. Mary's College of California", "priority": 1226, "external_id": null}, {"id": 10847049003, "name": "St. Mary's College of Maryland", "priority": 1227, "external_id": null}, {"id": 10847050003, "name": "St. Mary's Seminary and University", "priority": 1228, "external_id": null}, {"id": 10847051003, "name": "St. Mary's University of Minnesota", "priority": 1229, "external_id": null}, {"id": 10847052003, "name": "St. Mary's University of San Antonio", "priority": 1230, "external_id": null}, {"id": 10847053003, "name": "St. Mary-of-the-Woods College", "priority": 1231, "external_id": null}, {"id": 10847054003, "name": "St. Michael's College", "priority": 1232, "external_id": null}, {"id": 10847055003, "name": "St. Norbert College", "priority": 1233, "external_id": null}, {"id": 10847056003, "name": "St. Olaf College", "priority": 1234, "external_id": null}, {"id": 10847057003, "name": "St. Paul's College", "priority": 1235, "external_id": null}, {"id": 10847058003, "name": "St. Peter's University", "priority": 1236, "external_id": null}, {"id": 10847059003, "name": "St. Petersburg College", "priority": 1237, "external_id": null}, {"id": 10847060003, "name": "St. Thomas Aquinas College", "priority": 1238, "external_id": null}, {"id": 10847061003, "name": "St. Thomas University", "priority": 1239, "external_id": null}, {"id": 10847062003, "name": "St. Vincent College", "priority": 1240, "external_id": null}, {"id": 10847063003, "name": "St. Xavier University", "priority": 1241, "external_id": null}, {"id": 10847064003, "name": "Stephens College", "priority": 1242, "external_id": null}, {"id": 10847065003, "name": "Sterling College", "priority": 1243, "external_id": null}, {"id": 10847066003, "name": "Stevens Institute of Technology", "priority": 1244, "external_id": null}, {"id": 10847067003, "name": "Stevenson University", "priority": 1245, "external_id": null}, {"id": 10847068003, "name": "Stillman College", "priority": 1246, "external_id": null}, {"id": 10847069003, "name": "Stonehill College", "priority": 1247, "external_id": null}, {"id": 10847070003, "name": "Strayer University", "priority": 1248, "external_id": null}, {"id": 10847071003, "name": "Suffolk University", "priority": 1249, "external_id": null}, {"id": 10847072003, "name": "Sul Ross State University", "priority": 1250, "external_id": null}, {"id": 10847073003, "name": "Sullivan University", "priority": 1251, "external_id": null}, {"id": 10847074003, "name": "SUNY Buffalo State", "priority": 1252, "external_id": null}, {"id": 10847075003, "name": "SUNY College of Agriculture and Technology - Cobleskill", "priority": 1253, "external_id": null}, {"id": 10847076003, "name": "SUNY College of Environmental Science and Forestry", "priority": 1254, "external_id": null}, {"id": 10847077003, "name": "SUNY College of Technology - Alfred", "priority": 1255, "external_id": null}, {"id": 10847078003, "name": "SUNY College of Technology - Canton", "priority": 1256, "external_id": null}, {"id": 10847079003, "name": "SUNY College of Technology - Delhi", "priority": 1257, "external_id": null}, {"id": 10847080003, "name": "SUNY College - Cortland", "priority": 1258, "external_id": null}, {"id": 10847081003, "name": "SUNY College - Old Westbury", "priority": 1259, "external_id": null}, {"id": 10847082003, "name": "SUNY College - Oneonta", "priority": 1260, "external_id": null}, {"id": 10847083003, "name": "SUNY College - Potsdam", "priority": 1261, "external_id": null}, {"id": 10847084003, "name": "SUNY Downstate Medical Center", "priority": 1262, "external_id": null}, {"id": 10847085003, "name": "SUNY Empire State College", "priority": 1263, "external_id": null}, {"id": 10847086003, "name": "SUNY Institute of Technology - Utica/Rome", "priority": 1264, "external_id": null}, {"id": 10847087003, "name": "SUNY Maritime College", "priority": 1265, "external_id": null}, {"id": 10847088003, "name": "SUNY Upstate Medical University", "priority": 1266, "external_id": null}, {"id": 10847089003, "name": "SUNY - Fredonia", "priority": 1267, "external_id": null}, {"id": 10847090003, "name": "SUNY - Geneseo", "priority": 1268, "external_id": null}, {"id": 10847091003, "name": "SUNY - New Paltz", "priority": 1269, "external_id": null}, {"id": 10847092003, "name": "SUNY - Oswego", "priority": 1270, "external_id": null}, {"id": 10847093003, "name": "SUNY - Plattsburgh", "priority": 1271, "external_id": null}, {"id": 10847094003, "name": "Swarthmore College", "priority": 1272, "external_id": null}, {"id": 10847095003, "name": "Sweet Briar College", "priority": 1273, "external_id": null}, {"id": 10847096003, "name": "Tabor College", "priority": 1274, "external_id": null}, {"id": 10847097003, "name": "Talladega College", "priority": 1275, "external_id": null}, {"id": 10847098003, "name": "Tarleton State University", "priority": 1276, "external_id": null}, {"id": 10847099003, "name": "Taylor University", "priority": 1277, "external_id": null}, {"id": 10847100003, "name": "Tennessee Wesleyan College", "priority": 1278, "external_id": null}, {"id": 10847101003, "name": "Texas A&M International University", "priority": 1279, "external_id": null}, {"id": 10847102003, "name": "Texas A&M University - Commerce", "priority": 1280, "external_id": null}, {"id": 10847103003, "name": "Texas A&M University - Corpus Christi", "priority": 1281, "external_id": null}, {"id": 10847104003, "name": "Texas A&M University - Galveston", "priority": 1282, "external_id": null}, {"id": 10847105003, "name": "Texas A&M University - Kingsville", "priority": 1283, "external_id": null}, {"id": 10847106003, "name": "Texas A&M University - Texarkana", "priority": 1284, "external_id": null}, {"id": 10847107003, "name": "Texas College", "priority": 1285, "external_id": null}, {"id": 10847108003, "name": "Texas Lutheran University", "priority": 1286, "external_id": null}, {"id": 10847109003, "name": "Bucknell University", "priority": 1287, "external_id": null}, {"id": 10847110003, "name": "Butler University", "priority": 1288, "external_id": null}, {"id": 10847111003, "name": "Stephen F. Austin State University", "priority": 1289, "external_id": null}, {"id": 10847112003, "name": "Texas A&M University - College Station", "priority": 1290, "external_id": null}, {"id": 10847113003, "name": "Stanford University", "priority": 1291, "external_id": null}, {"id": 10847114003, "name": "Stetson University", "priority": 1292, "external_id": null}, {"id": 10847115003, "name": "Stony Brook University - SUNY", "priority": 1293, "external_id": null}, {"id": 10847116003, "name": "Syracuse University", "priority": 1294, "external_id": null}, {"id": 10847117003, "name": "Texas Christian University", "priority": 1295, "external_id": null}, {"id": 10847118003, "name": "Temple University", "priority": 1296, "external_id": null}, {"id": 10847119003, "name": "Clemson University", "priority": 1297, "external_id": null}, {"id": 10847120003, "name": "Texas Southern University", "priority": 1298, "external_id": null}, {"id": 10847121003, "name": "Austin Peay State University", "priority": 1299, "external_id": null}, {"id": 10847122003, "name": "Tennessee State University", "priority": 1300, "external_id": null}, {"id": 10847123003, "name": "Ball State University", "priority": 1301, "external_id": null}, {"id": 10847124003, "name": "Texas Tech University Health Sciences Center", "priority": 1302, "external_id": null}, {"id": 10847125003, "name": "Texas Wesleyan University", "priority": 1303, "external_id": null}, {"id": 10847126003, "name": "Texas Woman's University", "priority": 1304, "external_id": null}, {"id": 10847127003, "name": "The Catholic University of America", "priority": 1305, "external_id": null}, {"id": 10847128003, "name": "The Sage Colleges", "priority": 1306, "external_id": null}, {"id": 10847129003, "name": "Thiel College", "priority": 1307, "external_id": null}, {"id": 10847130003, "name": "Thomas Aquinas College", "priority": 1308, "external_id": null}, {"id": 10847131003, "name": "Thomas College", "priority": 1309, "external_id": null}, {"id": 10847132003, "name": "Thomas Edison State College", "priority": 1310, "external_id": null}, {"id": 10847133003, "name": "Thomas Jefferson University", "priority": 1311, "external_id": null}, {"id": 10847134003, "name": "Thomas More College", "priority": 1312, "external_id": null}, {"id": 10847135003, "name": "Thomas More College of Liberal Arts", "priority": 1313, "external_id": null}, {"id": 10847136003, "name": "Thomas University", "priority": 1314, "external_id": null}, {"id": 10847137003, "name": "Tiffin University", "priority": 1315, "external_id": null}, {"id": 10847138003, "name": "Tilburg University", "priority": 1316, "external_id": null}, {"id": 10847139003, "name": "Toccoa Falls College", "priority": 1317, "external_id": null}, {"id": 10847140003, "name": "Tougaloo College", "priority": 1318, "external_id": null}, {"id": 10847141003, "name": "Touro College", "priority": 1319, "external_id": null}, {"id": 10847142003, "name": "Transylvania University", "priority": 1320, "external_id": null}, {"id": 10847143003, "name": "Trent University", "priority": 1321, "external_id": null}, {"id": 10847144003, "name": "Trevecca Nazarene University", "priority": 1322, "external_id": null}, {"id": 10847145003, "name": "Trident University International", "priority": 1323, "external_id": null}, {"id": 10847146003, "name": "Trine University", "priority": 1324, "external_id": null}, {"id": 10847147003, "name": "Trinity Christian College", "priority": 1325, "external_id": null}, {"id": 10847148003, "name": "Trinity College", "priority": 1326, "external_id": null}, {"id": 10847149003, "name": "Trinity College of Nursing & Health Sciences", "priority": 1327, "external_id": null}, {"id": 10847150003, "name": "Trinity International University", "priority": 1328, "external_id": null}, {"id": 10847151003, "name": "Trinity Lutheran College", "priority": 1329, "external_id": null}, {"id": 10847152003, "name": "Trinity University", "priority": 1330, "external_id": null}, {"id": 10847153003, "name": "Trinity Western University", "priority": 1331, "external_id": null}, {"id": 10847154003, "name": "Truett McConnell College", "priority": 1332, "external_id": null}, {"id": 10847155003, "name": "Truman State University", "priority": 1333, "external_id": null}, {"id": 10847156003, "name": "Tufts University", "priority": 1334, "external_id": null}, {"id": 10847157003, "name": "Tusculum College", "priority": 1335, "external_id": null}, {"id": 10847158003, "name": "Tuskegee University", "priority": 1336, "external_id": null}, {"id": 10847159003, "name": "Union College", "priority": 1337, "external_id": null}, {"id": 10847160003, "name": "Union Institute and University", "priority": 1338, "external_id": null}, {"id": 10847161003, "name": "Union University", "priority": 1339, "external_id": null}, {"id": 10847162003, "name": "United States Coast Guard Academy", "priority": 1340, "external_id": null}, {"id": 10847163003, "name": "United States International University - Kenya", "priority": 1341, "external_id": null}, {"id": 10847164003, "name": "United States Merchant Marine Academy", "priority": 1342, "external_id": null}, {"id": 10847165003, "name": "United States Sports Academy", "priority": 1343, "external_id": null}, {"id": 10847166003, "name": "Unity College", "priority": 1344, "external_id": null}, {"id": 10847167003, "name": "Universidad Adventista de las Antillas", "priority": 1345, "external_id": null}, {"id": 10847168003, "name": "Universidad del Este", "priority": 1346, "external_id": null}, {"id": 10847169003, "name": "Universidad del Turabo", "priority": 1347, "external_id": null}, {"id": 10847170003, "name": "Universidad Metropolitana", "priority": 1348, "external_id": null}, {"id": 10847171003, "name": "Universidad Politecnica De Puerto Rico", "priority": 1349, "external_id": null}, {"id": 10847172003, "name": "University of Advancing Technology", "priority": 1350, "external_id": null}, {"id": 10847173003, "name": "University of Alabama - Huntsville", "priority": 1351, "external_id": null}, {"id": 10847174003, "name": "University of Alaska - Anchorage", "priority": 1352, "external_id": null}, {"id": 10847175003, "name": "University of Alaska - Fairbanks", "priority": 1353, "external_id": null}, {"id": 10847176003, "name": "University of Alaska - Southeast", "priority": 1354, "external_id": null}, {"id": 10847177003, "name": "University of Alberta", "priority": 1355, "external_id": null}, {"id": 10847178003, "name": "University of Arkansas for Medical Sciences", "priority": 1356, "external_id": null}, {"id": 10847179003, "name": "University of Arkansas - Fort Smith", "priority": 1357, "external_id": null}, {"id": 10847180003, "name": "University of Arkansas - Little Rock", "priority": 1358, "external_id": null}, {"id": 10847181003, "name": "University of Arkansas - Monticello", "priority": 1359, "external_id": null}, {"id": 10847182003, "name": "University of Baltimore", "priority": 1360, "external_id": null}, {"id": 10847183003, "name": "University of Bridgeport", "priority": 1361, "external_id": null}, {"id": 10847184003, "name": "University of British Columbia", "priority": 1362, "external_id": null}, {"id": 10847185003, "name": "University of Calgary", "priority": 1363, "external_id": null}, {"id": 10847186003, "name": "University of California - Riverside", "priority": 1364, "external_id": null}, {"id": 10847187003, "name": "Holy Cross College", "priority": 1365, "external_id": null}, {"id": 10847188003, "name": "Towson University", "priority": 1366, "external_id": null}, {"id": 10847189003, "name": "United States Military Academy", "priority": 1367, "external_id": null}, {"id": 10847190003, "name": "The Citadel", "priority": 1368, "external_id": null}, {"id": 10847191003, "name": "Troy University", "priority": 1369, "external_id": null}, {"id": 10847192003, "name": "University of California - Davis", "priority": 1370, "external_id": null}, {"id": 10847193003, "name": "Grambling State University", "priority": 1371, "external_id": null}, {"id": 10847194003, "name": "University at Albany - SUNY", "priority": 1372, "external_id": null}, {"id": 10847195003, "name": "University at Buffalo - SUNY", "priority": 1373, "external_id": null}, {"id": 10847196003, "name": "United States Naval Academy", "priority": 1374, "external_id": null}, {"id": 10847197003, "name": "University of Arizona", "priority": 1375, "external_id": null}, {"id": 10847198003, "name": "University of California - Los Angeles", "priority": 1376, "external_id": null}, {"id": 10847199003, "name": "Florida A&M University", "priority": 1377, "external_id": null}, {"id": 10847200003, "name": "Texas State University", "priority": 1378, "external_id": null}, {"id": 10847201003, "name": "University of Alabama - Birmingham", "priority": 1379, "external_id": null}, {"id": 10847202003, "name": "University of California - Santa Cruz", "priority": 1380, "external_id": null}, {"id": 10847203003, "name": "University of Central Missouri", "priority": 1381, "external_id": null}, {"id": 10847204003, "name": "University of Central Oklahoma", "priority": 1382, "external_id": null}, {"id": 10847205003, "name": "University of Charleston", "priority": 1383, "external_id": null}, {"id": 10847206003, "name": "University of Chicago", "priority": 1384, "external_id": null}, {"id": 10847207003, "name": "University of Cincinnati - UC Blue Ash College", "priority": 1385, "external_id": null}, {"id": 10847208003, "name": "University of Colorado - Colorado Springs", "priority": 1386, "external_id": null}, {"id": 10847209003, "name": "University of Colorado - Denver", "priority": 1387, "external_id": null}, {"id": 10847210003, "name": "University of Dallas", "priority": 1388, "external_id": null}, {"id": 10847211003, "name": "University of Denver", "priority": 1389, "external_id": null}, {"id": 10847212003, "name": "University of Detroit Mercy", "priority": 1390, "external_id": null}, {"id": 10847213003, "name": "University of Dubuque", "priority": 1391, "external_id": null}, {"id": 10847214003, "name": "University of Evansville", "priority": 1392, "external_id": null}, {"id": 10847215003, "name": "University of Findlay", "priority": 1393, "external_id": null}, {"id": 10847216003, "name": "University of Great Falls", "priority": 1394, "external_id": null}, {"id": 10847217003, "name": "University of Guam", "priority": 1395, "external_id": null}, {"id": 10847218003, "name": "University of Guelph", "priority": 1396, "external_id": null}, {"id": 10847219003, "name": "University of Hartford", "priority": 1397, "external_id": null}, {"id": 10847220003, "name": "University of Hawaii - Hilo", "priority": 1398, "external_id": null}, {"id": 10847221003, "name": "University of Hawaii - Maui College", "priority": 1399, "external_id": null}, {"id": 10847222003, "name": "University of Hawaii - West Oahu", "priority": 1400, "external_id": null}, {"id": 10847223003, "name": "University of Houston - Clear Lake", "priority": 1401, "external_id": null}, {"id": 10847224003, "name": "University of Houston - Downtown", "priority": 1402, "external_id": null}, {"id": 10847225003, "name": "University of Houston - Victoria", "priority": 1403, "external_id": null}, {"id": 10847226003, "name": "University of Illinois - Chicago", "priority": 1404, "external_id": null}, {"id": 10847227003, "name": "University of Illinois - Springfield", "priority": 1405, "external_id": null}, {"id": 10847228003, "name": "University of Indianapolis", "priority": 1406, "external_id": null}, {"id": 10847229003, "name": "University of Jamestown", "priority": 1407, "external_id": null}, {"id": 10847230003, "name": "University of La Verne", "priority": 1408, "external_id": null}, {"id": 10847231003, "name": "University of Maine - Augusta", "priority": 1409, "external_id": null}, {"id": 10847232003, "name": "University of Maine - Farmington", "priority": 1410, "external_id": null}, {"id": 10847233003, "name": "University of Maine - Fort Kent", "priority": 1411, "external_id": null}, {"id": 10847234003, "name": "University of Maine - Machias", "priority": 1412, "external_id": null}, {"id": 10847235003, "name": "University of Maine - Presque Isle", "priority": 1413, "external_id": null}, {"id": 10847236003, "name": "University of Mary", "priority": 1414, "external_id": null}, {"id": 10847237003, "name": "University of Mary Hardin-Baylor", "priority": 1415, "external_id": null}, {"id": 10847238003, "name": "University of Mary Washington", "priority": 1416, "external_id": null}, {"id": 10847239003, "name": "University of Maryland - Baltimore", "priority": 1417, "external_id": null}, {"id": 10847240003, "name": "University of Maryland - Baltimore County", "priority": 1418, "external_id": null}, {"id": 10847241003, "name": "University of Maryland - Eastern Shore", "priority": 1419, "external_id": null}, {"id": 10847242003, "name": "University of Maryland - University College", "priority": 1420, "external_id": null}, {"id": 10847243003, "name": "University of Massachusetts - Boston", "priority": 1421, "external_id": null}, {"id": 10847244003, "name": "University of Massachusetts - Dartmouth", "priority": 1422, "external_id": null}, {"id": 10847245003, "name": "University of Massachusetts - Lowell", "priority": 1423, "external_id": null}, {"id": 10847246003, "name": "University of Medicine and Dentistry of New Jersey", "priority": 1424, "external_id": null}, {"id": 10847247003, "name": "University of Michigan - Dearborn", "priority": 1425, "external_id": null}, {"id": 10847248003, "name": "University of Michigan - Flint", "priority": 1426, "external_id": null}, {"id": 10847249003, "name": "University of Minnesota - Crookston", "priority": 1427, "external_id": null}, {"id": 10847250003, "name": "University of Minnesota - Duluth", "priority": 1428, "external_id": null}, {"id": 10847251003, "name": "University of Minnesota - Morris", "priority": 1429, "external_id": null}, {"id": 10847252003, "name": "University of Mississippi Medical Center", "priority": 1430, "external_id": null}, {"id": 10847253003, "name": "University of Missouri - Kansas City", "priority": 1431, "external_id": null}, {"id": 10847254003, "name": "University of Missouri - St. Louis", "priority": 1432, "external_id": null}, {"id": 10847255003, "name": "University of Mobile", "priority": 1433, "external_id": null}, {"id": 10847256003, "name": "University of Montana - Western", "priority": 1434, "external_id": null}, {"id": 10847257003, "name": "University of Montevallo", "priority": 1435, "external_id": null}, {"id": 10847258003, "name": "University of Mount Union", "priority": 1436, "external_id": null}, {"id": 10847259003, "name": "University of Nebraska Medical Center", "priority": 1437, "external_id": null}, {"id": 10847260003, "name": "University of Nebraska - Kearney", "priority": 1438, "external_id": null}, {"id": 10847261003, "name": "University of Dayton", "priority": 1439, "external_id": null}, {"id": 10847262003, "name": "University of Delaware", "priority": 1440, "external_id": null}, {"id": 10847263003, "name": "University of Florida", "priority": 1441, "external_id": null}, {"id": 10847264003, "name": "University of Iowa", "priority": 1442, "external_id": null}, {"id": 10847265003, "name": "University of Idaho", "priority": 1443, "external_id": null}, {"id": 10847266003, "name": "University of Kentucky", "priority": 1444, "external_id": null}, {"id": 10847267003, "name": "University of Massachusetts - Amherst", "priority": 1445, "external_id": null}, {"id": 10847268003, "name": "University of Maine", "priority": 1446, "external_id": null}, {"id": 10847269003, "name": "University of Michigan - Ann Arbor", "priority": 1447, "external_id": null}, {"id": 10847270003, "name": "University of Cincinnati", "priority": 1448, "external_id": null}, {"id": 10847271003, "name": "University of Miami", "priority": 1449, "external_id": null}, {"id": 10847272003, "name": "University of Louisiana - Monroe", "priority": 1450, "external_id": null}, {"id": 10847273003, "name": "University of Missouri", "priority": 1451, "external_id": null}, {"id": 10847274003, "name": "University of Mississippi", "priority": 1452, "external_id": null}, {"id": 10847275003, "name": "University of Memphis", "priority": 1453, "external_id": null}, {"id": 10847276003, "name": "University of Houston", "priority": 1454, "external_id": null}, {"id": 10847277003, "name": "University of Colorado - Boulder", "priority": 1455, "external_id": null}, {"id": 10847278003, "name": "University of Nebraska - Omaha", "priority": 1456, "external_id": null}, {"id": 10847279003, "name": "University of New Brunswick", "priority": 1457, "external_id": null}, {"id": 10847280003, "name": "University of New England", "priority": 1458, "external_id": null}, {"id": 10847281003, "name": "University of New Haven", "priority": 1459, "external_id": null}, {"id": 10847282003, "name": "University of New Orleans", "priority": 1460, "external_id": null}, {"id": 10847283003, "name": "University of North Alabama", "priority": 1461, "external_id": null}, {"id": 10847284003, "name": "University of North Carolina School of the Arts", "priority": 1462, "external_id": null}, {"id": 10847285003, "name": "University of North Carolina - Asheville", "priority": 1463, "external_id": null}, {"id": 10847286003, "name": "University of North Carolina - Greensboro", "priority": 1464, "external_id": null}, {"id": 10847287003, "name": "University of North Carolina - Pembroke", "priority": 1465, "external_id": null}, {"id": 10847288003, "name": "University of North Carolina - Wilmington", "priority": 1466, "external_id": null}, {"id": 10847289003, "name": "University of North Florida", "priority": 1467, "external_id": null}, {"id": 10847290003, "name": "University of North Georgia", "priority": 1468, "external_id": null}, {"id": 10847291003, "name": "University of Northwestern Ohio", "priority": 1469, "external_id": null}, {"id": 10847292003, "name": "University of Northwestern - St. Paul", "priority": 1470, "external_id": null}, {"id": 10847293003, "name": "University of Ottawa", "priority": 1471, "external_id": null}, {"id": 10847294003, "name": "University of Phoenix", "priority": 1472, "external_id": null}, {"id": 10847295003, "name": "University of Pikeville", "priority": 1473, "external_id": null}, {"id": 10847296003, "name": "University of Portland", "priority": 1474, "external_id": null}, {"id": 10847297003, "name": "University of Prince Edward Island", "priority": 1475, "external_id": null}, {"id": 10847298003, "name": "University of Puerto Rico - Aguadilla", "priority": 1476, "external_id": null}, {"id": 10847299003, "name": "University of Puerto Rico - Arecibo", "priority": 1477, "external_id": null}, {"id": 10847300003, "name": "University of Puerto Rico - Bayamon", "priority": 1478, "external_id": null}, {"id": 10847301003, "name": "University of Puerto Rico - Cayey", "priority": 1479, "external_id": null}, {"id": 10847302003, "name": "University of Puerto Rico - Humacao", "priority": 1480, "external_id": null}, {"id": 10847303003, "name": "University of Puerto Rico - Mayaguez", "priority": 1481, "external_id": null}, {"id": 10847304003, "name": "University of Puerto Rico - Medical Sciences Campus", "priority": 1482, "external_id": null}, {"id": 10847305003, "name": "University of Puerto Rico - Ponce", "priority": 1483, "external_id": null}, {"id": 10847306003, "name": "University of Puerto Rico - Rio Piedras", "priority": 1484, "external_id": null}, {"id": 10847307003, "name": "University of Puget Sound", "priority": 1485, "external_id": null}, {"id": 10847308003, "name": "University of Redlands", "priority": 1486, "external_id": null}, {"id": 10847309003, "name": "University of Regina", "priority": 1487, "external_id": null}, {"id": 10847310003, "name": "University of Rio Grande", "priority": 1488, "external_id": null}, {"id": 10847311003, "name": "University of Rochester", "priority": 1489, "external_id": null}, {"id": 10847312003, "name": "University of San Francisco", "priority": 1490, "external_id": null}, {"id": 10847313003, "name": "University of Saskatchewan", "priority": 1491, "external_id": null}, {"id": 10847314003, "name": "University of Science and Arts of Oklahoma", "priority": 1492, "external_id": null}, {"id": 10847315003, "name": "University of Scranton", "priority": 1493, "external_id": null}, {"id": 10847316003, "name": "University of Sioux Falls", "priority": 1494, "external_id": null}, {"id": 10847317003, "name": "University of South Carolina - Aiken", "priority": 1495, "external_id": null}, {"id": 10847318003, "name": "University of South Carolina - Beaufort", "priority": 1496, "external_id": null}, {"id": 10847319003, "name": "University of South Carolina - Upstate", "priority": 1497, "external_id": null}, {"id": 10847320003, "name": "University of South Florida - St. Petersburg", "priority": 1498, "external_id": null}, {"id": 10847321003, "name": "University of Southern Indiana", "priority": 1499, "external_id": null}, {"id": 10847322003, "name": "University of Southern Maine", "priority": 1500, "external_id": null}, {"id": 10847323003, "name": "University of St. Francis", "priority": 1501, "external_id": null}, {"id": 10847324003, "name": "University of St. Joseph", "priority": 1502, "external_id": null}, {"id": 10847325003, "name": "University of St. Mary", "priority": 1503, "external_id": null}, {"id": 10847326003, "name": "University of St. Thomas", "priority": 1504, "external_id": null}, {"id": 10847327003, "name": "University of Tampa", "priority": 1505, "external_id": null}, {"id": 10847328003, "name": "University of Texas Health Science Center - Houston", "priority": 1506, "external_id": null}, {"id": 10847329003, "name": "University of Texas Health Science Center - San Antonio", "priority": 1507, "external_id": null}, {"id": 10847330003, "name": "University of Texas Medical Branch - Galveston", "priority": 1508, "external_id": null}, {"id": 10847331003, "name": "University of Texas of the Permian Basin", "priority": 1509, "external_id": null}, {"id": 10847332003, "name": "University of Texas - Arlington", "priority": 1510, "external_id": null}, {"id": 10847333003, "name": "University of Texas - Brownsville", "priority": 1511, "external_id": null}, {"id": 10847334003, "name": "University of Texas - Pan American", "priority": 1512, "external_id": null}, {"id": 10847335003, "name": "University of Oregon", "priority": 1513, "external_id": null}, {"id": 10847336003, "name": "University of New Mexico", "priority": 1514, "external_id": null}, {"id": 10847337003, "name": "University of Pennsylvania", "priority": 1515, "external_id": null}, {"id": 10847338003, "name": "University of North Dakota", "priority": 1516, "external_id": null}, {"id": 10847339003, "name": "University of Nevada - Reno", "priority": 1517, "external_id": null}, {"id": 10847340003, "name": "University of New Hampshire", "priority": 1518, "external_id": null}, {"id": 10847341003, "name": "University of Texas - Austin", "priority": 1519, "external_id": null}, {"id": 10847342003, "name": "University of Southern Mississippi", "priority": 1520, "external_id": null}, {"id": 10847343003, "name": "University of Rhode Island", "priority": 1521, "external_id": null}, {"id": 10847344003, "name": "University of South Dakota", "priority": 1522, "external_id": null}, {"id": 10847345003, "name": "University of Tennessee", "priority": 1523, "external_id": null}, {"id": 10847346003, "name": "University of North Texas", "priority": 1524, "external_id": null}, {"id": 10847347003, "name": "University of North Carolina - Charlotte", "priority": 1525, "external_id": null}, {"id": 10847348003, "name": "University of Texas - San Antonio", "priority": 1526, "external_id": null}, {"id": 10847349003, "name": "University of Notre Dame", "priority": 1527, "external_id": null}, {"id": 10847350003, "name": "University of Southern California", "priority": 1528, "external_id": null}, {"id": 10847351003, "name": "University of Texas - Tyler", "priority": 1529, "external_id": null}, {"id": 10847352003, "name": "University of the Arts", "priority": 1530, "external_id": null}, {"id": 10847353003, "name": "University of the Cumberlands", "priority": 1531, "external_id": null}, {"id": 10847354003, "name": "University of the District of Columbia", "priority": 1532, "external_id": null}, {"id": 10847355003, "name": "University of the Ozarks", "priority": 1533, "external_id": null}, {"id": 10847356003, "name": "University of the Pacific", "priority": 1534, "external_id": null}, {"id": 10847357003, "name": "University of the Sacred Heart", "priority": 1535, "external_id": null}, {"id": 10847358003, "name": "University of the Sciences", "priority": 1536, "external_id": null}, {"id": 10847359003, "name": "University of the Southwest", "priority": 1537, "external_id": null}, {"id": 10847360003, "name": "University of the Virgin Islands", "priority": 1538, "external_id": null}, {"id": 10847361003, "name": "University of the West", "priority": 1539, "external_id": null}, {"id": 10847362003, "name": "University of Toronto", "priority": 1540, "external_id": null}, {"id": 10847363003, "name": "University of Vermont", "priority": 1541, "external_id": null}, {"id": 10847364003, "name": "University of Victoria", "priority": 1542, "external_id": null}, {"id": 10847365003, "name": "University of Virginia - Wise", "priority": 1543, "external_id": null}, {"id": 10847366003, "name": "University of Waterloo", "priority": 1544, "external_id": null}, {"id": 10847367003, "name": "University of West Alabama", "priority": 1545, "external_id": null}, {"id": 10847368003, "name": "University of West Florida", "priority": 1546, "external_id": null}, {"id": 10847369003, "name": "University of West Georgia", "priority": 1547, "external_id": null}, {"id": 10847370003, "name": "University of Windsor", "priority": 1548, "external_id": null}, {"id": 10847371003, "name": "University of Winnipeg", "priority": 1549, "external_id": null}, {"id": 10847372003, "name": "University of Wisconsin - Eau Claire", "priority": 1550, "external_id": null}, {"id": 10847373003, "name": "University of Wisconsin - Green Bay", "priority": 1551, "external_id": null}, {"id": 10847374003, "name": "University of Wisconsin - La Crosse", "priority": 1552, "external_id": null}, {"id": 10847375003, "name": "University of Wisconsin - Milwaukee", "priority": 1553, "external_id": null}, {"id": 10847376003, "name": "University of Wisconsin - Oshkosh", "priority": 1554, "external_id": null}, {"id": 10847377003, "name": "University of Wisconsin - Parkside", "priority": 1555, "external_id": null}, {"id": 10847378003, "name": "University of Wisconsin - Platteville", "priority": 1556, "external_id": null}, {"id": 10847379003, "name": "University of Wisconsin - River Falls", "priority": 1557, "external_id": null}, {"id": 10847380003, "name": "University of Wisconsin - Stevens Point", "priority": 1558, "external_id": null}, {"id": 10847381003, "name": "University of Wisconsin - Stout", "priority": 1559, "external_id": null}, {"id": 10847382003, "name": "University of Wisconsin - Superior", "priority": 1560, "external_id": null}, {"id": 10847383003, "name": "University of Wisconsin - Whitewater", "priority": 1561, "external_id": null}, {"id": 10847384003, "name": "Upper Iowa University", "priority": 1562, "external_id": null}, {"id": 10847385003, "name": "Urbana University", "priority": 1563, "external_id": null}, {"id": 10847386003, "name": "Ursinus College", "priority": 1564, "external_id": null}, {"id": 10847387003, "name": "Ursuline College", "priority": 1565, "external_id": null}, {"id": 10847388003, "name": "Utah Valley University", "priority": 1566, "external_id": null}, {"id": 10847389003, "name": "Utica College", "priority": 1567, "external_id": null}, {"id": 10847390003, "name": "Valdosta State University", "priority": 1568, "external_id": null}, {"id": 10847391003, "name": "Valley City State University", "priority": 1569, "external_id": null}, {"id": 10847392003, "name": "Valley Forge Christian College", "priority": 1570, "external_id": null}, {"id": 10847393003, "name": "VanderCook College of Music", "priority": 1571, "external_id": null}, {"id": 10847394003, "name": "Vanguard University of Southern California", "priority": 1572, "external_id": null}, {"id": 10847395003, "name": "Vassar College", "priority": 1573, "external_id": null}, {"id": 10847396003, "name": "Vaughn College of Aeronautics and Technology", "priority": 1574, "external_id": null}, {"id": 10847397003, "name": "Vermont Technical College", "priority": 1575, "external_id": null}, {"id": 10847398003, "name": "Victory University", "priority": 1576, "external_id": null}, {"id": 10847399003, "name": "Vincennes University", "priority": 1577, "external_id": null}, {"id": 10847400003, "name": "Virginia Commonwealth University", "priority": 1578, "external_id": null}, {"id": 10847401003, "name": "Virginia Intermont College", "priority": 1579, "external_id": null}, {"id": 10847402003, "name": "Virginia State University", "priority": 1580, "external_id": null}, {"id": 10847403003, "name": "Virginia Union University", "priority": 1581, "external_id": null}, {"id": 10847404003, "name": "Virginia Wesleyan College", "priority": 1582, "external_id": null}, {"id": 10847405003, "name": "Viterbo University", "priority": 1583, "external_id": null}, {"id": 10847406003, "name": "Voorhees College", "priority": 1584, "external_id": null}, {"id": 10847407003, "name": "Wabash College", "priority": 1585, "external_id": null}, {"id": 10847408003, "name": "Walden University", "priority": 1586, "external_id": null}, {"id": 10847409003, "name": "Waldorf College", "priority": 1587, "external_id": null}, {"id": 10847410003, "name": "Walla Walla University", "priority": 1588, "external_id": null}, {"id": 10847411003, "name": "Walsh College of Accountancy and Business Administration", "priority": 1589, "external_id": null}, {"id": 10847412003, "name": "Walsh University", "priority": 1590, "external_id": null}, {"id": 10847413003, "name": "Warner Pacific College", "priority": 1591, "external_id": null}, {"id": 10847414003, "name": "Warner University", "priority": 1592, "external_id": null}, {"id": 10847415003, "name": "Warren Wilson College", "priority": 1593, "external_id": null}, {"id": 10847416003, "name": "Wartburg College", "priority": 1594, "external_id": null}, {"id": 10847417003, "name": "Washburn University", "priority": 1595, "external_id": null}, {"id": 10847418003, "name": "Washington Adventist University", "priority": 1596, "external_id": null}, {"id": 10847419003, "name": "Washington and Jefferson College", "priority": 1597, "external_id": null}, {"id": 10847420003, "name": "Washington and Lee University", "priority": 1598, "external_id": null}, {"id": 10847421003, "name": "Washington College", "priority": 1599, "external_id": null}, {"id": 10847422003, "name": "Washington University in St. Louis", "priority": 1600, "external_id": null}, {"id": 10847423003, "name": "Watkins College of Art, Design & Film", "priority": 1601, "external_id": null}, {"id": 10847424003, "name": "Wayland Baptist University", "priority": 1602, "external_id": null}, {"id": 10847425003, "name": "Wayne State College", "priority": 1603, "external_id": null}, {"id": 10847426003, "name": "Wayne State University", "priority": 1604, "external_id": null}, {"id": 10847427003, "name": "Waynesburg University", "priority": 1605, "external_id": null}, {"id": 10847428003, "name": "Valparaiso University", "priority": 1606, "external_id": null}, {"id": 10847429003, "name": "Villanova University", "priority": 1607, "external_id": null}, {"id": 10847430003, "name": "Virginia Tech", "priority": 1608, "external_id": null}, {"id": 10847431003, "name": "Washington State University", "priority": 1609, "external_id": null}, {"id": 10847432003, "name": "University of Toledo", "priority": 1610, "external_id": null}, {"id": 10847433003, "name": "Wagner College", "priority": 1611, "external_id": null}, {"id": 10847434003, "name": "University of Wyoming", "priority": 1612, "external_id": null}, {"id": 10847435003, "name": "University of Wisconsin - Madison", "priority": 1613, "external_id": null}, {"id": 10847436003, "name": "University of Tulsa", "priority": 1614, "external_id": null}, {"id": 10847437003, "name": "Webb Institute", "priority": 1615, "external_id": null}, {"id": 10847438003, "name": "Webber International University", "priority": 1616, "external_id": null}, {"id": 10847439003, "name": "Webster University", "priority": 1617, "external_id": null}, {"id": 10847440003, "name": "Welch College", "priority": 1618, "external_id": null}, {"id": 10847441003, "name": "Wellesley College", "priority": 1619, "external_id": null}, {"id": 10847442003, "name": "Wells College", "priority": 1620, "external_id": null}, {"id": 10847443003, "name": "Wentworth Institute of Technology", "priority": 1621, "external_id": null}, {"id": 10847444003, "name": "Wesley College", "priority": 1622, "external_id": null}, {"id": 10847445003, "name": "Wesleyan College", "priority": 1623, "external_id": null}, {"id": 10847446003, "name": "Wesleyan University", "priority": 1624, "external_id": null}, {"id": 10847447003, "name": "West Chester University of Pennsylvania", "priority": 1625, "external_id": null}, {"id": 10847448003, "name": "West Liberty University", "priority": 1626, "external_id": null}, {"id": 10847449003, "name": "West Texas A&M University", "priority": 1627, "external_id": null}, {"id": 10847450003, "name": "West Virginia State University", "priority": 1628, "external_id": null}, {"id": 10847451003, "name": "West Virginia University Institute of Technology", "priority": 1629, "external_id": null}, {"id": 10847452003, "name": "West Virginia University - Parkersburg", "priority": 1630, "external_id": null}, {"id": 10847453003, "name": "West Virginia Wesleyan College", "priority": 1631, "external_id": null}, {"id": 10847454003, "name": "Western Connecticut State University", "priority": 1632, "external_id": null}, {"id": 10847455003, "name": "Western Governors University", "priority": 1633, "external_id": null}, {"id": 10847456003, "name": "Western International University", "priority": 1634, "external_id": null}, {"id": 10847457003, "name": "Western Nevada College", "priority": 1635, "external_id": null}, {"id": 10847458003, "name": "Western New England University", "priority": 1636, "external_id": null}, {"id": 10847459003, "name": "Western New Mexico University", "priority": 1637, "external_id": null}, {"id": 10847460003, "name": "Western Oregon University", "priority": 1638, "external_id": null}, {"id": 10847461003, "name": "Western State Colorado University", "priority": 1639, "external_id": null}, {"id": 10847462003, "name": "Western University", "priority": 1640, "external_id": null}, {"id": 10847463003, "name": "Western Washington University", "priority": 1641, "external_id": null}, {"id": 10847464003, "name": "Westfield State University", "priority": 1642, "external_id": null}, {"id": 10847465003, "name": "Westminster College", "priority": 1643, "external_id": null}, {"id": 10847466003, "name": "Westmont College", "priority": 1644, "external_id": null}, {"id": 10847467003, "name": "Wheaton College", "priority": 1645, "external_id": null}, {"id": 10847468003, "name": "Wheeling Jesuit University", "priority": 1646, "external_id": null}, {"id": 10847469003, "name": "Wheelock College", "priority": 1647, "external_id": null}, {"id": 10847470003, "name": "Whitman College", "priority": 1648, "external_id": null}, {"id": 10847471003, "name": "Whittier College", "priority": 1649, "external_id": null}, {"id": 10847472003, "name": "Whitworth University", "priority": 1650, "external_id": null}, {"id": 10847473003, "name": "Wichita State University", "priority": 1651, "external_id": null}, {"id": 10847474003, "name": "Widener University", "priority": 1652, "external_id": null}, {"id": 10847475003, "name": "Wilberforce University", "priority": 1653, "external_id": null}, {"id": 10847476003, "name": "Wiley College", "priority": 1654, "external_id": null}, {"id": 10847477003, "name": "Wilkes University", "priority": 1655, "external_id": null}, {"id": 10847478003, "name": "Willamette University", "priority": 1656, "external_id": null}, {"id": 10847479003, "name": "William Carey University", "priority": 1657, "external_id": null}, {"id": 10847480003, "name": "William Jessup University", "priority": 1658, "external_id": null}, {"id": 10847481003, "name": "William Jewell College", "priority": 1659, "external_id": null}, {"id": 10847482003, "name": "William Paterson University of New Jersey", "priority": 1660, "external_id": null}, {"id": 10847483003, "name": "William Peace University", "priority": 1661, "external_id": null}, {"id": 10847484003, "name": "William Penn University", "priority": 1662, "external_id": null}, {"id": 10847485003, "name": "William Woods University", "priority": 1663, "external_id": null}, {"id": 10847486003, "name": "Williams Baptist College", "priority": 1664, "external_id": null}, {"id": 10847487003, "name": "Williams College", "priority": 1665, "external_id": null}, {"id": 10847488003, "name": "Wilmington College", "priority": 1666, "external_id": null}, {"id": 10847489003, "name": "Wilmington University", "priority": 1667, "external_id": null}, {"id": 10847490003, "name": "Wilson College", "priority": 1668, "external_id": null}, {"id": 10847491003, "name": "Wingate University", "priority": 1669, "external_id": null}, {"id": 10847492003, "name": "Winona State University", "priority": 1670, "external_id": null}, {"id": 10847493003, "name": "Winston-Salem State University", "priority": 1671, "external_id": null}, {"id": 10847494003, "name": "Winthrop University", "priority": 1672, "external_id": null}, {"id": 10847495003, "name": "Wisconsin Lutheran College", "priority": 1673, "external_id": null}, {"id": 10847496003, "name": "Wittenberg University", "priority": 1674, "external_id": null}, {"id": 10847497003, "name": "Woodbury University", "priority": 1675, "external_id": null}, {"id": 10847498003, "name": "Worcester Polytechnic Institute", "priority": 1676, "external_id": null}, {"id": 10847499003, "name": "Worcester State University", "priority": 1677, "external_id": null}, {"id": 10847500003, "name": "Wright State University", "priority": 1678, "external_id": null}, {"id": 10847501003, "name": "Xavier University", "priority": 1679, "external_id": null}, {"id": 10847502003, "name": "Xavier University of Louisiana", "priority": 1680, "external_id": null}, {"id": 10847503003, "name": "Yeshiva University", "priority": 1681, "external_id": null}, {"id": 10847504003, "name": "York College", "priority": 1682, "external_id": null}, {"id": 10847505003, "name": "York College of Pennsylvania", "priority": 1683, "external_id": null}, {"id": 10847506003, "name": "York University", "priority": 1684, "external_id": null}, {"id": 10847507003, "name": "University of Cambridge", "priority": 1685, "external_id": null}, {"id": 10847508003, "name": "UCL (University College London)", "priority": 1686, "external_id": null}, {"id": 10847509003, "name": "Imperial College London", "priority": 1687, "external_id": null}, {"id": 10847510003, "name": "University of Oxford", "priority": 1688, "external_id": null}, {"id": 10847511003, "name": "ETH Zurich (Swiss Federal Institute of Technology)", "priority": 1689, "external_id": null}, {"id": 10847512003, "name": "University of Edinburgh", "priority": 1690, "external_id": null}, {"id": 10847513003, "name": "Ecole Polytechnique F\u00e9d\u00e9rale de Lausanne", "priority": 1691, "external_id": null}, {"id": 10847514003, "name": "King's College London (KCL)", "priority": 1692, "external_id": null}, {"id": 10847515003, "name": "National University of Singapore (NUS)", "priority": 1693, "external_id": null}, {"id": 10847516003, "name": "University of Hong Kong", "priority": 1694, "external_id": null}, {"id": 10847517003, "name": "Australian National University", "priority": 1695, "external_id": null}, {"id": 10847518003, "name": "Ecole normale sup\u00e9rieure, Paris", "priority": 1696, "external_id": null}, {"id": 10847519003, "name": "University of Bristol", "priority": 1697, "external_id": null}, {"id": 10847520003, "name": "The University of Melbourne", "priority": 1698, "external_id": null}, {"id": 10847521003, "name": "The University of Tokyo", "priority": 1699, "external_id": null}, {"id": 10847522003, "name": "The University of Manchester", "priority": 1700, "external_id": null}, {"id": 10847523003, "name": "Western Illinois University", "priority": 1701, "external_id": null}, {"id": 10847524003, "name": "Wofford College", "priority": 1702, "external_id": null}, {"id": 10847525003, "name": "Western Carolina University", "priority": 1703, "external_id": null}, {"id": 10847526003, "name": "West Virginia University", "priority": 1704, "external_id": null}, {"id": 10847527003, "name": "Yale University", "priority": 1705, "external_id": null}, {"id": 10847528003, "name": "The Hong Kong University of Science and Technology", "priority": 1706, "external_id": null}, {"id": 10847529003, "name": "Kyoto University", "priority": 1707, "external_id": null}, {"id": 10847530003, "name": "Seoul National University", "priority": 1708, "external_id": null}, {"id": 10847531003, "name": "The University of Sydney", "priority": 1709, "external_id": null}, {"id": 10847532003, "name": "The Chinese University of Hong Kong", "priority": 1710, "external_id": null}, {"id": 10847533003, "name": "Ecole Polytechnique", "priority": 1711, "external_id": null}, {"id": 10847534003, "name": "Nanyang Technological University (NTU)", "priority": 1712, "external_id": null}, {"id": 10847535003, "name": "The University of Queensland", "priority": 1713, "external_id": null}, {"id": 10847536003, "name": "University of Copenhagen", "priority": 1714, "external_id": null}, {"id": 10847537003, "name": "Peking University", "priority": 1715, "external_id": null}, {"id": 10847538003, "name": "Tsinghua University", "priority": 1716, "external_id": null}, {"id": 10847539003, "name": "Ruprecht-Karls-Universit\u00e4t Heidelberg", "priority": 1717, "external_id": null}, {"id": 10847540003, "name": "University of Glasgow", "priority": 1718, "external_id": null}, {"id": 10847541003, "name": "The University of New South Wales", "priority": 1719, "external_id": null}, {"id": 10847542003, "name": "Technische Universit\u00e4t M\u00fcnchen", "priority": 1720, "external_id": null}, {"id": 10847543003, "name": "Osaka University", "priority": 1721, "external_id": null}, {"id": 10847544003, "name": "University of Amsterdam", "priority": 1722, "external_id": null}, {"id": 10847545003, "name": "KAIST - Korea Advanced Institute of Science & Technology", "priority": 1723, "external_id": null}, {"id": 10847546003, "name": "Trinity College Dublin", "priority": 1724, "external_id": null}, {"id": 10847547003, "name": "University of Birmingham", "priority": 1725, "external_id": null}, {"id": 10847548003, "name": "The University of Warwick", "priority": 1726, "external_id": null}, {"id": 10847549003, "name": "Ludwig-Maximilians-Universit\u00e4t M\u00fcnchen", "priority": 1727, "external_id": null}, {"id": 10847550003, "name": "Tokyo Institute of Technology", "priority": 1728, "external_id": null}, {"id": 10847551003, "name": "Lund University", "priority": 1729, "external_id": null}, {"id": 10847552003, "name": "London School of Economics and Political Science (LSE)", "priority": 1730, "external_id": null}, {"id": 10847553003, "name": "Monash University", "priority": 1731, "external_id": null}, {"id": 10847554003, "name": "University of Helsinki", "priority": 1732, "external_id": null}, {"id": 10847555003, "name": "The University of Sheffield", "priority": 1733, "external_id": null}, {"id": 10847556003, "name": "University of Geneva", "priority": 1734, "external_id": null}, {"id": 10847557003, "name": "Leiden University", "priority": 1735, "external_id": null}, {"id": 10847558003, "name": "The University of Nottingham", "priority": 1736, "external_id": null}, {"id": 10847559003, "name": "Tohoku University", "priority": 1737, "external_id": null}, {"id": 10847560003, "name": "KU Leuven", "priority": 1738, "external_id": null}, {"id": 10847561003, "name": "University of Zurich", "priority": 1739, "external_id": null}, {"id": 10847562003, "name": "Uppsala University", "priority": 1740, "external_id": null}, {"id": 10847563003, "name": "Utrecht University", "priority": 1741, "external_id": null}, {"id": 10847564003, "name": "National Taiwan University (NTU)", "priority": 1742, "external_id": null}, {"id": 10847565003, "name": "University of St Andrews", "priority": 1743, "external_id": null}, {"id": 10847566003, "name": "The University of Western Australia", "priority": 1744, "external_id": null}, {"id": 10847567003, "name": "University of Southampton", "priority": 1745, "external_id": null}, {"id": 10847568003, "name": "Fudan University", "priority": 1746, "external_id": null}, {"id": 10847569003, "name": "University of Oslo", "priority": 1747, "external_id": null}, {"id": 10847570003, "name": "Durham University", "priority": 1748, "external_id": null}, {"id": 10847571003, "name": "Aarhus University", "priority": 1749, "external_id": null}, {"id": 10847572003, "name": "Erasmus University Rotterdam", "priority": 1750, "external_id": null}, {"id": 10847573003, "name": "Universit\u00e9 de Montr\u00e9al", "priority": 1751, "external_id": null}, {"id": 10847574003, "name": "The University of Auckland", "priority": 1752, "external_id": null}, {"id": 10847575003, "name": "Delft University of Technology", "priority": 1753, "external_id": null}, {"id": 10847576003, "name": "University of Groningen", "priority": 1754, "external_id": null}, {"id": 10847577003, "name": "University of Leeds", "priority": 1755, "external_id": null}, {"id": 10847578003, "name": "Nagoya University", "priority": 1756, "external_id": null}, {"id": 10847579003, "name": "Universit\u00e4t Freiburg", "priority": 1757, "external_id": null}, {"id": 10847580003, "name": "City University of Hong Kong", "priority": 1758, "external_id": null}, {"id": 10847581003, "name": "The University of Adelaide", "priority": 1759, "external_id": null}, {"id": 10847582003, "name": "Pohang University of Science And Technology (POSTECH)", "priority": 1760, "external_id": null}, {"id": 10847583003, "name": "Freie Universit\u00e4t Berlin", "priority": 1761, "external_id": null}, {"id": 10847584003, "name": "University of Basel", "priority": 1762, "external_id": null}, {"id": 10847585003, "name": "University of Lausanne", "priority": 1763, "external_id": null}, {"id": 10847586003, "name": "Universit\u00e9 Pierre et Marie Curie (UPMC)", "priority": 1764, "external_id": null}, {"id": 10847587003, "name": "Yonsei University", "priority": 1765, "external_id": null}, {"id": 10847588003, "name": "University of York", "priority": 1766, "external_id": null}, {"id": 10847589003, "name": "Queen Mary, University of London (QMUL)", "priority": 1767, "external_id": null}, {"id": 10847590003, "name": "Karlsruhe Institute of Technology (KIT)", "priority": 1768, "external_id": null}, {"id": 10847591003, "name": "KTH, Royal Institute of Technology", "priority": 1769, "external_id": null}, {"id": 10847592003, "name": "Lomonosov Moscow State University", "priority": 1770, "external_id": null}, {"id": 10847593003, "name": "Maastricht University", "priority": 1771, "external_id": null}, {"id": 10847594003, "name": "University of Ghent", "priority": 1772, "external_id": null}, {"id": 10847595003, "name": "Shanghai Jiao Tong University", "priority": 1773, "external_id": null}, {"id": 10847596003, "name": "Humboldt-Universit\u00e4t zu Berlin", "priority": 1774, "external_id": null}, {"id": 10847597003, "name": "Universidade de S\u00e3o Paulo (USP)", "priority": 1775, "external_id": null}, {"id": 10847598003, "name": "Georg-August-Universit\u00e4t G\u00f6ttingen", "priority": 1776, "external_id": null}, {"id": 10847599003, "name": "Newcastle University", "priority": 1777, "external_id": null}, {"id": 10847600003, "name": "University of Liverpool", "priority": 1778, "external_id": null}, {"id": 10847601003, "name": "Kyushu University", "priority": 1779, "external_id": null}, {"id": 10847602003, "name": "Eberhard Karls Universit\u00e4t T\u00fcbingen", "priority": 1780, "external_id": null}, {"id": 10847603003, "name": "Technical University of Denmark", "priority": 1781, "external_id": null}, {"id": 10847604003, "name": "Cardiff University", "priority": 1782, "external_id": null}, {"id": 10847605003, "name": "Universit\u00e9 Catholique de Louvain (UCL)", "priority": 1783, "external_id": null}, {"id": 10847606003, "name": "University College Dublin", "priority": 1784, "external_id": null}, {"id": 10847607003, "name": "McMaster University", "priority": 1785, "external_id": null}, {"id": 10847608003, "name": "Hebrew University of Jerusalem", "priority": 1786, "external_id": null}, {"id": 10847609003, "name": "Radboud University Nijmegen", "priority": 1787, "external_id": null}, {"id": 10847610003, "name": "Hokkaido University", "priority": 1788, "external_id": null}, {"id": 10847611003, "name": "Korea University", "priority": 1789, "external_id": null}, {"id": 10847612003, "name": "University of Cape Town", "priority": 1790, "external_id": null}, {"id": 10847613003, "name": "Rheinisch-Westf\u00e4lische Technische Hochschule Aachen", "priority": 1791, "external_id": null}, {"id": 10847614003, "name": "University of Aberdeen", "priority": 1792, "external_id": null}, {"id": 10847615003, "name": "Wageningen University", "priority": 1793, "external_id": null}, {"id": 10847616003, "name": "University of Bergen", "priority": 1794, "external_id": null}, {"id": 10847617003, "name": "University of Bern", "priority": 1795, "external_id": null}, {"id": 10847618003, "name": "University of Otago", "priority": 1796, "external_id": null}, {"id": 10847619003, "name": "Lancaster University", "priority": 1797, "external_id": null}, {"id": 10847620003, "name": "Eindhoven University of Technology", "priority": 1798, "external_id": null}, {"id": 10847621003, "name": "Ecole Normale Sup\u00e9rieure de Lyon", "priority": 1799, "external_id": null}, {"id": 10847622003, "name": "University of Vienna", "priority": 1800, "external_id": null}, {"id": 10847623003, "name": "The Hong Kong Polytechnic University", "priority": 1801, "external_id": null}, {"id": 10847624003, "name": "Sungkyunkwan University", "priority": 1802, "external_id": null}, {"id": 10847625003, "name": "Rheinische Friedrich-Wilhelms-Universit\u00e4t Bonn", "priority": 1803, "external_id": null}, {"id": 10847626003, "name": "Universidad Nacional Aut\u00f3noma de M\u00e9xico (UNAM)", "priority": 1804, "external_id": null}, {"id": 10847627003, "name": "Zhejiang University", "priority": 1805, "external_id": null}, {"id": 10847628003, "name": "Pontificia Universidad Cat\u00f3lica de Chile", "priority": 1806, "external_id": null}, {"id": 10847629003, "name": "Universiti Malaya (UM)", "priority": 1807, "external_id": null}, {"id": 10847630003, "name": "Universit\u00e9 Libre de Bruxelles (ULB)", "priority": 1808, "external_id": null}, {"id": 10847631003, "name": "University of Exeter", "priority": 1809, "external_id": null}, {"id": 10847632003, "name": "Stockholm University", "priority": 1810, "external_id": null}, {"id": 10847633003, "name": "Queen's University of Belfast", "priority": 1811, "external_id": null}, {"id": 10847634003, "name": "Vrije Universiteit Brussel (VUB)", "priority": 1812, "external_id": null}, {"id": 10847635003, "name": "University of Science and Technology of China", "priority": 1813, "external_id": null}, {"id": 10847636003, "name": "Nanjing University", "priority": 1814, "external_id": null}, {"id": 10847637003, "name": "Universitat Aut\u00f3noma de Barcelona", "priority": 1815, "external_id": null}, {"id": 10847638003, "name": "University of Barcelona", "priority": 1816, "external_id": null}, {"id": 10847639003, "name": "VU University Amsterdam", "priority": 1817, "external_id": null}, {"id": 10847640003, "name": "Technion - Israel Institute of Technology", "priority": 1818, "external_id": null}, {"id": 10847641003, "name": "Technische Universit\u00e4t Berlin", "priority": 1819, "external_id": null}, {"id": 10847642003, "name": "University of Antwerp", "priority": 1820, "external_id": null}, {"id": 10847643003, "name": "Universit\u00e4t Hamburg", "priority": 1821, "external_id": null}, {"id": 10847644003, "name": "University of Bath", "priority": 1822, "external_id": null}, {"id": 10847645003, "name": "University of Bologna", "priority": 1823, "external_id": null}, {"id": 10847646003, "name": "Queen's University, Ontario", "priority": 1824, "external_id": null}, {"id": 10847647003, "name": "Universit\u00e9 Paris-Sud 11", "priority": 1825, "external_id": null}, {"id": 10847648003, "name": "Keio University", "priority": 1826, "external_id": null}, {"id": 10847649003, "name": "University of Sussex", "priority": 1827, "external_id": null}, {"id": 10847650003, "name": "Universidad Aut\u00f3noma de Madrid", "priority": 1828, "external_id": null}, {"id": 10847651003, "name": "Aalto University", "priority": 1829, "external_id": null}, {"id": 10847652003, "name": "Sapienza University of Rome", "priority": 1830, "external_id": null}, {"id": 10847653003, "name": "Tel Aviv University", "priority": 1831, "external_id": null}, {"id": 10847654003, "name": "National Tsing Hua University", "priority": 1832, "external_id": null}, {"id": 10847655003, "name": "Chalmers University of Technology", "priority": 1833, "external_id": null}, {"id": 10847656003, "name": "University of Leicester", "priority": 1834, "external_id": null}, {"id": 10847657003, "name": "Universit\u00e9 Paris Diderot - Paris 7", "priority": 1835, "external_id": null}, {"id": 10847658003, "name": "University of Gothenburg", "priority": 1836, "external_id": null}, {"id": 10847659003, "name": "University of Turku", "priority": 1837, "external_id": null}, {"id": 10847660003, "name": "Universit\u00e4t Frankfurt am Main", "priority": 1838, "external_id": null}, {"id": 10847661003, "name": "Universidad de Buenos Aires", "priority": 1839, "external_id": null}, {"id": 10847662003, "name": "University College Cork", "priority": 1840, "external_id": null}, {"id": 10847663003, "name": "University of Tsukuba", "priority": 1841, "external_id": null}, {"id": 10847664003, "name": "University of Reading", "priority": 1842, "external_id": null}, {"id": 10847665003, "name": "Sciences Po Paris", "priority": 1843, "external_id": null}, {"id": 10847666003, "name": "Universidade Estadual de Campinas", "priority": 1844, "external_id": null}, {"id": 10847667003, "name": "King Fahd University of Petroleum & Minerals", "priority": 1845, "external_id": null}, {"id": 10847668003, "name": "University Complutense Madrid", "priority": 1846, "external_id": null}, {"id": 10847669003, "name": "Universit\u00e9 Paris-Sorbonne (Paris IV)", "priority": 1847, "external_id": null}, {"id": 10847670003, "name": "University of Dundee", "priority": 1848, "external_id": null}, {"id": 10847671003, "name": "Universit\u00e9 Joseph Fourier - Grenoble 1", "priority": 1849, "external_id": null}, {"id": 10847672003, "name": "Waseda University", "priority": 1850, "external_id": null}, {"id": 10847673003, "name": "Indian Institute of Technology Delhi (IITD)", "priority": 1851, "external_id": null}, {"id": 10847674003, "name": "Universidad de Chile", "priority": 1852, "external_id": null}, {"id": 10847675003, "name": "Universit\u00e9 Paris 1 Panth\u00e9on-Sorbonne", "priority": 1853, "external_id": null}, {"id": 10847676003, "name": "Universit\u00e9 de Strasbourg", "priority": 1854, "external_id": null}, {"id": 10847677003, "name": "University of Twente", "priority": 1855, "external_id": null}, {"id": 10847678003, "name": "University of East Anglia (UEA)", "priority": 1856, "external_id": null}, {"id": 10847679003, "name": "National Chiao Tung University", "priority": 1857, "external_id": null}, {"id": 10847680003, "name": "Politecnico di Milano", "priority": 1858, "external_id": null}, {"id": 10847681003, "name": "Charles University", "priority": 1859, "external_id": null}, {"id": 10847682003, "name": "Indian Institute of Technology Bombay (IITB)", "priority": 1860, "external_id": null}, {"id": 10847683003, "name": "University of Milano", "priority": 1861, "external_id": null}, {"id": 10847684003, "name": "Westf\u00e4lische Wilhelms-Universit\u00e4t M\u00fcnster", "priority": 1862, "external_id": null}, {"id": 10847685003, "name": "University of Canterbury", "priority": 1863, "external_id": null}, {"id": 10847686003, "name": "Chulalongkorn University", "priority": 1864, "external_id": null}, {"id": 10847687003, "name": "Saint-Petersburg State University", "priority": 1865, "external_id": null}, {"id": 10847688003, "name": "University of Liege", "priority": 1866, "external_id": null}, {"id": 10847689003, "name": "Universit\u00e4t zu K\u00f6ln", "priority": 1867, "external_id": null}, {"id": 10847690003, "name": "Loughborough University", "priority": 1868, "external_id": null}, {"id": 10847691003, "name": "National Cheng Kung University", "priority": 1869, "external_id": null}, {"id": 10847692003, "name": "Universit\u00e4t Stuttgart", "priority": 1870, "external_id": null}, {"id": 10847693003, "name": "Hanyang University", "priority": 1871, "external_id": null}, {"id": 10847694003, "name": "American University of Beirut (AUB)", "priority": 1872, "external_id": null}, {"id": 10847695003, "name": "Norwegian University of Science And Technology", "priority": 1873, "external_id": null}, {"id": 10847696003, "name": "Beijing Normal University", "priority": 1874, "external_id": null}, {"id": 10847697003, "name": "King Saud University", "priority": 1875, "external_id": null}, {"id": 10847698003, "name": "University of Oulu", "priority": 1876, "external_id": null}, {"id": 10847699003, "name": "Kyung Hee University", "priority": 1877, "external_id": null}, {"id": 10847700003, "name": "University of Strathclyde", "priority": 1878, "external_id": null}, {"id": 10847701003, "name": "Universit\u00e4t Ulm", "priority": 1879, "external_id": null}, {"id": 10847702003, "name": "University of Pisa", "priority": 1880, "external_id": null}, {"id": 10847703003, "name": "Technische Universit\u00e4t Darmstadt", "priority": 1881, "external_id": null}, {"id": 10847704003, "name": "Technische Universit\u00e4t Dresden", "priority": 1882, "external_id": null}, {"id": 10847705003, "name": "Macquarie University", "priority": 1883, "external_id": null}, {"id": 10847706003, "name": "Vienna University of Technology", "priority": 1884, "external_id": null}, {"id": 10847707003, "name": "Royal Holloway University of London", "priority": 1885, "external_id": null}, {"id": 10847708003, "name": "Victoria University of Wellington", "priority": 1886, "external_id": null}, {"id": 10847709003, "name": "University of Padua", "priority": 1887, "external_id": null}, {"id": 10847710003, "name": "Universiti Kebangsaan Malaysia (UKM)", "priority": 1888, "external_id": null}, {"id": 10847711003, "name": "University of Technology, Sydney", "priority": 1889, "external_id": null}, {"id": 10847712003, "name": "Universit\u00e4t Konstanz", "priority": 1890, "external_id": null}, {"id": 10847713003, "name": "Universidad de Los Andes Colombia", "priority": 1891, "external_id": null}, {"id": 10847714003, "name": "Universit\u00e9 Paris Descartes", "priority": 1892, "external_id": null}, {"id": 10847715003, "name": "Tokyo Medical and Dental University", "priority": 1893, "external_id": null}, {"id": 10847716003, "name": "University of Wollongong", "priority": 1894, "external_id": null}, {"id": 10847717003, "name": "Universit\u00e4t Erlangen-N\u00fcrnberg", "priority": 1895, "external_id": null}, {"id": 10847718003, "name": "Queensland University of Technology", "priority": 1896, "external_id": null}, {"id": 10847719003, "name": "Tecnol\u00f3gico de Monterrey (ITESM)", "priority": 1897, "external_id": null}, {"id": 10847720003, "name": "Universit\u00e4t Mannheim", "priority": 1898, "external_id": null}, {"id": 10847721003, "name": "Universitat Pompeu Fabra", "priority": 1899, "external_id": null}, {"id": 10847722003, "name": "Mahidol University", "priority": 1900, "external_id": null}, {"id": 10847723003, "name": "Curtin University", "priority": 1901, "external_id": null}, {"id": 10847724003, "name": "National University of Ireland, Galway", "priority": 1902, "external_id": null}, {"id": 10847725003, "name": "Universidade Federal do Rio de Janeiro", "priority": 1903, "external_id": null}, {"id": 10847726003, "name": "University of Surrey", "priority": 1904, "external_id": null}, {"id": 10847727003, "name": "Hong Kong Baptist University", "priority": 1905, "external_id": null}, {"id": 10847728003, "name": "Ume\u00e5 University", "priority": 1906, "external_id": null}, {"id": 10847729003, "name": "Universit\u00e4t Innsbruck", "priority": 1907, "external_id": null}, {"id": 10847730003, "name": "RMIT University", "priority": 1908, "external_id": null}, {"id": 10847731003, "name": "University of Eastern Finland", "priority": 1909, "external_id": null}, {"id": 10847732003, "name": "Christian-Albrechts-Universit\u00e4t zu Kiel", "priority": 1910, "external_id": null}, {"id": 10847733003, "name": "Indian Institute of Technology Kanpur (IITK)", "priority": 1911, "external_id": null}, {"id": 10847734003, "name": "National Yang Ming University", "priority": 1912, "external_id": null}, {"id": 10847735003, "name": "Johannes Gutenberg Universit\u00e4t Mainz", "priority": 1913, "external_id": null}, {"id": 10847736003, "name": "The University of Newcastle", "priority": 1914, "external_id": null}, {"id": 10847737003, "name": "Al-Farabi Kazakh National University", "priority": 1915, "external_id": null}, {"id": 10847738003, "name": "\u00c9cole des Ponts ParisTech", "priority": 1916, "external_id": null}, {"id": 10847739003, "name": "University of Jyv\u00e4skyl\u00e4", "priority": 1917, "external_id": null}, {"id": 10847740003, "name": "L.N. Gumilyov Eurasian National University", "priority": 1918, "external_id": null}, {"id": 10847741003, "name": "Kobe University", "priority": 1919, "external_id": null}, {"id": 10847742003, "name": "University of Tromso", "priority": 1920, "external_id": null}, {"id": 10847743003, "name": "Hiroshima University", "priority": 1921, "external_id": null}, {"id": 10847744003, "name": "Universit\u00e9 Bordeaux 1, Sciences Technologies", "priority": 1922, "external_id": null}, {"id": 10847745003, "name": "University of Indonesia", "priority": 1923, "external_id": null}, {"id": 10847746003, "name": "Universit\u00e4t Leipzig", "priority": 1924, "external_id": null}, {"id": 10847747003, "name": "University of Southern Denmark", "priority": 1925, "external_id": null}, {"id": 10847748003, "name": "Indian Institute of Technology Madras (IITM)", "priority": 1926, "external_id": null}, {"id": 10847749003, "name": "University of The Witwatersrand", "priority": 1927, "external_id": null}, {"id": 10847750003, "name": "University of Navarra", "priority": 1928, "external_id": null}, {"id": 10847751003, "name": "Universidad Austral - Argentina", "priority": 1929, "external_id": null}, {"id": 10847752003, "name": "Universidad Carlos III de Madrid", "priority": 1930, "external_id": null}, {"id": 10847753003, "name": "Universit\u00e0\u00a1 degli Studi di Roma - Tor Vergata", "priority": 1931, "external_id": null}, {"id": 10847754003, "name": "Pontificia Universidad Cat\u00f3lica Argentina Santa Mar\u00eda de los Buenos Aires", "priority": 1932, "external_id": null}, {"id": 10847755003, "name": "UCA", "priority": 1933, "external_id": null}, {"id": 10847756003, "name": "Julius-Maximilians-Universit\u00e4t W\u00fcrzburg", "priority": 1934, "external_id": null}, {"id": 10847757003, "name": "Universidad Nacional de Colombia", "priority": 1935, "external_id": null}, {"id": 10847758003, "name": "Laval University", "priority": 1936, "external_id": null}, {"id": 10847759003, "name": "Ben Gurion University of The Negev", "priority": 1937, "external_id": null}, {"id": 10847760003, "name": "Link\u00f6ping University", "priority": 1938, "external_id": null}, {"id": 10847761003, "name": "Aalborg University", "priority": 1939, "external_id": null}, {"id": 10847762003, "name": "Bauman Moscow State Technical University", "priority": 1940, "external_id": null}, {"id": 10847763003, "name": "Ecole Normale Sup\u00e9rieure de Cachan", "priority": 1941, "external_id": null}, {"id": 10847764003, "name": "SOAS - School of Oriental and African Studies, University of London", "priority": 1942, "external_id": null}, {"id": 10847765003, "name": "University of Essex", "priority": 1943, "external_id": null}, {"id": 10847766003, "name": "University of Warsaw", "priority": 1944, "external_id": null}, {"id": 10847767003, "name": "Griffith University", "priority": 1945, "external_id": null}, {"id": 10847768003, "name": "University of South Australia", "priority": 1946, "external_id": null}, {"id": 10847769003, "name": "Massey University", "priority": 1947, "external_id": null}, {"id": 10847770003, "name": "University of Porto", "priority": 1948, "external_id": null}, {"id": 10847771003, "name": "Universitat Polit\u00e8cnica de Catalunya", "priority": 1949, "external_id": null}, {"id": 10847772003, "name": "Indian Institute of Technology Kharagpur (IITKGP)", "priority": 1950, "external_id": null}, {"id": 10847773003, "name": "City University London", "priority": 1951, "external_id": null}, {"id": 10847774003, "name": "Dublin City University", "priority": 1952, "external_id": null}, {"id": 10847775003, "name": "Pontificia Universidad Javeriana", "priority": 1953, "external_id": null}, {"id": 10847776003, "name": "James Cook University", "priority": 1954, "external_id": null}, {"id": 10847777003, "name": "Novosibirsk State University", "priority": 1955, "external_id": null}, {"id": 10847778003, "name": "Universidade Nova de Lisboa", "priority": 1956, "external_id": null}, {"id": 10847779003, "name": "Universit\u00e9 Aix-Marseille", "priority": 1957, "external_id": null}, {"id": 10847780003, "name": "Universiti Sains Malaysia (USM)", "priority": 1958, "external_id": null}, {"id": 10847781003, "name": "Universiti Teknologi Malaysia (UTM)", "priority": 1959, "external_id": null}, {"id": 10847782003, "name": "Universit\u00e9 Paris Dauphine", "priority": 1960, "external_id": null}, {"id": 10847783003, "name": "University of Coimbra", "priority": 1961, "external_id": null}, {"id": 10847784003, "name": "Brunel University", "priority": 1962, "external_id": null}, {"id": 10847785003, "name": "King Abdul Aziz University (KAU)", "priority": 1963, "external_id": null}, {"id": 10847786003, "name": "Ewha Womans University", "priority": 1964, "external_id": null}, {"id": 10847787003, "name": "Nankai University", "priority": 1965, "external_id": null}, {"id": 10847788003, "name": "Taipei Medical University", "priority": 1966, "external_id": null}, {"id": 10847789003, "name": "Universit\u00e4t Jena", "priority": 1967, "external_id": null}, {"id": 10847790003, "name": "Ruhr-Universit\u00e4t Bochum", "priority": 1968, "external_id": null}, {"id": 10847791003, "name": "Heriot-Watt University", "priority": 1969, "external_id": null}, {"id": 10847792003, "name": "Politecnico di Torino", "priority": 1970, "external_id": null}, {"id": 10847793003, "name": "Universit\u00e4t Bremen", "priority": 1971, "external_id": null}, {"id": 10847794003, "name": "Xi'an Jiaotong University", "priority": 1972, "external_id": null}, {"id": 10847795003, "name": "Birkbeck College, University of London", "priority": 1973, "external_id": null}, {"id": 10847796003, "name": "Oxford Brookes University", "priority": 1974, "external_id": null}, {"id": 10847797003, "name": "Jagiellonian University", "priority": 1975, "external_id": null}, {"id": 10847798003, "name": "University of Tampere", "priority": 1976, "external_id": null}, {"id": 10847799003, "name": "University of Florence", "priority": 1977, "external_id": null}, {"id": 10847800003, "name": "Deakin University", "priority": 1978, "external_id": null}, {"id": 10847801003, "name": "University of the Philippines", "priority": 1979, "external_id": null}, {"id": 10847802003, "name": "Universitat Polit\u00e8cnica de Val\u00e8ncia", "priority": 1980, "external_id": null}, {"id": 10847803003, "name": "Sun Yat-sen University", "priority": 1981, "external_id": null}, {"id": 10847804003, "name": "Universit\u00e9 Montpellier 2, Sciences et Techniques du Languedoc", "priority": 1982, "external_id": null}, {"id": 10847805003, "name": "Moscow State Institute of International Relations (MGIMO-University)", "priority": 1983, "external_id": null}, {"id": 10847806003, "name": "Stellenbosch University", "priority": 1984, "external_id": null}, {"id": 10847807003, "name": "Polit\u00e9cnica de Madrid", "priority": 1985, "external_id": null}, {"id": 10847808003, "name": "Instituto Tecnol\u00f3gico de Buenos Aires (ITBA)", "priority": 1986, "external_id": null}, {"id": 10847809003, "name": "La Trobe University", "priority": 1987, "external_id": null}, {"id": 10847810003, "name": "Universit\u00e9 Paul Sabatier Toulouse III", "priority": 1988, "external_id": null}, {"id": 10847811003, "name": "Karl-Franzens-Universit\u00e4t Graz", "priority": 1989, "external_id": null}, {"id": 10847812003, "name": "Universit\u00e4t D\u00fcsseldorf", "priority": 1990, "external_id": null}, {"id": 10847813003, "name": "University of Naples - Federico Ii", "priority": 1991, "external_id": null}, {"id": 10847814003, "name": "Aston University", "priority": 1992, "external_id": null}, {"id": 10847815003, "name": "University of Turin", "priority": 1993, "external_id": null}, {"id": 10847816003, "name": "Beihang University (former BUAA)", "priority": 1994, "external_id": null}, {"id": 10847817003, "name": "Indian Institute of Technology Roorkee (IITR)", "priority": 1995, "external_id": null}, {"id": 10847818003, "name": "National Central University", "priority": 1996, "external_id": null}, {"id": 10847819003, "name": "Sogang University", "priority": 1997, "external_id": null}, {"id": 10847820003, "name": "Universit\u00e4t Regensburg", "priority": 1998, "external_id": null}, {"id": 10847821003, "name": "Universit\u00e9 Lille 1, Sciences et Technologie", "priority": 1999, "external_id": null}, {"id": 10847822003, "name": "University of Tasmania", "priority": 2000, "external_id": null}, {"id": 10847823003, "name": "University of Waikato", "priority": 2001, "external_id": null}, {"id": 10847824003, "name": "Wuhan University", "priority": 2002, "external_id": null}, {"id": 10847825003, "name": "National Taiwan University of Science And Technology", "priority": 2003, "external_id": null}, {"id": 10847826003, "name": "Universidade Federal de S\u00e3o Paulo (UNIFESP)", "priority": 2004, "external_id": null}, {"id": 10847827003, "name": "Universit\u00e0 degli Studi di Pavia", "priority": 2005, "external_id": null}, {"id": 10847828003, "name": "Universit\u00e4t Bayreuth", "priority": 2006, "external_id": null}, {"id": 10847829003, "name": "Universit\u00e9 Claude Bernard Lyon 1", "priority": 2007, "external_id": null}, {"id": 10847830003, "name": "Universit\u00e9 du Qu\u00e9bec", "priority": 2008, "external_id": null}, {"id": 10847831003, "name": "Universiti Putra Malaysia (UPM)", "priority": 2009, "external_id": null}, {"id": 10847832003, "name": "University of Kent", "priority": 2010, "external_id": null}, {"id": 10847833003, "name": "University of St Gallen (HSG)", "priority": 2011, "external_id": null}, {"id": 10847834003, "name": "Bond University", "priority": 2012, "external_id": null}, {"id": 10847835003, "name": "United Arab Emirates University", "priority": 2013, "external_id": null}, {"id": 10847836003, "name": "Universidad de San Andr\u00c3\u00a9s", "priority": 2014, "external_id": null}, {"id": 10847837003, "name": "Universidad Nacional de La Plata", "priority": 2015, "external_id": null}, {"id": 10847838003, "name": "Universit\u00e4t des Saarlandes", "priority": 2016, "external_id": null}, {"id": 10847839003, "name": "American University of Sharjah (AUS)", "priority": 2017, "external_id": null}, {"id": 10847840003, "name": "Bilkent University", "priority": 2018, "external_id": null}, {"id": 10847841003, "name": "Flinders University", "priority": 2019, "external_id": null}, {"id": 10847842003, "name": "Hankuk (Korea) University of Foreign Studies", "priority": 2020, "external_id": null}, {"id": 10847843003, "name": "Middle East Technical University", "priority": 2021, "external_id": null}, {"id": 10847844003, "name": "Philipps-Universit\u00e4t Marburg", "priority": 2022, "external_id": null}, {"id": 10847845003, "name": "Swansea University", "priority": 2023, "external_id": null}, {"id": 10847846003, "name": "Tampere University of Technology", "priority": 2024, "external_id": null}, {"id": 10847847003, "name": "Universit\u00e4t Bielefeld", "priority": 2025, "external_id": null}, {"id": 10847848003, "name": "University of Manitoba", "priority": 2026, "external_id": null}, {"id": 10847849003, "name": "Chiba University", "priority": 2027, "external_id": null}, {"id": 10847850003, "name": "Moscow Institute of Physics and Technology State University", "priority": 2028, "external_id": null}, {"id": 10847851003, "name": "Tallinn University of Technology", "priority": 2029, "external_id": null}, {"id": 10847852003, "name": "Taras Shevchenko National University of Kyiv", "priority": 2030, "external_id": null}, {"id": 10847853003, "name": "Tokyo University of Science", "priority": 2031, "external_id": null}, {"id": 10847854003, "name": "University of Salamanca", "priority": 2032, "external_id": null}, {"id": 10847855003, "name": "University of Trento", "priority": 2033, "external_id": null}, {"id": 10847856003, "name": "Universit\u00e9 de Sherbrooke", "priority": 2034, "external_id": null}, {"id": 10847857003, "name": "Universit\u00e9 Panth\u00e9on-Assas (Paris 2)", "priority": 2035, "external_id": null}, {"id": 10847858003, "name": "University of Delhi", "priority": 2036, "external_id": null}, {"id": 10847859003, "name": "Abo Akademi University", "priority": 2037, "external_id": null}, {"id": 10847860003, "name": "Czech Technical University In Prague", "priority": 2038, "external_id": null}, {"id": 10847861003, "name": "Leibniz Universit\u00e4t Hannover", "priority": 2039, "external_id": null}, {"id": 10847862003, "name": "Pusan National University", "priority": 2040, "external_id": null}, {"id": 10847863003, "name": "Shanghai University", "priority": 2041, "external_id": null}, {"id": 10847864003, "name": "St. Petersburg State Politechnical University", "priority": 2042, "external_id": null}, {"id": 10847865003, "name": "Universit\u00e0 Cattolica del Sacro Cuore", "priority": 2043, "external_id": null}, {"id": 10847866003, "name": "University of Genoa", "priority": 2044, "external_id": null}, {"id": 10847867003, "name": "Bandung Institute of Technology (ITB)", "priority": 2045, "external_id": null}, {"id": 10847868003, "name": "Bogazici University", "priority": 2046, "external_id": null}, {"id": 10847869003, "name": "Goldsmiths, University of London", "priority": 2047, "external_id": null}, {"id": 10847870003, "name": "National Sun Yat-sen University", "priority": 2048, "external_id": null}, {"id": 10847871003, "name": "Renmin (People\u2019s) University of China", "priority": 2049, "external_id": null}, {"id": 10847872003, "name": "Universidad de Costa Rica", "priority": 2050, "external_id": null}, {"id": 10847873003, "name": "Universidad de Santiago de Chile - USACH", "priority": 2051, "external_id": null}, {"id": 10847874003, "name": "University of Tartu", "priority": 2052, "external_id": null}, {"id": 10847875003, "name": "Aristotle University of Thessaloniki", "priority": 2053, "external_id": null}, {"id": 10847876003, "name": "Auckland University of Technology", "priority": 2054, "external_id": null}, {"id": 10847877003, "name": "Bangor University", "priority": 2055, "external_id": null}, {"id": 10847878003, "name": "Charles Darwin University", "priority": 2056, "external_id": null}, {"id": 10847879003, "name": "Kingston University, London", "priority": 2057, "external_id": null}, {"id": 10847880003, "name": "Universitat de Valencia", "priority": 2058, "external_id": null}, {"id": 10847881003, "name": "Universit\u00e9 Montpellier 1", "priority": 2059, "external_id": null}, {"id": 10847882003, "name": "University of Pretoria", "priority": 2060, "external_id": null}, {"id": 10847883003, "name": "Lincoln University", "priority": 2061, "external_id": null}, {"id": 10847884003, "name": "National Taiwan Normal University", "priority": 2062, "external_id": null}, {"id": 10847885003, "name": "National University of Sciences And Technology (NUST) Islamabad", "priority": 2063, "external_id": null}, {"id": 10847886003, "name": "Swinburne University of Technology", "priority": 2064, "external_id": null}, {"id": 10847887003, "name": "Tongji University", "priority": 2065, "external_id": null}, {"id": 10847888003, "name": "Universidad de Zaragoza", "priority": 2066, "external_id": null}, {"id": 10847889003, "name": "Universidade Federal de Minas Gerais", "priority": 2067, "external_id": null}, {"id": 10847890003, "name": "Universit\u00e4t Duisburg-Essen", "priority": 2068, "external_id": null}, {"id": 10847891003, "name": "Al-Imam Mohamed Ibn Saud Islamic University", "priority": 2069, "external_id": null}, {"id": 10847892003, "name": "Harbin Institute of Technology", "priority": 2070, "external_id": null}, {"id": 10847893003, "name": "People's Friendship University of Russia", "priority": 2071, "external_id": null}, {"id": 10847894003, "name": "Universidade Estadual PaulistaJ\u00falio de Mesquita Filho' (UNESP)", "priority": 2072, "external_id": null}, {"id": 10847895003, "name": "Universit\u00e9 Nice Sophia-Antipolis", "priority": 2073, "external_id": null}, {"id": 10847896003, "name": "University of Crete", "priority": 2074, "external_id": null}, {"id": 10847897003, "name": "University of Milano-Bicocca", "priority": 2075, "external_id": null}, {"id": 10847898003, "name": "Ateneo de Manila University", "priority": 2076, "external_id": null}, {"id": 10847899003, "name": "Beijing Institute of Technology", "priority": 2077, "external_id": null}, {"id": 10847900003, "name": "Chang Gung University", "priority": 2078, "external_id": null}, {"id": 10847901003, "name": "hung-Ang University", "priority": 2079, "external_id": null}, {"id": 10847902003, "name": "Dublin Institute of Technology", "priority": 2080, "external_id": null}, {"id": 10847903003, "name": "Huazhong University of Science and Technology", "priority": 2081, "external_id": null}, {"id": 10847904003, "name": "International Islamic University Malaysia (IIUM)", "priority": 2082, "external_id": null}, {"id": 10847905003, "name": "Johannes Kepler University Linz", "priority": 2083, "external_id": null}, {"id": 10847906003, "name": "Justus-Liebig-Universit\u00e4t Gie\u00dfen", "priority": 2084, "external_id": null}, {"id": 10847907003, "name": "Kanazawa University", "priority": 2085, "external_id": null}, {"id": 10847908003, "name": "Keele University", "priority": 2086, "external_id": null}, {"id": 10847909003, "name": "Koc University", "priority": 2087, "external_id": null}, {"id": 10847910003, "name": "National and Kapodistrian University of Athens", "priority": 2088, "external_id": null}, {"id": 10847911003, "name": "National Research University \u2013 Higher School of Economics (HSE)", "priority": 2089, "external_id": null}, {"id": 10847912003, "name": "National Technical University of Athens", "priority": 2090, "external_id": null}, {"id": 10847913003, "name": "Okayama University", "priority": 2091, "external_id": null}, {"id": 10847914003, "name": "Sabanci University", "priority": 2092, "external_id": null}, {"id": 10847915003, "name": "Southeast University", "priority": 2093, "external_id": null}, {"id": 10847916003, "name": "Sultan Qaboos University", "priority": 2094, "external_id": null}, {"id": 10847917003, "name": "Technische Universit\u00e4t Braunschweig", "priority": 2095, "external_id": null}, {"id": 10847918003, "name": "Technische Universit\u00e4t Dortmund", "priority": 2096, "external_id": null}, {"id": 10847919003, "name": "The Catholic University of Korea", "priority": 2097, "external_id": null}, {"id": 10847920003, "name": "Tianjin University", "priority": 2098, "external_id": null}, {"id": 10847921003, "name": "Tokyo Metropolitan University", "priority": 2099, "external_id": null}, {"id": 10847922003, "name": "Universidad de Antioquia", "priority": 2100, "external_id": null}, {"id": 10847923003, "name": "University of Granada", "priority": 2101, "external_id": null}, {"id": 10847924003, "name": "Universidad de Palermo", "priority": 2102, "external_id": null}, {"id": 10847925003, "name": "Universidad Nacional de C\u00f3rdoba", "priority": 2103, "external_id": null}, {"id": 10847926003, "name": "Universidade de Santiago de Compostela", "priority": 2104, "external_id": null}, {"id": 10847927003, "name": "Universidade Federal do Rio Grande Do Sul", "priority": 2105, "external_id": null}, {"id": 10847928003, "name": "University of Siena", "priority": 2106, "external_id": null}, {"id": 10847929003, "name": "University of Trieste", "priority": 2107, "external_id": null}, {"id": 10847930003, "name": "Universitas Gadjah Mada", "priority": 2108, "external_id": null}, {"id": 10847931003, "name": "Universit\u00e9 de Lorraine", "priority": 2109, "external_id": null}, {"id": 10847932003, "name": "Universit\u00e9 de Rennes 1", "priority": 2110, "external_id": null}, {"id": 10847933003, "name": "University of Bradford", "priority": 2111, "external_id": null}, {"id": 10847934003, "name": "University of Hull", "priority": 2112, "external_id": null}, {"id": 10847935003, "name": "University of Kwazulu-Natal", "priority": 2113, "external_id": null}, {"id": 10847936003, "name": "University of Limerick", "priority": 2114, "external_id": null}, {"id": 10847937003, "name": "University of Stirling", "priority": 2115, "external_id": null}, {"id": 10847938003, "name": "University of Szeged", "priority": 2116, "external_id": null}, {"id": 10847939003, "name": "Ural Federal University", "priority": 2117, "external_id": null}, {"id": 10847940003, "name": "Xiamen University", "priority": 2118, "external_id": null}, {"id": 10847941003, "name": "Yokohama City University", "priority": 2119, "external_id": null}, {"id": 10847942003, "name": "Aberystwyth University", "priority": 2120, "external_id": null}, {"id": 10847943003, "name": "Belarus State University", "priority": 2121, "external_id": null}, {"id": 10847944003, "name": "Cairo University", "priority": 2122, "external_id": null}, {"id": 10847945003, "name": "Chiang Mai University", "priority": 2123, "external_id": null}, {"id": 10847946003, "name": "Chonbuk National University", "priority": 2124, "external_id": null}, {"id": 10847947003, "name": "E\u00f6tv\u00f6s Lor\u00e1nd University", "priority": 2125, "external_id": null}, {"id": 10847948003, "name": "Inha University", "priority": 2126, "external_id": null}, {"id": 10847949003, "name": "Instituto Polit\u00e9cnico Nacional (IPN)", "priority": 2127, "external_id": null}, {"id": 10847950003, "name": "Istanbul Technical University", "priority": 2128, "external_id": null}, {"id": 10847951003, "name": "Kumamoto University", "priority": 2129, "external_id": null}, {"id": 10847952003, "name": "Kyungpook National University", "priority": 2130, "external_id": null}, {"id": 10847953003, "name": "Lingnan University (Hong Kong)", "priority": 2131, "external_id": null}, {"id": 10847954003, "name": "Masaryk University", "priority": 2132, "external_id": null}, {"id": 10847955003, "name": "Murdoch University", "priority": 2133, "external_id": null}, {"id": 10847956003, "name": "Nagasaki University", "priority": 2134, "external_id": null}, {"id": 10847957003, "name": "National Chung Hsing University", "priority": 2135, "external_id": null}, {"id": 10847958003, "name": "National Taipei University of Technology", "priority": 2136, "external_id": null}, {"id": 10847959003, "name": "National University of Ireland Maynooth", "priority": 2137, "external_id": null}, {"id": 10847960003, "name": "Osaka City University", "priority": 2138, "external_id": null}, {"id": 10847961003, "name": "Pontificia Universidad Cat\u00f3lica del Per\u00fa", "priority": 2139, "external_id": null}, {"id": 10847962003, "name": "Pontificia Universidade Cat\u00f3lica de S\u00e3o Paulo (PUC -SP)", "priority": 2140, "external_id": null}, {"id": 10847963003, "name": "Pontificia Universidade Cat\u00f3lica do Rio de Janeiro (PUC - Rio)", "priority": 2141, "external_id": null}, {"id": 10847964003, "name": "Qatar University", "priority": 2142, "external_id": null}, {"id": 10847965003, "name": "Rhodes University", "priority": 2143, "external_id": null}, {"id": 10847966003, "name": "Tokyo University of Agriculture and Technology", "priority": 2144, "external_id": null}, {"id": 10847967003, "name": "Tomsk Polytechnic University", "priority": 2145, "external_id": null}, {"id": 10847968003, "name": "Tomsk State University", "priority": 2146, "external_id": null}, {"id": 10847969003, "name": "Umm Al-Qura University", "priority": 2147, "external_id": null}, {"id": 10847970003, "name": "Universidad Cat\u00f3lica Andr\u00e9s Bello - UCAB", "priority": 2148, "external_id": null}, {"id": 10847971003, "name": "Universidad Central de Venezuela - UCV", "priority": 2149, "external_id": null}, {"id": 10847972003, "name": "Universidad de Belgrano", "priority": 2150, "external_id": null}, {"id": 10847973003, "name": "Universidad de Concepci\u00f3n", "priority": 2151, "external_id": null}, {"id": 10847974003, "name": "Universidad de Sevilla", "priority": 2152, "external_id": null}, {"id": 10847975003, "name": "Universidade Catolica Portuguesa, Lisboa", "priority": 2153, "external_id": null}, {"id": 10847976003, "name": "Universidade de Brasilia (UnB)", "priority": 2154, "external_id": null}, {"id": 10847977003, "name": "University of Lisbon", "priority": 2155, "external_id": null}, {"id": 10847978003, "name": "University of Ljubljana", "priority": 2156, "external_id": null}, {"id": 10847979003, "name": "University of Seoul", "priority": 2157, "external_id": null}, {"id": 10847980003, "name": "Abu Dhabi University", "priority": 2158, "external_id": null}, {"id": 10847981003, "name": "Ain Shams University", "priority": 2159, "external_id": null}, {"id": 10847982003, "name": "Ajou University", "priority": 2160, "external_id": null}, {"id": 10847983003, "name": "De La Salle University", "priority": 2161, "external_id": null}, {"id": 10847984003, "name": "Dongguk University", "priority": 2162, "external_id": null}, {"id": 10847985003, "name": "Gifu University", "priority": 2163, "external_id": null}, {"id": 10847986003, "name": "Hacettepe University", "priority": 2164, "external_id": null}, {"id": 10847987003, "name": "Indian Institute of Technology Guwahati (IITG)", "priority": 2165, "external_id": null}, {"id": 10847988003, "name": "Jilin University", "priority": 2166, "external_id": null}, {"id": 10847989003, "name": "Kazan Federal University", "priority": 2167, "external_id": null}, {"id": 10847990003, "name": "King Khalid University", "priority": 2168, "external_id": null}, {"id": 10847991003, "name": "Martin-Luther-Universit\u00e4t Halle-Wittenberg", "priority": 2169, "external_id": null}, {"id": 10847992003, "name": "National Chengchi University", "priority": 2170, "external_id": null}, {"id": 10847993003, "name": "National Technical University of UkraineKyiv Polytechnic Institute'", "priority": 2171, "external_id": null}, {"id": 10847994003, "name": "Niigata University", "priority": 2172, "external_id": null}, {"id": 10847995003, "name": "Osaka Prefecture University", "priority": 2173, "external_id": null}, {"id": 10847996003, "name": "Paris Lodron University of Salzburg", "priority": 2174, "external_id": null}, {"id": 10847997003, "name": "Sharif University of Technology", "priority": 2175, "external_id": null}, {"id": 10847998003, "name": "Southern Federal University", "priority": 2176, "external_id": null}, {"id": 10847999003, "name": "Thammasat University", "priority": 2177, "external_id": null}, {"id": 10848000003, "name": "Universidad de Guadalajara (UDG)", "priority": 2178, "external_id": null}, {"id": 10848001003, "name": "Universidad de la Rep\u00fablica (UdelaR)", "priority": 2179, "external_id": null}, {"id": 10848002003, "name": "Universidad Iberoamericana (UIA)", "priority": 2180, "external_id": null}, {"id": 10848003003, "name": "Universidad Torcuato Di Tella", "priority": 2181, "external_id": null}, {"id": 10848004003, "name": "Universidade Federal da Bahia", "priority": 2182, "external_id": null}, {"id": 10848005003, "name": "Universidade Federal de S\u00e3o Carlos", "priority": 2183, "external_id": null}, {"id": 10848006003, "name": "Universidade Federal de Vi\u00e7osa", "priority": 2184, "external_id": null}, {"id": 10848007003, "name": "Perugia University", "priority": 2185, "external_id": null}, {"id": 10848008003, "name": "Universit\u00e9 de Nantes", "priority": 2186, "external_id": null}, {"id": 10848009003, "name": "Universit\u00e9 Saint-Joseph de Beyrouth", "priority": 2187, "external_id": null}, {"id": 10848010003, "name": "University of Canberra", "priority": 2188, "external_id": null}, {"id": 10848011003, "name": "University of Debrecen", "priority": 2189, "external_id": null}, {"id": 10848012003, "name": "University of Johannesburg", "priority": 2190, "external_id": null}, {"id": 10848013003, "name": "University of Mumbai", "priority": 2191, "external_id": null}, {"id": 10848014003, "name": "University of Patras", "priority": 2192, "external_id": null}, {"id": 10848015003, "name": "University of Tehran", "priority": 2193, "external_id": null}, {"id": 10848016003, "name": "University of Ulsan", "priority": 2194, "external_id": null}, {"id": 10848017003, "name": "University of Ulster", "priority": 2195, "external_id": null}, {"id": 10848018003, "name": "University of Zagreb", "priority": 2196, "external_id": null}, {"id": 10848019003, "name": "Vilnius University", "priority": 2197, "external_id": null}, {"id": 10848020003, "name": "Warsaw University of Technology", "priority": 2198, "external_id": null}, {"id": 10848021003, "name": "Al Azhar University", "priority": 2199, "external_id": null}, {"id": 10848022003, "name": "Bar-Ilan University", "priority": 2200, "external_id": null}, {"id": 10848023003, "name": "Brno University of Technology", "priority": 2201, "external_id": null}, {"id": 10848024003, "name": "Chonnam National University", "priority": 2202, "external_id": null}, {"id": 10848025003, "name": "Chungnam National University", "priority": 2203, "external_id": null}, {"id": 10848026003, "name": "Corvinus University of Budapest", "priority": 2204, "external_id": null}, {"id": 10848027003, "name": "Gunma University", "priority": 2205, "external_id": null}, {"id": 10848028003, "name": "Hallym University", "priority": 2206, "external_id": null}, {"id": 10848029003, "name": "Instituto Tecnol\u00f3gico Autonomo de M\u00e9xico (ITAM)", "priority": 2207, "external_id": null}, {"id": 10848030003, "name": "Istanbul University", "priority": 2208, "external_id": null}, {"id": 10848031003, "name": "Jordan University of Science & Technology", "priority": 2209, "external_id": null}, {"id": 10848032003, "name": "Kasetsart University", "priority": 2210, "external_id": null}, {"id": 10848033003, "name": "Kazakh-British Technical University", "priority": 2211, "external_id": null}, {"id": 10848034003, "name": "Khazar University", "priority": 2212, "external_id": null}, {"id": 10848035003, "name": "London Metropolitan University", "priority": 2213, "external_id": null}, {"id": 10848036003, "name": "Middlesex University", "priority": 2214, "external_id": null}, {"id": 10848037003, "name": "Universidad Industrial de Santander", "priority": 2215, "external_id": null}, {"id": 10848038003, "name": "Pontificia Universidad Cat\u00f3lica de Valpara\u00edso", "priority": 2216, "external_id": null}, {"id": 10848039003, "name": "Pontificia Universidade Cat\u00f3lica do Rio Grande do Sul", "priority": 2217, "external_id": null}, {"id": 10848040003, "name": "Qafqaz University", "priority": 2218, "external_id": null}, {"id": 10848041003, "name": "Ritsumeikan University", "priority": 2219, "external_id": null}, {"id": 10848042003, "name": "Shandong University", "priority": 2220, "external_id": null}, {"id": 10848043003, "name": "University of St. Kliment Ohridski", "priority": 2221, "external_id": null}, {"id": 10848044003, "name": "South Kazakhstan State University (SKSU)", "priority": 2222, "external_id": null}, {"id": 10848045003, "name": "Universidad Adolfo Ib\u00e1\u00f1ez", "priority": 2223, "external_id": null}, {"id": 10848046003, "name": "Universidad Aut\u00f3noma del Estado de M\u00e9xico", "priority": 2224, "external_id": null}, {"id": 10848047003, "name": "Universidad Aut\u00f3noma Metropolitana (UAM)", "priority": 2225, "external_id": null}, {"id": 10848048003, "name": "Universidad de Alcal\u00e1", "priority": 2226, "external_id": null}, {"id": 10848049003, "name": "Universidad Nacional Costa Rica", "priority": 2227, "external_id": null}, {"id": 10848050003, "name": "Universidad Nacional de Mar del Plata", "priority": 2228, "external_id": null}, {"id": 10848051003, "name": "Universidad Peruana Cayetano Heredia", "priority": 2229, "external_id": null}, {"id": 10848052003, "name": "Universidad Sim\u00f3n Bol\u00edvar Venezuela", "priority": 2230, "external_id": null}, {"id": 10848053003, "name": "Universidade Federal de Santa Catarina", "priority": 2231, "external_id": null}, {"id": 10848054003, "name": "Universidade Federal do Paran\u00e1 (UFPR)", "priority": 2232, "external_id": null}, {"id": 10848055003, "name": "Universidade Federal Fluminense", "priority": 2233, "external_id": null}, {"id": 10848056003, "name": "University of Modena", "priority": 2234, "external_id": null}, {"id": 10848057003, "name": "Universit\u00e9 Lumi\u00e8re Lyon 2", "priority": 2235, "external_id": null}, {"id": 10848058003, "name": "Universit\u00e9 Toulouse 1, Capitole", "priority": 2236, "external_id": null}, {"id": 10848059003, "name": "University of Economics Prague", "priority": 2237, "external_id": null}, {"id": 10848060003, "name": "University of Hertfordshire", "priority": 2238, "external_id": null}, {"id": 10848061003, "name": "University of Plymouth", "priority": 2239, "external_id": null}, {"id": 10848062003, "name": "University of Salford", "priority": 2240, "external_id": null}, {"id": 10848063003, "name": "University of Science and Technology Beijing", "priority": 2241, "external_id": null}, {"id": 10848064003, "name": "University of Western Sydney", "priority": 2242, "external_id": null}, {"id": 10848065003, "name": "Yamaguchi University", "priority": 2243, "external_id": null}, {"id": 10848066003, "name": "Yokohama National University", "priority": 2244, "external_id": null}, {"id": 10848067003, "name": "Airlangga University", "priority": 2245, "external_id": null}, {"id": 10848068003, "name": "Alexandria University", "priority": 2246, "external_id": null}, {"id": 10848069003, "name": "Alexandru Ioan Cuza University", "priority": 2247, "external_id": null}, {"id": 10848070003, "name": "Alpen-Adria-Universit\u00e4t Klagenfurt", "priority": 2248, "external_id": null}, {"id": 10848071003, "name": "Aoyama Gakuin University", "priority": 2249, "external_id": null}, {"id": 10848072003, "name": "Athens University of Economy And Business", "priority": 2250, "external_id": null}, {"id": 10848073003, "name": "Babes-Bolyai University", "priority": 2251, "external_id": null}, {"id": 10848074003, "name": "Baku State University", "priority": 2252, "external_id": null}, {"id": 10848075003, "name": "Belarusian National Technical University", "priority": 2253, "external_id": null}, {"id": 10848076003, "name": "Benem\u00e9rita Universidad Aut\u00f3noma de Puebla", "priority": 2254, "external_id": null}, {"id": 10848077003, "name": "Bogor Agricultural University", "priority": 2255, "external_id": null}, {"id": 10848078003, "name": "Coventry University", "priority": 2256, "external_id": null}, {"id": 10848079003, "name": "Cukurova University", "priority": 2257, "external_id": null}, {"id": 10848080003, "name": "Diponegoro University", "priority": 2258, "external_id": null}, {"id": 10848081003, "name": "Donetsk National University", "priority": 2259, "external_id": null}, {"id": 10848082003, "name": "Doshisha University", "priority": 2260, "external_id": null}, {"id": 10848083003, "name": "E.A.Buketov Karaganda State University", "priority": 2261, "external_id": null}, {"id": 10848084003, "name": "Far Eastern Federal University", "priority": 2262, "external_id": null}, {"id": 10848085003, "name": "Fu Jen Catholic University", "priority": 2263, "external_id": null}, {"id": 10848086003, "name": "Kagoshima University", "priority": 2264, "external_id": null}, {"id": 10848087003, "name": "Kaunas University of Technology", "priority": 2265, "external_id": null}, {"id": 10848088003, "name": "Kazakh Ablai khan University of International Relations and World Languages", "priority": 2266, "external_id": null}, {"id": 10848089003, "name": "Kazakh National Pedagogical University Abai", "priority": 2267, "external_id": null}, {"id": 10848090003, "name": "Kazakh National Technical University", "priority": 2268, "external_id": null}, {"id": 10848091003, "name": "Khon Kaen University", "priority": 2269, "external_id": null}, {"id": 10848092003, "name": "King Faisal University", "priority": 2270, "external_id": null}, {"id": 10848093003, "name": "King Mongkut''s University of Technology Thonburi", "priority": 2271, "external_id": null}, {"id": 10848094003, "name": "Kuwait University", "priority": 2272, "external_id": null}, {"id": 10848095003, "name": "Lodz University", "priority": 2273, "external_id": null}, {"id": 10848096003, "name": "Manchester Metropolitan University", "priority": 2274, "external_id": null}, {"id": 10848097003, "name": "Lobachevsky State University of Nizhni Novgorod", "priority": 2275, "external_id": null}, {"id": 10848098003, "name": "National Technical UniversityKharkiv Polytechnic Institute'", "priority": 2276, "external_id": null}, {"id": 10848099003, "name": "Nicolaus Copernicus University", "priority": 2277, "external_id": null}, {"id": 10848100003, "name": "Northumbria University at Newcastle", "priority": 2278, "external_id": null}, {"id": 10848101003, "name": "Nottingham Trent University", "priority": 2279, "external_id": null}, {"id": 10848102003, "name": "Ochanomizu University", "priority": 2280, "external_id": null}, {"id": 10848103003, "name": "Plekhanov Russian University of Economics", "priority": 2281, "external_id": null}, {"id": 10848104003, "name": "Pontificia Universidad Catolica del Ecuador", "priority": 2282, "external_id": null}, {"id": 10848105003, "name": "Prince of Songkla University", "priority": 2283, "external_id": null}, {"id": 10848106003, "name": "S.Seifullin Kazakh Agro Technical University", "priority": 2284, "external_id": null}, {"id": 10848107003, "name": "Saitama University", "priority": 2285, "external_id": null}, {"id": 10848108003, "name": "Sepuluh Nopember Institute of Technology", "priority": 2286, "external_id": null}, {"id": 10848109003, "name": "Shinshu University", "priority": 2287, "external_id": null}, {"id": 10848110003, "name": "The Robert Gordon University", "priority": 2288, "external_id": null}, {"id": 10848111003, "name": "Tokai University", "priority": 2289, "external_id": null}, {"id": 10848112003, "name": "Universidad ANAHUAC", "priority": 2290, "external_id": null}, {"id": 10848113003, "name": "Universidad Austral de Chile", "priority": 2291, "external_id": null}, {"id": 10848114003, "name": "University Aut\u00f3noma de Nuevo Le\u00f3n (UANL)", "priority": 2292, "external_id": null}, {"id": 10848115003, "name": "Universidad de la Habana", "priority": 2293, "external_id": null}, {"id": 10848116003, "name": "Universidad de La Sabana", "priority": 2294, "external_id": null}, {"id": 10848117003, "name": "Universidad de las Am\u00e9ricas Puebla (UDLAP)", "priority": 2295, "external_id": null}, {"id": 10848118003, "name": "Universidad de los Andes M\u00e9rida", "priority": 2296, "external_id": null}, {"id": 10848119003, "name": "University of Murcia", "priority": 2297, "external_id": null}, {"id": 10848120003, "name": "Universidad de Puerto Rico", "priority": 2298, "external_id": null}, {"id": 10848121003, "name": "Universidad de San Francisco de Quito", "priority": 2299, "external_id": null}, {"id": 10848122003, "name": "Universidad de Talca", "priority": 2300, "external_id": null}, {"id": 10848123003, "name": "Universidad del Norte", "priority": 2301, "external_id": null}, {"id": 10848124003, "name": "Universidad del Rosario", "priority": 2302, "external_id": null}, {"id": 10848125003, "name": "Universidad del Valle", "priority": 2303, "external_id": null}, {"id": 10848126003, "name": "Universidad Nacional de Cuyo", "priority": 2304, "external_id": null}, {"id": 10848127003, "name": "Universidad Nacional de Rosario", "priority": 2305, "external_id": null}, {"id": 10848128003, "name": "Universidad Nacional de Tucum\u00e1n", "priority": 2306, "external_id": null}, {"id": 10848129003, "name": "Universidad Nacional del Sur", "priority": 2307, "external_id": null}, {"id": 10848130003, "name": "Universidad Nacional Mayor de San Marcos", "priority": 2308, "external_id": null}, {"id": 10848131003, "name": "Universidad T\u00e9cnica Federico Santa Mar\u00eda", "priority": 2309, "external_id": null}, {"id": 10848132003, "name": "Universidad Tecnol\u00f3gica Nacional (UTN)", "priority": 2310, "external_id": null}, {"id": 10848133003, "name": "Universidade do Estado do Rio de Janeiro (UERJ)", "priority": 2311, "external_id": null}, {"id": 10848134003, "name": "Universidade Estadual de Londrina (UEL)", "priority": 2312, "external_id": null}, {"id": 10848135003, "name": "Universidade Federal de Santa Maria", "priority": 2313, "external_id": null}, {"id": 10848136003, "name": "Universidade Federal do Cear\u00e1 (UFC)", "priority": 2314, "external_id": null}, {"id": 10848137003, "name": "Universidade Federal do Pernambuco", "priority": 2315, "external_id": null}, {"id": 10848138003, "name": "Universit\u00e0 Ca'' Foscari Venezia", "priority": 2316, "external_id": null}, {"id": 10848139003, "name": "Catania University", "priority": 2317, "external_id": null}, {"id": 10848140003, "name": "Universit\u00e0 degli Studi Roma Tre", "priority": 2318, "external_id": null}, {"id": 10848141003, "name": "Universit\u00e9 Charles-de-Gaulle Lille 3", "priority": 2319, "external_id": null}, {"id": 10848142003, "name": "Universit\u00e9 de Caen Basse-Normandie", "priority": 2320, "external_id": null}, {"id": 10848143003, "name": "Universit\u00e9 de Cergy-Pontoise", "priority": 2321, "external_id": null}, {"id": 10848144003, "name": "Universit\u00e9 de Poitiers", "priority": 2322, "external_id": null}, {"id": 10848145003, "name": "Universit\u00e9 Jean Moulin Lyon 3", "priority": 2323, "external_id": null}, {"id": 10848146003, "name": "Universit\u00e9 Lille 2 Droit et Sant\u00e9", "priority": 2324, "external_id": null}, {"id": 10848147003, "name": "Universit\u00e9 Paris Ouest Nanterre La D\u00e9fense", "priority": 2325, "external_id": null}, {"id": 10848148003, "name": "Universit\u00e9 Paul-Val\u00e9ry Montpellier 3", "priority": 2326, "external_id": null}, {"id": 10848149003, "name": "Universit\u00e9 Pierre Mend\u00e8s France - Grenoble 2", "priority": 2327, "external_id": null}, {"id": 10848150003, "name": "Universit\u00e9 Stendhal Grenoble 3", "priority": 2328, "external_id": null}, {"id": 10848151003, "name": "Universit\u00e9 Toulouse II, Le Mirail", "priority": 2329, "external_id": null}, {"id": 10848152003, "name": "Universiti Teknologi MARA - UiTM", "priority": 2330, "external_id": null}, {"id": 10848153003, "name": "University of Baghdad", "priority": 2331, "external_id": null}, {"id": 10848154003, "name": "University of Bahrain", "priority": 2332, "external_id": null}, {"id": 10848155003, "name": "University of Bari", "priority": 2333, "external_id": null}, {"id": 10848156003, "name": "University of Belgrade", "priority": 2334, "external_id": null}, {"id": 10848157003, "name": "University of Brawijaya", "priority": 2335, "external_id": null}, {"id": 10848158003, "name": "University of Brescia", "priority": 2336, "external_id": null}, {"id": 10848159003, "name": "University of Bucharest", "priority": 2337, "external_id": null}, {"id": 10848160003, "name": "University of Calcutta", "priority": 2338, "external_id": null}, {"id": 10848161003, "name": "University of Central Lancashire", "priority": 2339, "external_id": null}, {"id": 10848162003, "name": "University of Colombo", "priority": 2340, "external_id": null}, {"id": 10848163003, "name": "University of Dhaka", "priority": 2341, "external_id": null}, {"id": 10848164003, "name": "University of East London", "priority": 2342, "external_id": null}, {"id": 10848165003, "name": "University of Engineering & Technology (UET) Lahore", "priority": 2343, "external_id": null}, {"id": 10848166003, "name": "University of Greenwich", "priority": 2344, "external_id": null}, {"id": 10848167003, "name": "University of Jordan", "priority": 2345, "external_id": null}, {"id": 10848168003, "name": "University of Karachi", "priority": 2346, "external_id": null}, {"id": 10848169003, "name": "University of Lahore", "priority": 2347, "external_id": null}, {"id": 10848170003, "name": "University of Latvia", "priority": 2348, "external_id": null}, {"id": 10848171003, "name": "University of New England", "priority": 2349, "external_id": null}, {"id": 10848172003, "name": "University of Pune", "priority": 2350, "external_id": null}, {"id": 10848173003, "name": "University of Santo Tomas", "priority": 2351, "external_id": null}, {"id": 10848174003, "name": "University of Southern Queensland", "priority": 2352, "external_id": null}, {"id": 10848175003, "name": "University of Wroclaw", "priority": 2353, "external_id": null}, {"id": 10848176003, "name": "Verona University", "priority": 2354, "external_id": null}, {"id": 10848177003, "name": "Victoria University", "priority": 2355, "external_id": null}, {"id": 10848178003, "name": "Vilnius Gediminas Technical University", "priority": 2356, "external_id": null}, {"id": 10848179003, "name": "Voronezh State University", "priority": 2357, "external_id": null}, {"id": 10848180003, "name": "Vytautas Magnus University", "priority": 2358, "external_id": null}, {"id": 10848181003, "name": "West University of Timisoara", "priority": 2359, "external_id": null}, {"id": 10848182003, "name": "University of South Alabama", "priority": 2360, "external_id": null}, {"id": 10848183003, "name": "University of Arkansas", "priority": 2361, "external_id": null}, {"id": 10848184003, "name": "University of California - Berkeley", "priority": 2362, "external_id": null}, {"id": 10848185003, "name": "University of Connecticut", "priority": 2363, "external_id": null}, {"id": 10848186003, "name": "University of South Florida", "priority": 2364, "external_id": null}, {"id": 10848187003, "name": "University of Georgia", "priority": 2365, "external_id": null}, {"id": 10848188003, "name": "University of Hawaii - Manoa", "priority": 2366, "external_id": null}, {"id": 10848189003, "name": "Iowa State University", "priority": 2367, "external_id": null}, {"id": 10848190003, "name": "Murray State University", "priority": 2368, "external_id": null}, {"id": 10848191003, "name": "University of Louisville", "priority": 2369, "external_id": null}, {"id": 10848192003, "name": "Western Kentucky University", "priority": 2370, "external_id": null}, {"id": 10848193003, "name": "Louisiana State University - Baton Rouge", "priority": 2371, "external_id": null}, {"id": 10848194003, "name": "University of Maryland - College Park", "priority": 2372, "external_id": null}, {"id": 10848195003, "name": "University of Minnesota - Twin Cities", "priority": 2373, "external_id": null}, {"id": 10848196003, "name": "University of Montana", "priority": 2374, "external_id": null}, {"id": 10848197003, "name": "East Carolina University", "priority": 2375, "external_id": null}, {"id": 10848198003, "name": "University of North Carolina - Chapel Hill", "priority": 2376, "external_id": null}, {"id": 10848199003, "name": "Wake Forest University", "priority": 2377, "external_id": null}, {"id": 10848200003, "name": "University of Nebraska - Lincoln", "priority": 2378, "external_id": null}, {"id": 10848201003, "name": "New Mexico State University", "priority": 2379, "external_id": null}, {"id": 10848202003, "name": "Ohio State University - Columbus", "priority": 2380, "external_id": null}, {"id": 10848203003, "name": "University of Oklahoma", "priority": 2381, "external_id": null}, {"id": 10848204003, "name": "Pennsylvania State University - University Park", "priority": 2382, "external_id": null}, {"id": 10848205003, "name": "University of Pittsburgh", "priority": 2383, "external_id": null}, {"id": 10848206003, "name": "University of Tennessee - Chattanooga", "priority": 2384, "external_id": null}, {"id": 10848207003, "name": "Vanderbilt University", "priority": 2385, "external_id": null}, {"id": 10848208003, "name": "Rice University", "priority": 2386, "external_id": null}, {"id": 10848209003, "name": "University of Utah", "priority": 2387, "external_id": null}, {"id": 10848210003, "name": "University of Richmond", "priority": 2388, "external_id": null}, {"id": 10848211003, "name": "University of Arkansas - Pine Bluff", "priority": 2389, "external_id": null}, {"id": 10848212003, "name": "University of Central Florida", "priority": 2390, "external_id": null}, {"id": 10848213003, "name": "Florida Atlantic University", "priority": 2391, "external_id": null}, {"id": 10848214003, "name": "Hampton University", "priority": 2392, "external_id": null}, {"id": 10848215003, "name": "Liberty University", "priority": 2393, "external_id": null}, {"id": 10848216003, "name": "Mercer University", "priority": 2394, "external_id": null}, {"id": 10848217003, "name": "Middle Tennessee State University", "priority": 2395, "external_id": null}, {"id": 10848218003, "name": "University of Nevada - Las Vegas", "priority": 2396, "external_id": null}, {"id": 10848219003, "name": "South Carolina State University", "priority": 2397, "external_id": null}, {"id": 10848220003, "name": "University of Tennessee - Martin", "priority": 2398, "external_id": null}, {"id": 10848221003, "name": "Weber State University", "priority": 2399, "external_id": null}, {"id": 10848222003, "name": "Youngstown State University", "priority": 2400, "external_id": null}, {"id": 10848223003, "name": "University of the Incarnate Word", "priority": 2401, "external_id": null}, {"id": 10848224003, "name": "University of Washington", "priority": 2402, "external_id": null}, {"id": 10848225003, "name": "University of Louisiana - Lafayette", "priority": 2403, "external_id": null}, {"id": 10848226003, "name": "Coastal Carolina University", "priority": 2404, "external_id": null}, {"id": 10848227003, "name": "Utah State University", "priority": 2405, "external_id": null}, {"id": 10848228003, "name": "University of Alabama", "priority": 2406, "external_id": null}, {"id": 10848229003, "name": "University of Illinois - Urbana-Champaign", "priority": 2407, "external_id": null}, {"id": 10848230003, "name": "United States Air Force Academy", "priority": 2408, "external_id": null}, {"id": 10848231003, "name": "University of Akron", "priority": 2409, "external_id": null}, {"id": 10848232003, "name": "University of Central Arkansas", "priority": 2410, "external_id": null}, {"id": 10848233003, "name": "University of Kansas", "priority": 2411, "external_id": null}, {"id": 10848234003, "name": "University of Northern Colorado", "priority": 2412, "external_id": null}, {"id": 10848235003, "name": "University of Northern Iowa", "priority": 2413, "external_id": null}, {"id": 10848236003, "name": "University of South Carolina", "priority": 2414, "external_id": null}, {"id": 10848237003, "name": "Tennessee Technological University", "priority": 2415, "external_id": null}, {"id": 10848238003, "name": "University of Texas - El Paso", "priority": 2416, "external_id": null}, {"id": 10848239003, "name": "Texas Tech University", "priority": 2417, "external_id": null}, {"id": 10848240003, "name": "Tulane University", "priority": 2418, "external_id": null}, {"id": 10848241003, "name": "Virginia Military Institute", "priority": 2419, "external_id": null}, {"id": 10848242003, "name": "Western Michigan University", "priority": 2420, "external_id": null}, {"id": 10848243003, "name": "Wilfrid Laurier University", "priority": 2421, "external_id": null}, {"id": 10848244003, "name": "University of San Diego", "priority": 2422, "external_id": null}, {"id": 10848245003, "name": "University of California - San Diego", "priority": 2423, "external_id": null}, {"id": 10848246003, "name": "Brooks Institute of Photography", "priority": 2424, "external_id": null}, {"id": 10848247003, "name": "Acupuncture and Integrative Medicine College - Berkeley", "priority": 2425, "external_id": null}, {"id": 10848248003, "name": "Southern Alberta Institute of Technology", "priority": 2426, "external_id": null}, {"id": 10848249003, "name": "Susquehanna University", "priority": 2427, "external_id": null}, {"id": 10848250003, "name": "University of Texas - Dallas", "priority": 2428, "external_id": null}, {"id": 10848251003, "name": "Thunderbird School of Global Management", "priority": 2429, "external_id": null}, {"id": 10848252003, "name": "Presidio Graduate School", "priority": 2430, "external_id": null}, {"id": 10848253003, "name": "\u00c9cole sup\u00e9rieure de commerce de Dijon", "priority": 2431, "external_id": null}, {"id": 10848254003, "name": "University of California - San Francisco", "priority": 2432, "external_id": null}, {"id": 10848255003, "name": "Hack Reactor", "priority": 2433, "external_id": null}, {"id": 10848256003, "name": "St. Mary''s College of California", "priority": 2434, "external_id": null}, {"id": 10848257003, "name": "New England Law", "priority": 2435, "external_id": null}, {"id": 10848258003, "name": "University of California, Merced", "priority": 2436, "external_id": null}, {"id": 10848259003, "name": "University of California, Hastings College of the Law", "priority": 2437, "external_id": null}, {"id": 10848260003, "name": "V.N. Karazin Kharkiv National University", "priority": 2438, "external_id": null}, {"id": 10848261003, "name": "SIM University (UniSIM)", "priority": 2439, "external_id": null}, {"id": 10848262003, "name": "Singapore Management University (SMU)", "priority": 2440, "external_id": null}, {"id": 10848263003, "name": "Singapore University of Technology and Design (SUTD)", "priority": 2441, "external_id": null}, {"id": 10848264003, "name": "Singapore Institute of Technology (SIT)", "priority": 2442, "external_id": null}, {"id": 10848265003, "name": "Nanyang Polytechnic (NYP)", "priority": 2443, "external_id": null}, {"id": 10848266003, "name": "Ngee Ann Polytechnic (NP)", "priority": 2444, "external_id": null}, {"id": 10848267003, "name": "Republic Polytechnic (RP)", "priority": 2445, "external_id": null}, {"id": 10848268003, "name": "Singapore Polytechnic (SP)", "priority": 2446, "external_id": null}, {"id": 10848269003, "name": "Temasek Polytechnic (TP)", "priority": 2447, "external_id": null}, {"id": 10848270003, "name": "INSEAD", "priority": 2448, "external_id": null}, {"id": 10848271003, "name": "Funda\u00e7\u00e3o Get\u00falio Vargas", "priority": 2449, "external_id": null}, {"id": 10848272003, "name": "Acharya Nagarjuna University", "priority": 2450, "external_id": null}, {"id": 10848273003, "name": "University of California - Santa Barbara", "priority": 2451, "external_id": null}, {"id": 10848274003, "name": "University of California - Irvine", "priority": 2452, "external_id": null}, {"id": 10848275003, "name": "California State University - Long Beach", "priority": 2453, "external_id": null}, {"id": 10848276003, "name": "Robert Morris University Illinois", "priority": 2454, "external_id": null}, {"id": 10848277003, "name": "Harold Washington College - City Colleges of Chicago", "priority": 2455, "external_id": null}, {"id": 10848278003, "name": "Harry S Truman College - City Colleges of Chicago", "priority": 2456, "external_id": null}, {"id": 10848279003, "name": "Kennedy-King College - City Colleges of Chicago", "priority": 2457, "external_id": null}, {"id": 10848280003, "name": "Malcolm X College - City Colleges of Chicago", "priority": 2458, "external_id": null}, {"id": 10848281003, "name": "Olive-Harvey College - City Colleges of Chicago", "priority": 2459, "external_id": null}, {"id": 10848282003, "name": "Richard J Daley College - City Colleges of Chicago", "priority": 2460, "external_id": null}, {"id": 10848283003, "name": "Wilbur Wright College - City Colleges of Chicago", "priority": 2461, "external_id": null}, {"id": 10848284003, "name": "Abertay University", "priority": 2462, "external_id": null}, {"id": 10848285003, "name": "Pontif\u00edcia Universidade Cat\u00f3lica de Minas Gerais", "priority": 2463, "external_id": null}, {"id": 10848286003, "name": "Other", "priority": 2464, "external_id": null}, {"id": 19126655003, "name": "Atlanta College of Arts", "priority": 2465, "external_id": null}]}, "emitted_at": 1664285620787} -{"stream": "custom_fields", "data": {"id": 4680899003, "name": "Degree", "active": true, "field_type": "candidate", "priority": 1, "value_type": "single_select", "private": false, "required": false, "require_approval": false, "trigger_new_version": false, "name_key": "degree", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": [{"id": 10848287003, "name": "High School", "priority": 0, "external_id": null}, {"id": 10848288003, "name": "Associate's Degree", "priority": 1, "external_id": null}, {"id": 10848289003, "name": "Bachelor's Degree", "priority": 2, "external_id": null}, {"id": 10848290003, "name": "Master's Degree", "priority": 3, "external_id": null}, {"id": 10848291003, "name": "Master of Business Administration (M.B.A.)", "priority": 4, "external_id": null}, {"id": 10848292003, "name": "Juris Doctor (J.D.)", "priority": 5, "external_id": null}, {"id": 10848293003, "name": "Doctor of Medicine (M.D.)", "priority": 6, "external_id": null}, {"id": 10848294003, "name": "Doctor of Philosophy (Ph.D.)", "priority": 7, "external_id": null}, {"id": 10848295003, "name": "Engineer's Degree", "priority": 8, "external_id": null}, {"id": 10848296003, "name": "Other", "priority": 9, "external_id": null}]}, "emitted_at": 1664285620804} -{"stream": "custom_fields", "data": {"id": 4680900003, "name": "Discipline", "active": true, "field_type": "candidate", "priority": 2, "value_type": "single_select", "private": false, "required": false, "require_approval": false, "trigger_new_version": false, "name_key": "discipline", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": [{"id": 10848297003, "name": "Accounting", "priority": 0, "external_id": null}, {"id": 10848298003, "name": "African Studies", "priority": 1, "external_id": null}, {"id": 10848299003, "name": "Agriculture", "priority": 2, "external_id": null}, {"id": 10848300003, "name": "Anthropology", "priority": 3, "external_id": null}, {"id": 10848301003, "name": "Applied Health Services", "priority": 4, "external_id": null}, {"id": 10848302003, "name": "Architecture", "priority": 5, "external_id": null}, {"id": 10848303003, "name": "Art", "priority": 6, "external_id": null}, {"id": 10848304003, "name": "Asian Studies", "priority": 7, "external_id": null}, {"id": 10848305003, "name": "Biology", "priority": 8, "external_id": null}, {"id": 10848306003, "name": "Business", "priority": 9, "external_id": null}, {"id": 10848307003, "name": "Business Administration", "priority": 10, "external_id": null}, {"id": 10848308003, "name": "Chemistry", "priority": 11, "external_id": null}, {"id": 10848309003, "name": "Classical Languages", "priority": 12, "external_id": null}, {"id": 10848310003, "name": "Communications & Film", "priority": 13, "external_id": null}, {"id": 10848311003, "name": "Computer Science", "priority": 14, "external_id": null}, {"id": 10848312003, "name": "Dentistry", "priority": 15, "external_id": null}, {"id": 10848313003, "name": "Developing Nations", "priority": 16, "external_id": null}, {"id": 10848314003, "name": "Discipline Unknown", "priority": 17, "external_id": null}, {"id": 10848315003, "name": "Earth Sciences", "priority": 18, "external_id": null}, {"id": 10848316003, "name": "Economics", "priority": 19, "external_id": null}, {"id": 10848317003, "name": "Education", "priority": 20, "external_id": null}, {"id": 10848318003, "name": "Electronics", "priority": 21, "external_id": null}, {"id": 10848319003, "name": "Engineering", "priority": 22, "external_id": null}, {"id": 10848320003, "name": "English Studies", "priority": 23, "external_id": null}, {"id": 10848321003, "name": "Environmental Studies", "priority": 24, "external_id": null}, {"id": 10848322003, "name": "European Studies", "priority": 25, "external_id": null}, {"id": 10848323003, "name": "Fashion", "priority": 26, "external_id": null}, {"id": 10848324003, "name": "Finance", "priority": 27, "external_id": null}, {"id": 10848325003, "name": "Fine Arts", "priority": 28, "external_id": null}, {"id": 10848326003, "name": "General Studies", "priority": 29, "external_id": null}, {"id": 10848327003, "name": "Health Services", "priority": 30, "external_id": null}, {"id": 10848328003, "name": "History", "priority": 31, "external_id": null}, {"id": 10848329003, "name": "Human Resources Management", "priority": 32, "external_id": null}, {"id": 10848330003, "name": "Humanities", "priority": 33, "external_id": null}, {"id": 10848331003, "name": "Industrial Arts & Carpentry", "priority": 34, "external_id": null}, {"id": 10848332003, "name": "Information Systems", "priority": 35, "external_id": null}, {"id": 10848333003, "name": "International Relations", "priority": 36, "external_id": null}, {"id": 10848334003, "name": "Journalism", "priority": 37, "external_id": null}, {"id": 10848335003, "name": "Languages", "priority": 38, "external_id": null}, {"id": 10848336003, "name": "Latin American Studies", "priority": 39, "external_id": null}, {"id": 10848337003, "name": "Law", "priority": 40, "external_id": null}, {"id": 10848338003, "name": "Linguistics", "priority": 41, "external_id": null}, {"id": 10848339003, "name": "Manufacturing & Mechanics", "priority": 42, "external_id": null}, {"id": 10848340003, "name": "Mathematics", "priority": 43, "external_id": null}, {"id": 10848341003, "name": "Medicine", "priority": 44, "external_id": null}, {"id": 10848342003, "name": "Middle Eastern Studies", "priority": 45, "external_id": null}, {"id": 10848343003, "name": "Naval Science", "priority": 46, "external_id": null}, {"id": 10848344003, "name": "North American Studies", "priority": 47, "external_id": null}, {"id": 10848345003, "name": "Nuclear Technics", "priority": 48, "external_id": null}, {"id": 10848346003, "name": "Operations Research & Strategy", "priority": 49, "external_id": null}, {"id": 10848347003, "name": "Organizational Theory", "priority": 50, "external_id": null}, {"id": 10848348003, "name": "Philosophy", "priority": 51, "external_id": null}, {"id": 10848349003, "name": "Physical Education", "priority": 52, "external_id": null}, {"id": 10848350003, "name": "Physical Sciences", "priority": 53, "external_id": null}, {"id": 10848351003, "name": "Physics", "priority": 54, "external_id": null}, {"id": 10848352003, "name": "Political Science", "priority": 55, "external_id": null}, {"id": 10848353003, "name": "Psychology", "priority": 56, "external_id": null}, {"id": 10848354003, "name": "Public Policy", "priority": 57, "external_id": null}, {"id": 10848355003, "name": "Public Service", "priority": 58, "external_id": null}, {"id": 10848356003, "name": "Religious Studies", "priority": 59, "external_id": null}, {"id": 10848357003, "name": "Russian & Soviet Studies", "priority": 60, "external_id": null}, {"id": 10848358003, "name": "Scandinavian Studies", "priority": 61, "external_id": null}, {"id": 10848359003, "name": "Science", "priority": 62, "external_id": null}, {"id": 10848360003, "name": "Slavic Studies", "priority": 63, "external_id": null}, {"id": 10848361003, "name": "Social Science", "priority": 64, "external_id": null}, {"id": 10848362003, "name": "Social Sciences", "priority": 65, "external_id": null}, {"id": 10848363003, "name": "Sociology", "priority": 66, "external_id": null}, {"id": 10848364003, "name": "Speech", "priority": 67, "external_id": null}, {"id": 10848365003, "name": "Statistics & Decision Theory", "priority": 68, "external_id": null}, {"id": 10848366003, "name": "Urban Studies", "priority": 69, "external_id": null}, {"id": 10848367003, "name": "Veterinary Medicine", "priority": 70, "external_id": null}, {"id": 10848368003, "name": "Other", "priority": 71, "external_id": null}]}, "emitted_at": 1664285620804} -{"stream": "custom_fields", "data": {"id": 4680901003, "name": "Employment Type", "active": true, "field_type": "job", "priority": 0, "value_type": "single_select", "private": false, "required": false, "require_approval": true, "trigger_new_version": false, "name_key": "employment_type", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": [{"id": 10845796003, "name": "Full-time", "priority": 0, "external_id": null}, {"id": 10845797003, "name": "Part-time", "priority": 1, "external_id": null}, {"id": 10845798003, "name": "Intern", "priority": 2, "external_id": null}, {"id": 10845799003, "name": "Contract", "priority": 3, "external_id": null}, {"id": 10845800003, "name": "Temporary", "priority": 4, "external_id": null}]}, "emitted_at": 1664285620805} -{"stream": "custom_fields", "data": {"id": 4680902003, "name": "Start Date", "active": true, "field_type": "offer", "priority": 0, "value_type": "date", "private": true, "required": false, "require_approval": false, "trigger_new_version": false, "name_key": "start_date", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": []}, "emitted_at": 1664285620805} -{"stream": "custom_fields", "data": {"id": 4680903003, "name": "Employment Type", "active": true, "field_type": "offer", "priority": 1, "value_type": "single_select", "private": false, "required": false, "require_approval": false, "trigger_new_version": true, "name_key": "employment_type", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": [{"id": 10845801003, "name": "Full-time", "priority": 0, "external_id": null}, {"id": 10845802003, "name": "Part-time", "priority": 1, "external_id": null}, {"id": 10845803003, "name": "Intern", "priority": 2, "external_id": null}, {"id": 10845804003, "name": "Contract", "priority": 3, "external_id": null}, {"id": 10845805003, "name": "Temporary", "priority": 4, "external_id": null}]}, "emitted_at": 1664285620805} -{"stream": "custom_fields", "data": {"id": 4680904003, "name": "Offer Documents", "active": true, "field_type": "offer", "priority": 2, "value_type": "short_text", "private": true, "required": false, "require_approval": false, "trigger_new_version": true, "name_key": "offer_documents", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": []}, "emitted_at": 1664285620805} -{"stream": "custom_fields", "data": {"id": 4680905003, "name": "Relationship", "active": true, "field_type": "referral_question", "priority": 0, "value_type": "single_select", "private": false, "required": false, "require_approval": false, "trigger_new_version": false, "name_key": "relationship", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": [{"id": 10845806003, "name": "Coworker", "priority": 0, "external_id": null}, {"id": 10845807003, "name": "School", "priority": 1, "external_id": null}, {"id": 10845808003, "name": "Manager", "priority": 2, "external_id": null}, {"id": 10845809003, "name": "Reported", "priority": 3, "external_id": null}, {"id": 10845810003, "name": "Friend", "priority": 4, "external_id": null}, {"id": 10845811003, "name": "Do not know", "priority": 5, "external_id": null}]}, "emitted_at": 1664285620805} -{"stream": "custom_fields", "data": {"id": 4680906003, "name": "Work History", "active": true, "field_type": "referral_question", "priority": 1, "value_type": "single_select", "private": false, "required": false, "require_approval": false, "trigger_new_version": false, "name_key": "work_history", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": [{"id": 10845812003, "name": "0-1", "priority": 0, "external_id": null}, {"id": 10845813003, "name": "2-5", "priority": 1, "external_id": null}, {"id": 10845814003, "name": "5+", "priority": 2, "external_id": null}]}, "emitted_at": 1664285620806} -{"stream": "custom_fields", "data": {"id": 4680907003, "name": "Rating", "active": true, "field_type": "referral_question", "priority": 2, "value_type": "single_select", "private": false, "required": false, "require_approval": false, "trigger_new_version": false, "name_key": "rating", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": [{"id": 10845815003, "name": "Superstar", "priority": 0, "external_id": null}, {"id": 10845816003, "name": "Top 5%", "priority": 1, "external_id": null}, {"id": 10845817003, "name": "Top 10%", "priority": 2, "external_id": null}, {"id": 10845818003, "name": "Top 25%", "priority": 3, "external_id": null}, {"id": 10845819003, "name": "Top 50%", "priority": 4, "external_id": null}]}, "emitted_at": 1664285620806} -{"stream": "custom_fields", "data": {"id": 4680908003, "name": "When we reach out", "active": true, "field_type": "referral_question", "priority": 3, "value_type": "single_select", "private": false, "required": false, "require_approval": false, "trigger_new_version": false, "name_key": "when_we_reach_out", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": [{"id": 10845820003, "name": "You may mention me", "priority": 0, "external_id": null}, {"id": 10845821003, "name": "I wish to remain anonymous", "priority": 1, "external_id": null}]}, "emitted_at": 1664285620806} -{"stream": "custom_fields", "data": {"id": 4680909003, "name": "They know they're being referred", "active": true, "field_type": "referral_question", "priority": 4, "value_type": "yes_no", "private": false, "required": false, "require_approval": false, "trigger_new_version": false, "name_key": "they_know_they_re_being_referred", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": []}, "emitted_at": 1664285620806} -{"stream": "custom_fields", "data": {"id": 4680910003, "name": "Referral Notes", "active": true, "field_type": "referral_question", "priority": 5, "value_type": "long_text", "private": false, "required": false, "require_approval": false, "trigger_new_version": false, "name_key": "referral_notes", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": []}, "emitted_at": 1664285620806} -{"stream": "custom_fields", "data": {"id": 7431124003, "name": "Test User", "active": true, "field_type": "agency_question", "priority": 0, "value_type": "yes_no", "private": false, "required": false, "require_approval": false, "trigger_new_version": false, "name_key": "test_user", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": []}, "emitted_at": 1664285620806} -{"stream": "custom_fields", "data": {"id": 7431125003, "name": "Test User", "active": true, "field_type": "agency_question", "priority": 1, "value_type": "short_text", "private": false, "required": true, "require_approval": false, "trigger_new_version": false, "name_key": "test_user_agency_question_1633884465.559642", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": []}, "emitted_at": 1664285620806} -{"stream": "custom_fields", "data": {"id": 7431126003, "name": "Test User", "active": true, "field_type": "referral_question", "priority": 6, "value_type": "yes_no", "private": false, "required": false, "require_approval": false, "trigger_new_version": false, "name_key": "test_user", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": []}, "emitted_at": 1664285620807} -{"stream": "demographics_question_sets", "data": {"title": "Test Question Set 1", "id": 4000197003, "description": "

    Test Question Set 1 description

    ", "active": true}, "emitted_at": 1664285621607} -{"stream": "demographics_question_sets", "data": {"title": "Test Question Set 2", "id": 4000198003, "description": "

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

    ", "active": true}, "emitted_at": 1664285621610} -{"stream": "demographics_question_sets", "data": {"title": "U.S. Standard Demographic Questions", "id": 4002702003, "description": "We invite applicants to share their demographic background. If you choose to complete this survey, your responses may be used to identify areas of improvement in our hiring process.", "active": true}, "emitted_at": 1664285621610} -{"stream": "demographics_questions", "data": {"translations": [{"name": "q1", "language": "en"}], "required": false, "name": "q1", "id": 4000714003, "demographic_question_set_id": 4000197003, "answer_type": "multi_value_single_select", "active": true}, "emitted_at": 1664285622528} -{"stream": "demographics_questions", "data": {"translations": [{"name": "q2", "language": "en"}], "required": false, "name": "q2", "id": 4000715003, "demographic_question_set_id": 4000197003, "answer_type": "multi_value_multi_select", "active": true}, "emitted_at": 1664285622532} -{"stream": "demographics_questions", "data": {"translations": [{"name": "question1", "language": "en"}], "required": false, "name": "question1", "id": 4000716003, "demographic_question_set_id": 4000198003, "answer_type": "multi_value_multi_select", "active": true}, "emitted_at": 1664285622532} -{"stream": "demographics_questions", "data": {"translations": [{"name": "question2", "language": "en"}], "required": true, "name": "question2", "id": 4000717003, "demographic_question_set_id": 4000198003, "answer_type": "multi_value_single_select", "active": true}, "emitted_at": 1664285622533} -{"stream": "demographics_questions", "data": {"translations": [{"name": "Are you a veteran or active member of the United States Armed Forces?", "language": "en"}], "required": false, "name": "Are you a veteran or active member of the United States Armed Forces?", "id": 4015594003, "demographic_question_set_id": 4002702003, "answer_type": "multi_value_single_select", "active": true}, "emitted_at": 1664285622533} -{"stream": "demographics_questions", "data": {"translations": [{"name": "Do you have a disability or chronic condition (physical, visual, auditory, cognitive, mental, emotional, or other) that substantially limits one or more of your major life activities, including mobility, communication (seeing, hearing, speaking), and learning?", "language": "en"}], "required": false, "name": "Do you have a disability or chronic condition (physical, visual, auditory, cognitive, mental, emotional, or other) that substantially limits one or more of your major life activities, including mobility, communication (seeing, hearing, speaking), and learning?", "id": 4015596003, "demographic_question_set_id": 4002702003, "answer_type": "multi_value_single_select", "active": true}, "emitted_at": 1664285622534} -{"stream": "demographics_questions", "data": {"translations": [{"name": "Do you identify as transgender?", "language": "en"}], "required": false, "name": "Do you identify as transgender?", "id": 4015598003, "demographic_question_set_id": 4002702003, "answer_type": "multi_value_single_select", "active": true}, "emitted_at": 1664285622535} -{"stream": "demographics_questions", "data": {"translations": [{"name": "How would you describe your sexual orientation? (mark all that apply)", "language": "en"}], "required": false, "name": "How would you describe your sexual orientation? (mark all that apply)", "id": 4015599003, "demographic_question_set_id": 4002702003, "answer_type": "multi_value_multi_select", "active": true}, "emitted_at": 1664285622535} -{"stream": "demographics_questions", "data": {"translations": [{"name": "How would you describe your racial/ethnic background? (mark all that apply)", "language": "en"}], "required": false, "name": "How would you describe your racial/ethnic background? (mark all that apply)", "id": 4015601003, "demographic_question_set_id": 4002702003, "answer_type": "multi_value_multi_select", "active": true}, "emitted_at": 1664285622536} -{"stream": "demographics_questions", "data": {"translations": [{"name": "How would you describe your gender identity? (mark all that apply)", "language": "en"}], "required": false, "name": "How would you describe your gender identity? (mark all that apply)", "id": 4015603003, "demographic_question_set_id": 4002702003, "answer_type": "multi_value_multi_select", "active": true}, "emitted_at": 1664285622536} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "a1", "language": "en"}], "name": "a1", "id": 4004258003, "free_form": false, "demographic_question_id": 4000714003, "active": true}, "emitted_at": 1664285623356} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "a2", "language": "en"}], "name": "a2", "id": 4004259003, "free_form": false, "demographic_question_id": 4000715003, "active": true}, "emitted_at": 1664285623359} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "a3", "language": "en"}], "name": "a3", "id": 4004260003, "free_form": false, "demographic_question_id": 4000715003, "active": true}, "emitted_at": 1664285623360} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "s1", "language": "en"}], "name": "s1", "id": 4004261003, "free_form": true, "demographic_question_id": 4000715003, "active": true}, "emitted_at": 1664285623361} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "answer1", "language": "en"}], "name": "answer1", "id": 4004262003, "free_form": false, "demographic_question_id": 4000716003, "active": true}, "emitted_at": 1664285623361} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "answer-self1", "language": "en"}], "name": "answer-self1", "id": 4004263003, "free_form": true, "demographic_question_id": 4000716003, "active": true}, "emitted_at": 1664285623362} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "answer2", "language": "en"}], "name": "answer2", "id": 4004264003, "free_form": false, "demographic_question_id": 4000716003, "active": true}, "emitted_at": 1664285623362} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "answer1", "language": "en"}], "name": "answer1", "id": 4004265003, "free_form": false, "demographic_question_id": 4000717003, "active": true}, "emitted_at": 1664285623363} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "I don't wish to answer", "language": "en"}], "name": "I don't wish to answer", "id": 4004266003, "free_form": false, "demographic_question_id": 4000717003, "active": true}, "emitted_at": 1664285623363} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "answer2", "language": "en"}], "name": "answer2", "id": 4004267003, "free_form": false, "demographic_question_id": 4000717003, "active": true}, "emitted_at": 1664285623364} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "I don't wish to answer", "language": "en"}], "name": "I don't wish to answer", "id": 4093930003, "free_form": false, "demographic_question_id": 4015594003, "active": true}, "emitted_at": 1664285623364} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "I prefer to self-describe", "language": "en"}], "name": "I prefer to self-describe", "id": 4093931003, "free_form": true, "demographic_question_id": 4015594003, "active": true}, "emitted_at": 1664285623364} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "No, I am not a veteran or active member", "language": "en"}], "name": "No, I am not a veteran or active member", "id": 4093932003, "free_form": false, "demographic_question_id": 4015594003, "active": true}, "emitted_at": 1664285623365} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Yes, I am a veteran or active member", "language": "en"}], "name": "Yes, I am a veteran or active member", "id": 4093934003, "free_form": false, "demographic_question_id": 4015594003, "active": true}, "emitted_at": 1664285623366} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "I don't wish to answer", "language": "en"}], "name": "I don't wish to answer", "id": 4093937003, "free_form": false, "demographic_question_id": 4015596003, "active": true}, "emitted_at": 1664285623366} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "I prefer to self-describe", "language": "en"}], "name": "I prefer to self-describe", "id": 4093939003, "free_form": true, "demographic_question_id": 4015596003, "active": true}, "emitted_at": 1664285623366} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "No", "language": "en"}], "name": "No", "id": 4093940003, "free_form": false, "demographic_question_id": 4015596003, "active": true}, "emitted_at": 1664285623367} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Yes", "language": "en"}], "name": "Yes", "id": 4093941003, "free_form": false, "demographic_question_id": 4015596003, "active": true}, "emitted_at": 1664285623367} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "I don't wish to answer", "language": "en"}], "name": "I don't wish to answer", "id": 4093944003, "free_form": false, "demographic_question_id": 4015598003, "active": true}, "emitted_at": 1664285623368} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "I prefer to self-describe", "language": "en"}], "name": "I prefer to self-describe", "id": 4093946003, "free_form": true, "demographic_question_id": 4015598003, "active": true}, "emitted_at": 1664285623368} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "No", "language": "en"}], "name": "No", "id": 4093948003, "free_form": false, "demographic_question_id": 4015598003, "active": true}, "emitted_at": 1664285623369} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Yes", "language": "en"}], "name": "Yes", "id": 4093950003, "free_form": false, "demographic_question_id": 4015598003, "active": true}, "emitted_at": 1664285623369} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "I don't wish to answer", "language": "en"}], "name": "I don't wish to answer", "id": 4093953003, "free_form": false, "demographic_question_id": 4015599003, "active": true}, "emitted_at": 1664285623370} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "I prefer to self-describe", "language": "en"}], "name": "I prefer to self-describe", "id": 4093955003, "free_form": true, "demographic_question_id": 4015599003, "active": true}, "emitted_at": 1664285623370} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Queer", "language": "en"}], "name": "Queer", "id": 4093956003, "free_form": false, "demographic_question_id": 4015599003, "active": true}, "emitted_at": 1664285623371} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Lesbian", "language": "en"}], "name": "Lesbian", "id": 4093957003, "free_form": false, "demographic_question_id": 4015599003, "active": true}, "emitted_at": 1664285623371} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Heterosexual", "language": "en"}], "name": "Heterosexual", "id": 4093959003, "free_form": false, "demographic_question_id": 4015599003, "active": true}, "emitted_at": 1664285623372} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Gay", "language": "en"}], "name": "Gay", "id": 4093961003, "free_form": false, "demographic_question_id": 4015599003, "active": true}, "emitted_at": 1664285623372} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Bisexual and/or pansexual", "language": "en"}], "name": "Bisexual and/or pansexual", "id": 4093963003, "free_form": false, "demographic_question_id": 4015599003, "active": true}, "emitted_at": 1664285623373} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Asexual", "language": "en"}], "name": "Asexual", "id": 4093965003, "free_form": false, "demographic_question_id": 4015599003, "active": true}, "emitted_at": 1664285623373} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "I don't wish to answer", "language": "en"}], "name": "I don't wish to answer", "id": 4093971003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285623374} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "I prefer to self-describe", "language": "en"}], "name": "I prefer to self-describe", "id": 4093973003, "free_form": true, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285623374} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "White or European", "language": "en"}], "name": "White or European", "id": 4093975003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285623374} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Southeast Asian", "language": "en"}], "name": "Southeast Asian", "id": 4093976003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285623375} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "South Asian", "language": "en"}], "name": "South Asian", "id": 4093977003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285623375} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Native Hawaiian or Pacific Islander", "language": "en"}], "name": "Native Hawaiian or Pacific Islander", "id": 4093979003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285623375} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Middle Eastern or North African", "language": "en"}], "name": "Middle Eastern or North African", "id": 4093981003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285623376} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Indigenous, American Indian or Alaska Native", "language": "en"}], "name": "Indigenous, American Indian or Alaska Native", "id": 4093983003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285623376} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Hispanic, Latinx or of Spanish Origin", "language": "en"}], "name": "Hispanic, Latinx or of Spanish Origin", "id": 4093985003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285623376} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "East Asian", "language": "en"}], "name": "East Asian", "id": 4093986003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285623377} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Black or of African descent", "language": "en"}], "name": "Black or of African descent", "id": 4093988003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285623377} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "I don't wish to answer", "language": "en"}], "name": "I don't wish to answer", "id": 4093989003, "free_form": false, "demographic_question_id": 4015603003, "active": true}, "emitted_at": 1664285623377} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "I prefer to self-describe", "language": "en"}], "name": "I prefer to self-describe", "id": 4093990003, "free_form": true, "demographic_question_id": 4015603003, "active": true}, "emitted_at": 1664285623377} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Woman", "language": "en"}], "name": "Woman", "id": 4093991003, "free_form": false, "demographic_question_id": 4015603003, "active": true}, "emitted_at": 1664285623378} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Non-binary", "language": "en"}], "name": "Non-binary", "id": 4093993003, "free_form": false, "demographic_question_id": 4015603003, "active": true}, "emitted_at": 1664285623378} -{"stream": "demographics_answer_options", "data": {"translations": [{"name": "Man", "language": "en"}], "name": "Man", "id": 4093995003, "free_form": false, "demographic_question_id": 4015603003, "active": true}, "emitted_at": 1664285623378} -{"stream": "demographics_answers", "data": {"updated_at": "2021-11-03T19:56:07.248Z", "id": 9308815003, "free_form_text": null, "demographic_question_id": 4000716003, "demographic_answer_option_id": 4004262003, "created_at": "2021-11-03T19:56:07.248Z", "application_id": 47459993003}, "emitted_at": 1664285624166} -{"stream": "demographics_answers", "data": {"updated_at": "2021-11-03T19:56:07.252Z", "id": 9308816003, "free_form_text": "custom answer", "demographic_question_id": 4000716003, "demographic_answer_option_id": 4004263003, "created_at": "2021-11-03T19:56:07.252Z", "application_id": 47459993003}, "emitted_at": 1664285624170} -{"stream": "demographics_answers", "data": {"updated_at": "2021-11-03T19:56:07.259Z", "id": 9308817003, "free_form_text": null, "demographic_question_id": 4000717003, "demographic_answer_option_id": 4004266003, "created_at": "2021-11-03T19:56:07.259Z", "application_id": 47459993003}, "emitted_at": 1664285624170} -{"stream": "applications_demographics_answers", "data": {"updated_at": "2021-11-03T19:56:07.248Z", "id": 9308815003, "free_form_text": null, "demographic_question_id": 4000716003, "demographic_answer_option_id": 4004262003, "created_at": "2021-11-03T19:56:07.248Z", "application_id": 47459993003}, "emitted_at": 1664285626543} -{"stream": "applications_demographics_answers", "data": {"updated_at": "2021-11-03T19:56:07.252Z", "id": 9308816003, "free_form_text": "custom answer", "demographic_question_id": 4000716003, "demographic_answer_option_id": 4004263003, "created_at": "2021-11-03T19:56:07.252Z", "application_id": 47459993003}, "emitted_at": 1664285626546} -{"stream": "applications_demographics_answers", "data": {"updated_at": "2021-11-03T19:56:07.259Z", "id": 9308817003, "free_form_text": null, "demographic_question_id": 4000717003, "demographic_answer_option_id": 4004266003, "created_at": "2021-11-03T19:56:07.259Z", "application_id": 47459993003}, "emitted_at": 1664285626547} -{"stream": "demographics_question_sets_questions", "data": {"translations": [{"name": "q1", "language": "en"}], "required": false, "name": "q1", "id": 4000714003, "demographic_question_set_id": 4000197003, "answer_type": "multi_value_single_select", "active": true}, "emitted_at": 1664285627885} -{"stream": "demographics_question_sets_questions", "data": {"translations": [{"name": "q2", "language": "en"}], "required": false, "name": "q2", "id": 4000715003, "demographic_question_set_id": 4000197003, "answer_type": "multi_value_multi_select", "active": true}, "emitted_at": 1664285627888} -{"stream": "demographics_question_sets_questions", "data": {"translations": [{"name": "question1", "language": "en"}], "required": false, "name": "question1", "id": 4000716003, "demographic_question_set_id": 4000198003, "answer_type": "multi_value_multi_select", "active": true}, "emitted_at": 1664285628366} -{"stream": "demographics_question_sets_questions", "data": {"translations": [{"name": "question2", "language": "en"}], "required": true, "name": "question2", "id": 4000717003, "demographic_question_set_id": 4000198003, "answer_type": "multi_value_single_select", "active": true}, "emitted_at": 1664285628367} -{"stream": "demographics_question_sets_questions", "data": {"translations": [{"name": "Are you a veteran or active member of the United States Armed Forces?", "language": "en"}], "required": false, "name": "Are you a veteran or active member of the United States Armed Forces?", "id": 4015594003, "demographic_question_set_id": 4002702003, "answer_type": "multi_value_single_select", "active": true}, "emitted_at": 1664285628774} -{"stream": "demographics_question_sets_questions", "data": {"translations": [{"name": "Do you have a disability or chronic condition (physical, visual, auditory, cognitive, mental, emotional, or other) that substantially limits one or more of your major life activities, including mobility, communication (seeing, hearing, speaking), and learning?", "language": "en"}], "required": false, "name": "Do you have a disability or chronic condition (physical, visual, auditory, cognitive, mental, emotional, or other) that substantially limits one or more of your major life activities, including mobility, communication (seeing, hearing, speaking), and learning?", "id": 4015596003, "demographic_question_set_id": 4002702003, "answer_type": "multi_value_single_select", "active": true}, "emitted_at": 1664285628774} -{"stream": "demographics_question_sets_questions", "data": {"translations": [{"name": "Do you identify as transgender?", "language": "en"}], "required": false, "name": "Do you identify as transgender?", "id": 4015598003, "demographic_question_set_id": 4002702003, "answer_type": "multi_value_single_select", "active": true}, "emitted_at": 1664285628775} -{"stream": "demographics_question_sets_questions", "data": {"translations": [{"name": "How would you describe your sexual orientation? (mark all that apply)", "language": "en"}], "required": false, "name": "How would you describe your sexual orientation? (mark all that apply)", "id": 4015599003, "demographic_question_set_id": 4002702003, "answer_type": "multi_value_multi_select", "active": true}, "emitted_at": 1664285628776} -{"stream": "demographics_question_sets_questions", "data": {"translations": [{"name": "How would you describe your racial/ethnic background? (mark all that apply)", "language": "en"}], "required": false, "name": "How would you describe your racial/ethnic background? (mark all that apply)", "id": 4015601003, "demographic_question_set_id": 4002702003, "answer_type": "multi_value_multi_select", "active": true}, "emitted_at": 1664285628776} -{"stream": "demographics_question_sets_questions", "data": {"translations": [{"name": "How would you describe your gender identity? (mark all that apply)", "language": "en"}], "required": false, "name": "How would you describe your gender identity? (mark all that apply)", "id": 4015603003, "demographic_question_set_id": 4002702003, "answer_type": "multi_value_multi_select", "active": true}, "emitted_at": 1664285628777} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "a1", "language": "en"}], "name": "a1", "id": 4004258003, "free_form": false, "demographic_question_id": 4000714003, "active": true}, "emitted_at": 1664285630146} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "a2", "language": "en"}], "name": "a2", "id": 4004259003, "free_form": false, "demographic_question_id": 4000715003, "active": true}, "emitted_at": 1664285630475} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "a3", "language": "en"}], "name": "a3", "id": 4004260003, "free_form": false, "demographic_question_id": 4000715003, "active": true}, "emitted_at": 1664285630476} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "s1", "language": "en"}], "name": "s1", "id": 4004261003, "free_form": true, "demographic_question_id": 4000715003, "active": true}, "emitted_at": 1664285630477} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "answer1", "language": "en"}], "name": "answer1", "id": 4004262003, "free_form": false, "demographic_question_id": 4000716003, "active": true}, "emitted_at": 1664285630936} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "answer-self1", "language": "en"}], "name": "answer-self1", "id": 4004263003, "free_form": true, "demographic_question_id": 4000716003, "active": true}, "emitted_at": 1664285630937} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "answer2", "language": "en"}], "name": "answer2", "id": 4004264003, "free_form": false, "demographic_question_id": 4000716003, "active": true}, "emitted_at": 1664285630937} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "answer1", "language": "en"}], "name": "answer1", "id": 4004265003, "free_form": false, "demographic_question_id": 4000717003, "active": true}, "emitted_at": 1664285631274} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "I don't wish to answer", "language": "en"}], "name": "I don't wish to answer", "id": 4004266003, "free_form": false, "demographic_question_id": 4000717003, "active": true}, "emitted_at": 1664285631274} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "answer2", "language": "en"}], "name": "answer2", "id": 4004267003, "free_form": false, "demographic_question_id": 4000717003, "active": true}, "emitted_at": 1664285631274} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "I don't wish to answer", "language": "en"}], "name": "I don't wish to answer", "id": 4093930003, "free_form": false, "demographic_question_id": 4015594003, "active": true}, "emitted_at": 1664285631560} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "I prefer to self-describe", "language": "en"}], "name": "I prefer to self-describe", "id": 4093931003, "free_form": true, "demographic_question_id": 4015594003, "active": true}, "emitted_at": 1664285631560} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "No, I am not a veteran or active member", "language": "en"}], "name": "No, I am not a veteran or active member", "id": 4093932003, "free_form": false, "demographic_question_id": 4015594003, "active": true}, "emitted_at": 1664285631560} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Yes, I am a veteran or active member", "language": "en"}], "name": "Yes, I am a veteran or active member", "id": 4093934003, "free_form": false, "demographic_question_id": 4015594003, "active": true}, "emitted_at": 1664285631560} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "I don't wish to answer", "language": "en"}], "name": "I don't wish to answer", "id": 4093937003, "free_form": false, "demographic_question_id": 4015596003, "active": true}, "emitted_at": 1664285631954} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "I prefer to self-describe", "language": "en"}], "name": "I prefer to self-describe", "id": 4093939003, "free_form": true, "demographic_question_id": 4015596003, "active": true}, "emitted_at": 1664285631954} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "No", "language": "en"}], "name": "No", "id": 4093940003, "free_form": false, "demographic_question_id": 4015596003, "active": true}, "emitted_at": 1664285631955} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Yes", "language": "en"}], "name": "Yes", "id": 4093941003, "free_form": false, "demographic_question_id": 4015596003, "active": true}, "emitted_at": 1664285631955} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "I don't wish to answer", "language": "en"}], "name": "I don't wish to answer", "id": 4093944003, "free_form": false, "demographic_question_id": 4015598003, "active": true}, "emitted_at": 1664285632355} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "I prefer to self-describe", "language": "en"}], "name": "I prefer to self-describe", "id": 4093946003, "free_form": true, "demographic_question_id": 4015598003, "active": true}, "emitted_at": 1664285632356} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "No", "language": "en"}], "name": "No", "id": 4093948003, "free_form": false, "demographic_question_id": 4015598003, "active": true}, "emitted_at": 1664285632356} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Yes", "language": "en"}], "name": "Yes", "id": 4093950003, "free_form": false, "demographic_question_id": 4015598003, "active": true}, "emitted_at": 1664285632356} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "I don't wish to answer", "language": "en"}], "name": "I don't wish to answer", "id": 4093953003, "free_form": false, "demographic_question_id": 4015599003, "active": true}, "emitted_at": 1664285632770} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "I prefer to self-describe", "language": "en"}], "name": "I prefer to self-describe", "id": 4093955003, "free_form": true, "demographic_question_id": 4015599003, "active": true}, "emitted_at": 1664285632771} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Queer", "language": "en"}], "name": "Queer", "id": 4093956003, "free_form": false, "demographic_question_id": 4015599003, "active": true}, "emitted_at": 1664285632772} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Lesbian", "language": "en"}], "name": "Lesbian", "id": 4093957003, "free_form": false, "demographic_question_id": 4015599003, "active": true}, "emitted_at": 1664285632772} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Heterosexual", "language": "en"}], "name": "Heterosexual", "id": 4093959003, "free_form": false, "demographic_question_id": 4015599003, "active": true}, "emitted_at": 1664285632773} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Gay", "language": "en"}], "name": "Gay", "id": 4093961003, "free_form": false, "demographic_question_id": 4015599003, "active": true}, "emitted_at": 1664285632773} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Bisexual and/or pansexual", "language": "en"}], "name": "Bisexual and/or pansexual", "id": 4093963003, "free_form": false, "demographic_question_id": 4015599003, "active": true}, "emitted_at": 1664285632774} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Asexual", "language": "en"}], "name": "Asexual", "id": 4093965003, "free_form": false, "demographic_question_id": 4015599003, "active": true}, "emitted_at": 1664285632775} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "I don't wish to answer", "language": "en"}], "name": "I don't wish to answer", "id": 4093971003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285633134} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "I prefer to self-describe", "language": "en"}], "name": "I prefer to self-describe", "id": 4093973003, "free_form": true, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285633134} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "White or European", "language": "en"}], "name": "White or European", "id": 4093975003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285633135} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Southeast Asian", "language": "en"}], "name": "Southeast Asian", "id": 4093976003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285633135} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "South Asian", "language": "en"}], "name": "South Asian", "id": 4093977003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285633136} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Native Hawaiian or Pacific Islander", "language": "en"}], "name": "Native Hawaiian or Pacific Islander", "id": 4093979003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285633136} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Middle Eastern or North African", "language": "en"}], "name": "Middle Eastern or North African", "id": 4093981003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285633136} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Indigenous, American Indian or Alaska Native", "language": "en"}], "name": "Indigenous, American Indian or Alaska Native", "id": 4093983003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285633137} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Hispanic, Latinx or of Spanish Origin", "language": "en"}], "name": "Hispanic, Latinx or of Spanish Origin", "id": 4093985003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285633137} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "East Asian", "language": "en"}], "name": "East Asian", "id": 4093986003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285633138} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Black or of African descent", "language": "en"}], "name": "Black or of African descent", "id": 4093988003, "free_form": false, "demographic_question_id": 4015601003, "active": true}, "emitted_at": 1664285633138} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "I don't wish to answer", "language": "en"}], "name": "I don't wish to answer", "id": 4093989003, "free_form": false, "demographic_question_id": 4015603003, "active": true}, "emitted_at": 1664285633460} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "I prefer to self-describe", "language": "en"}], "name": "I prefer to self-describe", "id": 4093990003, "free_form": true, "demographic_question_id": 4015603003, "active": true}, "emitted_at": 1664285633460} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Woman", "language": "en"}], "name": "Woman", "id": 4093991003, "free_form": false, "demographic_question_id": 4015603003, "active": true}, "emitted_at": 1664285633461} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Non-binary", "language": "en"}], "name": "Non-binary", "id": 4093993003, "free_form": false, "demographic_question_id": 4015603003, "active": true}, "emitted_at": 1664285633461} -{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "Man", "language": "en"}], "name": "Man", "id": 4093995003, "free_form": false, "demographic_question_id": 4015603003, "active": true}, "emitted_at": 1664285633462} -{"stream": "interviews", "data": {"id": 40387397003, "application_id": 44937562003, "external_event_id": "123456789", "start": {"date_time": "2021-12-12T13:15:00.000Z"}, "end": {"date_time": "2021-12-12T14:15:00.000Z"}, "location": null, "video_conferencing_url": null, "status": "awaiting_feedback", "created_at": "2021-10-10T16:21:44.107Z", "updated_at": "2021-12-12T15:15:02.894Z", "interview": {"id": 5628615003, "name": "Preliminary Screening Call"}, "organizer": {"id": 4218085003, "first_name": "Greenhouse", "last_name": "Admin", "name": "Greenhouse Admin", "employee_id": null}, "interviewers": [{"id": 4218085003, "employee_id": null, "name": "Greenhouse Admin", "email": "scrubbed_email_vq8-rm4513etm7xxd9d1qq@example.com", "response_status": "accepted", "scorecard_id": null}]}, "emitted_at": 1664285634418} -{"stream": "interviews", "data": {"id": 40387426003, "application_id": 44937562003, "external_event_id": "12345678", "start": {"date_time": "2021-12-13T13:15:00.000Z"}, "end": {"date_time": "2021-12-13T14:15:00.000Z"}, "location": null, "video_conferencing_url": null, "status": "awaiting_feedback", "created_at": "2021-10-10T16:22:04.561Z", "updated_at": "2021-12-13T15:15:13.252Z", "interview": {"id": 5628615003, "name": "Preliminary Screening Call"}, "organizer": {"id": 4218085003, "first_name": "Greenhouse", "last_name": "Admin", "name": "Greenhouse Admin", "employee_id": null}, "interviewers": [{"id": 4218085003, "employee_id": null, "name": "Greenhouse Admin", "email": "scrubbed_email_vq8-rm4513etm7xxd9d1qq@example.com", "response_status": "accepted", "scorecard_id": null}]}, "emitted_at": 1664285634421} -{"stream": "interviews", "data": {"id": 40387431003, "application_id": 44937562003, "external_event_id": "1234567", "start": {"date_time": "2021-12-14T13:15:00.000Z"}, "end": {"date_time": "2021-12-14T14:15:00.000Z"}, "location": null, "video_conferencing_url": null, "status": "awaiting_feedback", "created_at": "2021-10-10T16:22:13.681Z", "updated_at": "2021-12-14T15:15:12.118Z", "interview": {"id": 5628615003, "name": "Preliminary Screening Call"}, "organizer": {"id": 4218085003, "first_name": "Greenhouse", "last_name": "Admin", "name": "Greenhouse Admin", "employee_id": null}, "interviewers": [{"id": 4218085003, "employee_id": null, "name": "Greenhouse Admin", "email": "scrubbed_email_vq8-rm4513etm7xxd9d1qq@example.com", "response_status": "accepted", "scorecard_id": null}]}, "emitted_at": 1664285634422} -{"stream": "applications_interviews", "data": {"id": 40387397003, "application_id": 44937562003, "external_event_id": "123456789", "start": {"date_time": "2021-12-12T13:15:00.000Z"}, "end": {"date_time": "2021-12-12T14:15:00.000Z"}, "location": null, "video_conferencing_url": null, "status": "awaiting_feedback", "created_at": "2021-10-10T16:21:44.107Z", "updated_at": "2021-12-12T15:15:02.894Z", "interview": {"id": 5628615003, "name": "Preliminary Screening Call"}, "organizer": {"id": 4218085003, "first_name": "Greenhouse", "last_name": "Admin", "name": "Greenhouse Admin", "employee_id": null}, "interviewers": [{"id": 4218085003, "employee_id": null, "name": "Greenhouse Admin", "email": "scrubbed_email_vq8-rm4513etm7xxd9d1qq@example.com", "response_status": "accepted", "scorecard_id": null}]}, "emitted_at": 1664285637504} -{"stream": "applications_interviews", "data": {"id": 40387426003, "application_id": 44937562003, "external_event_id": "12345678", "start": {"date_time": "2021-12-13T13:15:00.000Z"}, "end": {"date_time": "2021-12-13T14:15:00.000Z"}, "location": null, "video_conferencing_url": null, "status": "awaiting_feedback", "created_at": "2021-10-10T16:22:04.561Z", "updated_at": "2021-12-13T15:15:13.252Z", "interview": {"id": 5628615003, "name": "Preliminary Screening Call"}, "organizer": {"id": 4218085003, "first_name": "Greenhouse", "last_name": "Admin", "name": "Greenhouse Admin", "employee_id": null}, "interviewers": [{"id": 4218085003, "employee_id": null, "name": "Greenhouse Admin", "email": "scrubbed_email_vq8-rm4513etm7xxd9d1qq@example.com", "response_status": "accepted", "scorecard_id": null}]}, "emitted_at": 1664285637508} -{"stream": "applications_interviews", "data": {"id": 40387431003, "application_id": 44937562003, "external_event_id": "1234567", "start": {"date_time": "2021-12-14T13:15:00.000Z"}, "end": {"date_time": "2021-12-14T14:15:00.000Z"}, "location": null, "video_conferencing_url": null, "status": "awaiting_feedback", "created_at": "2021-10-10T16:22:13.681Z", "updated_at": "2021-12-14T15:15:12.118Z", "interview": {"id": 5628615003, "name": "Preliminary Screening Call"}, "organizer": {"id": 4218085003, "first_name": "Greenhouse", "last_name": "Admin", "name": "Greenhouse Admin", "employee_id": null}, "interviewers": [{"id": 4218085003, "employee_id": null, "name": "Greenhouse Admin", "email": "scrubbed_email_vq8-rm4513etm7xxd9d1qq@example.com", "response_status": "accepted", "scorecard_id": null}]}, "emitted_at": 1664285637509} -{"stream": "sources", "data": {"id": 4000000003, "name": "Recurse", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638360} -{"stream": "sources", "data": {"id": 4000001003, "name": "cliquify", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638360} -{"stream": "sources", "data": {"id": 4000002003, "name": "ContactOut", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638361} -{"stream": "sources", "data": {"id": 4000003003, "name": "Crosschq", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638361} -{"stream": "sources", "data": {"id": 4000004003, "name": "Talentpair", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638361} -{"stream": "sources", "data": {"id": 4000005003, "name": "Sompani Talent Pools", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638361} -{"stream": "sources", "data": {"id": 4000006003, "name": "ScoutFor", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638361} -{"stream": "sources", "data": {"id": 4000007003, "name": "Gem", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638361} -{"stream": "sources", "data": {"id": 4000008003, "name": "Findem", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638361} -{"stream": "sources", "data": {"id": 4000009003, "name": "goldi staging", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638361} -{"stream": "sources", "data": {"id": 4000010003, "name": "MoBerries", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638361} -{"stream": "sources", "data": {"id": 4000011003, "name": "Onramp", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638361} -{"stream": "sources", "data": {"id": 4000012003, "name": "Knowledge Officer", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638361} -{"stream": "sources", "data": {"id": 4000013003, "name": "Sourceress", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638361} -{"stream": "sources", "data": {"id": 4000014003, "name": "Resume Library", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638362} -{"stream": "sources", "data": {"id": 4000015003, "name": "Command E", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638362} -{"stream": "sources", "data": {"id": 4000016003, "name": "Attract", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638362} -{"stream": "sources", "data": {"id": 4000017003, "name": "WePow", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638362} -{"stream": "sources", "data": {"id": 4000018003, "name": "Planted", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638362} -{"stream": "sources", "data": {"id": 4000019003, "name": "Birch Local", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638362} -{"stream": "sources", "data": {"id": 4000020003, "name": "Birch", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638362} -{"stream": "sources", "data": {"id": 4000021003, "name": "Consider", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638362} -{"stream": "sources", "data": {"id": 4000022003, "name": "Eightfold", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638362} -{"stream": "sources", "data": {"id": 4000023003, "name": "Google (Job Search)", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638362} -{"stream": "sources", "data": {"id": 4000024003, "name": "Hundred5", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638362} -{"stream": "sources", "data": {"id": 4000025003, "name": "Work4 Labs", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638363} -{"stream": "sources", "data": {"id": 4000026003, "name": "Nudj", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638363} -{"stream": "sources", "data": {"id": 4000027003, "name": "Handshake", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638363} -{"stream": "sources", "data": {"id": 4000028003, "name": "goldi", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638363} -{"stream": "sources", "data": {"id": 4000029003, "name": "Honeypot.io", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638363} -{"stream": "sources", "data": {"id": 4000030003, "name": "Joonko", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638363} -{"stream": "sources", "data": {"id": 4000031003, "name": "Untapped", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638363} -{"stream": "sources", "data": {"id": 4000032003, "name": "Bubblesort", "type": {"id": 4000007003, "name": "Agencies"}}, "emitted_at": 1664285638363} -{"stream": "sources", "data": {"id": 4000033003, "name": "Fetcher", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638363} -{"stream": "sources", "data": {"id": 4000034003, "name": "WorksHub", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638363} -{"stream": "sources", "data": {"id": 4000035003, "name": "CareerBuilder Quick Apply", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638363} -{"stream": "sources", "data": {"id": 4000036003, "name": "BountyJobs", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638363} -{"stream": "sources", "data": {"id": 4000037003, "name": "SmartDreamers", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638363} -{"stream": "sources", "data": {"id": 4000038003, "name": "Gloat", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638364} -{"stream": "sources", "data": {"id": 4000039003, "name": "Selected", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638364} -{"stream": "sources", "data": {"id": 4000040003, "name": "SeekOut", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638364} -{"stream": "sources", "data": {"id": 4000041003, "name": "Jobmailer", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638364} -{"stream": "sources", "data": {"id": 4000042003, "name": "MindMatch", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638364} -{"stream": "sources", "data": {"id": 4000043003, "name": "Hackajob", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638364} -{"stream": "sources", "data": {"id": 4000044003, "name": "Snap.hr", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638364} -{"stream": "sources", "data": {"id": 4000045003, "name": "JamieAI", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638364} -{"stream": "sources", "data": {"id": 4000046003, "name": "Visage", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638364} -{"stream": "sources", "data": {"id": 4000047003, "name": "XING ReferralManager", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638364} -{"stream": "sources", "data": {"id": 4000048003, "name": "WorkShape.io", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638364} -{"stream": "sources", "data": {"id": 4000049003, "name": "Workey", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638364} -{"stream": "sources", "data": {"id": 4000050003, "name": "Uncommon", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638365} -{"stream": "sources", "data": {"id": 4000051003, "name": "Talentful", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638365} -{"stream": "sources", "data": {"id": 4000052003, "name": "TalentBin\u00ae by Monster", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638365} -{"stream": "sources", "data": {"id": 4000053003, "name": "Riviera Partners", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638365} -{"stream": "sources", "data": {"id": 4000054003, "name": "SingleSprout", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638365} -{"stream": "sources", "data": {"id": 4000055003, "name": "ScoutSavvy", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638365} -{"stream": "sources", "data": {"id": 4000056003, "name": "RippleMatch", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638365} -{"stream": "sources", "data": {"id": 4000057003, "name": "Project: \u201cOdin\u201d", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638365} -{"stream": "sources", "data": {"id": 4000058003, "name": "PowerToFly", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638365} -{"stream": "sources", "data": {"id": 4000059003, "name": "OneWire", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638365} -{"stream": "sources", "data": {"id": 4000060003, "name": "OfferZen", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638365} -{"stream": "sources", "data": {"id": 4000061003, "name": "Netin", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638365} -{"stream": "sources", "data": {"id": 4000062003, "name": "Meritocracy", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638366} -{"stream": "sources", "data": {"id": 4000063003, "name": "Jopwell", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638366} -{"stream": "sources", "data": {"id": 4000064003, "name": "Jobjet", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638366} -{"stream": "sources", "data": {"id": 4000065003, "name": "Interviewing.io", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638366} -{"stream": "sources", "data": {"id": 4000066003, "name": "Interseller", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638366} -{"stream": "sources", "data": {"id": 4000067003, "name": "HRMARKET", "type": {"id": 4000007003, "name": "Agencies"}}, "emitted_at": 1664285638366} -{"stream": "sources", "data": {"id": 4000068003, "name": "hireEZ", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638366} -{"stream": "sources", "data": {"id": 4000069003, "name": "HeyJobs", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638366} -{"stream": "sources", "data": {"id": 4000070003, "name": "Hachi", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638366} -{"stream": "sources", "data": {"id": 4000071003, "name": "getTalent", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638366} -{"stream": "sources", "data": {"id": 4000072003, "name": "Functional Works", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638367} -{"stream": "sources", "data": {"id": 4000073003, "name": "Firstbird", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638367} -{"stream": "sources", "data": {"id": 4000074003, "name": "Crowded", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638367} -{"stream": "sources", "data": {"id": 4000075003, "name": "CrediBLL", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638367} -{"stream": "sources", "data": {"id": 4000076003, "name": "Celential.ai", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638367} -{"stream": "sources", "data": {"id": 4000077003, "name": "AmazingHiring", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638367} -{"stream": "sources", "data": {"id": 4000078003, "name": "Teamable", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638368} -{"stream": "sources", "data": {"id": 4000079003, "name": "HubSpot Marketing", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638368} -{"stream": "sources", "data": {"id": 4000080003, "name": "VolkScience", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638368} -{"stream": "sources", "data": {"id": 4000081003, "name": "LeapMind", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638368} -{"stream": "sources", "data": {"id": 4000082003, "name": "Woo", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638368} -{"stream": "sources", "data": {"id": 4000083003, "name": "ReferralMob", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638368} -{"stream": "sources", "data": {"id": 4000084003, "name": "Maildrop", "type": {"id": 4000004003, "name": "Other"}}, "emitted_at": 1664285638368} -{"stream": "sources", "data": {"id": 4000085003, "name": "Thumbtack Technology", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638368} -{"stream": "sources", "data": {"id": 4000086003, "name": "Wendy", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638368} -{"stream": "sources", "data": {"id": 4000087003, "name": "Stella", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638369} -{"stream": "sources", "data": {"id": 4000088003, "name": "Resource", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638369} -{"stream": "sources", "data": {"id": 4000089003, "name": "Talentseer", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638369} -{"stream": "sources", "data": {"id": 4000090003, "name": "Door of Clubs", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638369} -{"stream": "sources", "data": {"id": 4000091003, "name": "untapt", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638369} -{"stream": "sources", "data": {"id": 4000092003, "name": "vsource", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638369} -{"stream": "sources", "data": {"id": 4000093003, "name": "Ideal", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638369} -{"stream": "sources", "data": {"id": 4000094003, "name": "Indeed Prime", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638369} -{"stream": "sources", "data": {"id": 4000095003, "name": "Predikt", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638369} -{"stream": "sources", "data": {"id": 4000096003, "name": "Beamery", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638369} -{"stream": "sources", "data": {"id": 4000097003, "name": "RippleHire", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638370} -{"stream": "sources", "data": {"id": 4000098003, "name": "LinkedIn (Prospecting)", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638370} -{"stream": "sources", "data": {"id": 4000099003, "name": "LinkedIn (Ad Posting)", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638370} -{"stream": "sources", "data": {"id": 4000100003, "name": "FirstJob", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638527} -{"stream": "sources", "data": {"id": 4000101003, "name": "Bsharp", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638528} -{"stream": "sources", "data": {"id": 4000102003, "name": "Landing.jobs", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638528} -{"stream": "sources", "data": {"id": 4000103003, "name": "Vettery", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638528} -{"stream": "sources", "data": {"id": 4000104003, "name": "RAKUNA Recruit", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638528} -{"stream": "sources", "data": {"id": 4000105003, "name": "E-SS portal", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638528} -{"stream": "sources", "data": {"id": 4000106003, "name": "Recsolu", "type": {"id": 4000001003, "name": "In person event"}}, "emitted_at": 1664285638528} -{"stream": "sources", "data": {"id": 4000107003, "name": "SocialReferral [DEV]", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638528} -{"stream": "sources", "data": {"id": 4000108003, "name": "WayUp", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638528} -{"stream": "sources", "data": {"id": 4000109003, "name": "SocialReferral", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638528} -{"stream": "sources", "data": {"id": 4000110003, "name": "HumanPredictions", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638528} -{"stream": "sources", "data": {"id": 4000111003, "name": "Gogohire", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638529} -{"stream": "sources", "data": {"id": 4000112003, "name": "TalentIQ", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638529} -{"stream": "sources", "data": {"id": 4000113003, "name": "DoWeKnowThisGuy", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638529} -{"stream": "sources", "data": {"id": 4000114003, "name": "The Muse", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638529} -{"stream": "sources", "data": {"id": 4000115003, "name": "HackerRank", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638529} -{"stream": "sources", "data": {"id": 4000116003, "name": "Whitetruffle", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638529} -{"stream": "sources", "data": {"id": 4000117003, "name": "LinkedIn Limited Listing", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638529} -{"stream": "sources", "data": {"id": 4000118003, "name": "SpringRole", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638529} -{"stream": "sources", "data": {"id": 4000119003, "name": "StrongIntro", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638529} -{"stream": "sources", "data": {"id": 4000120003, "name": "CodeFights", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638529} -{"stream": "sources", "data": {"id": 4000121003, "name": "Citadel", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638529} -{"stream": "sources", "data": {"id": 4000122003, "name": "Savvy", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638529} -{"stream": "sources", "data": {"id": 4000123003, "name": "SmashFly", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638530} -{"stream": "sources", "data": {"id": 4000124003, "name": "Stack", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638530} -{"stream": "sources", "data": {"id": 4000125003, "name": "Network Monkey", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638530} -{"stream": "sources", "data": {"id": 4000126003, "name": "Triplebyte", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638530} -{"stream": "sources", "data": {"id": 4000127003, "name": "HireArt", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638530} -{"stream": "sources", "data": {"id": 4000128003, "name": "Hirecanvas", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638530} -{"stream": "sources", "data": {"id": 4000129003, "name": "CloserIQ", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638530} -{"stream": "sources", "data": {"id": 4000130003, "name": "Codeity", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638530} -{"stream": "sources", "data": {"id": 4000131003, "name": "ZipRecruiter", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638530} -{"stream": "sources", "data": {"id": 4000132003, "name": "Drafted", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638530} -{"stream": "sources", "data": {"id": 4000133003, "name": "ROIKOI", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638530} -{"stream": "sources", "data": {"id": 4000134003, "name": "DoWeKnowThisGuy Staging", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638531} -{"stream": "sources", "data": {"id": 4000135003, "name": "AngelList", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638531} -{"stream": "sources", "data": {"id": 4000136003, "name": "Archively", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638531} -{"stream": "sources", "data": {"id": 4000137003, "name": "Hired", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638531} -{"stream": "sources", "data": {"id": 4000138003, "name": "EmployeeReferrals.com", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638531} -{"stream": "sources", "data": {"id": 4000139003, "name": "Aevy", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638531} -{"stream": "sources", "data": {"id": 4000140003, "name": "Connectifier", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638531} -{"stream": "sources", "data": {"id": 4000141003, "name": "Simppler", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638531} -{"stream": "sources", "data": {"id": 4000142003, "name": "Internal Applicant", "type": {"id": 4000006003, "name": "Company marketing"}}, "emitted_at": 1664285638531} -{"stream": "sources", "data": {"id": 4000143003, "name": "Clinch", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638531} -{"stream": "sources", "data": {"id": 4000144003, "name": "SwoopTalent", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638531} -{"stream": "sources", "data": {"id": 4000145003, "name": "Pymetrics", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638531} -{"stream": "sources", "data": {"id": 4000146003, "name": "YBorder", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638532} -{"stream": "sources", "data": {"id": 4000147003, "name": "Hirable", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638532} -{"stream": "sources", "data": {"id": 4000148003, "name": "RecruitiFi", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638532} -{"stream": "sources", "data": {"id": 4000149003, "name": "RolePoint", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638532} -{"stream": "sources", "data": {"id": 4000150003, "name": "Entelo", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638532} -{"stream": "sources", "data": {"id": 4000151003, "name": "Piazza", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638532} -{"stream": "sources", "data": {"id": 4000152003, "name": "Setter", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638532} -{"stream": "sources", "data": {"id": 4000153003, "name": "Other", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638532} -{"stream": "sources", "data": {"id": 4000154003, "name": "Coroflot", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638532} -{"stream": "sources", "data": {"id": 4000155003, "name": "Startuply", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638532} -{"stream": "sources", "data": {"id": 4000156003, "name": "Behance", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638532} -{"stream": "sources", "data": {"id": 4000157003, "name": "Dribbble", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638533} -{"stream": "sources", "data": {"id": 4000158003, "name": "Glassdoor", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638533} -{"stream": "sources", "data": {"id": 4000159003, "name": "Careers2.0 by StackOverflow", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638533} -{"stream": "sources", "data": {"id": 4000160003, "name": "LinkedIn (Social Media)", "type": {"id": 4000005003, "name": "Social media"}}, "emitted_at": 1664285638533} -{"stream": "sources", "data": {"id": 4000161003, "name": "Referral", "type": {"id": 4000002003, "name": "Referral"}}, "emitted_at": 1664285638533} -{"stream": "sources", "data": {"id": 4000162003, "name": "Beyond.com", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638533} -{"stream": "sources", "data": {"id": 4000163003, "name": "CareerBuilder", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638533} -{"stream": "sources", "data": {"id": 4000164003, "name": "Monster", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638533} -{"stream": "sources", "data": {"id": 4000165003, "name": "CareerBuilder", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638533} -{"stream": "sources", "data": {"id": 4000166003, "name": "Monster", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638533} -{"stream": "sources", "data": {"id": 4000167003, "name": "craigslist", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638533} -{"stream": "sources", "data": {"id": 4000168003, "name": "Dice", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638533} -{"stream": "sources", "data": {"id": 4000169003, "name": "GitHub Jobs", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638534} -{"stream": "sources", "data": {"id": 4000170003, "name": "Dribbble", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638534} -{"stream": "sources", "data": {"id": 4000171003, "name": "Social media presence", "type": {"id": 4000006003, "name": "Company marketing"}}, "emitted_at": 1664285638534} -{"stream": "sources", "data": {"id": 4000172003, "name": "Customer newsletter", "type": {"id": 4000006003, "name": "Company marketing"}}, "emitted_at": 1664285638534} -{"stream": "sources", "data": {"id": 4000173003, "name": "Use BountyJobs", "type": {"id": 4000007003, "name": "Agencies"}}, "emitted_at": 1664285638534} -{"stream": "sources", "data": {"id": 4000174003, "name": "Google", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638534} -{"stream": "sources", "data": {"id": 4000175003, "name": "Indeed", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638534} -{"stream": "sources", "data": {"id": 4000176003, "name": "Meetups", "type": {"id": 4000001003, "name": "In person event"}}, "emitted_at": 1664285638534} -{"stream": "sources", "data": {"id": 4000177003, "name": "Jobs page on your website", "type": {"id": 4000006003, "name": "Company marketing"}}, "emitted_at": 1664285638534} -{"stream": "sources", "data": {"id": 4000178003, "name": "Twitter", "type": {"id": 4000005003, "name": "Social media"}}, "emitted_at": 1664285638534} -{"stream": "sources", "data": {"id": 4000179003, "name": "Facebook", "type": {"id": 4000005003, "name": "Social media"}}, "emitted_at": 1664285638534} -{"stream": "sources", "data": {"id": 4000180003, "name": "SimplyHired", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638534} -{"stream": "sources", "data": {"id": 4000181003, "name": "Indeed", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638535} -{"stream": "sources", "data": {"id": 4000182003, "name": "Job fairs/Conferences/Trade shows", "type": {"id": 4000001003, "name": "In person event"}}, "emitted_at": 1664285638535} -{"stream": "sources", "data": {"id": 4000183003, "name": "Campus recruiting", "type": {"id": 4000001003, "name": "In person event"}}, "emitted_at": 1664285638535} -{"stream": "sources", "data": {"id": 4000184003, "name": "Uncubed", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638535} -{"stream": "sources", "data": {"id": 4000185003, "name": "Ladders", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638535} -{"stream": "sources", "data": {"id": 4000186003, "name": "Splash", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638535} -{"stream": "sources", "data": {"id": 4000187003, "name": "Recruiter.AI", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638535} -{"stream": "sources", "data": {"id": 4000188003, "name": "Underdog.io", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638535} -{"stream": "sources", "data": {"id": 4000189003, "name": "UpScored", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638535} -{"stream": "sources", "data": {"id": 4000190003, "name": "LinkMatch", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638535} -{"stream": "sources", "data": {"id": 4000191003, "name": "Jobbatical", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638535} -{"stream": "sources", "data": {"id": 4000192003, "name": "Upsider", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638535} -{"stream": "sources", "data": {"id": 4000195003, "name": "zealpath", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638535} -{"stream": "sources", "data": {"id": 4000198003, "name": "AppDirect Connector", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638536} -{"stream": "sources", "data": {"id": 4000213003, "name": "Helm", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638536} -{"stream": "sources", "data": {"id": 4000226003, "name": "Betts", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638536} -{"stream": "sources", "data": {"id": 4000228003, "name": "Circular", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638536} -{"stream": "sources", "data": {"id": 4000241003, "name": "Tempo", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638536} -{"stream": "sources", "data": {"id": 4000264003, "name": "Woo Auto-sourcer", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638536} -{"stream": "sources", "data": {"id": 4000344003, "name": "TopFunnel", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638712} -{"stream": "sources", "data": {"id": 4000538003, "name": "Greenhouse Test", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638712} -{"stream": "sources", "data": {"id": 4000619003, "name": "Wepow Staging", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638712} -{"stream": "sources", "data": {"id": 4001253003, "name": "Showcase Jobs", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638713} -{"stream": "sources", "data": {"id": 4001321003, "name": "Showcase QA", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638713} -{"stream": "sources", "data": {"id": 4001322003, "name": "Showcase Demo", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638713} -{"stream": "sources", "data": {"id": 4001506003, "name": "Indeed - Sponsored", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638713} -{"stream": "sources", "data": {"id": 4001507003, "name": "Indeed - Targeted Ad", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638713} -{"stream": "sources", "data": {"id": 4002280003, "name": "Dash by Dashworks", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638713} -{"stream": "sources", "data": {"id": 4002742003, "name": "Aleph", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638713} -{"stream": "sources", "data": {"id": 4002891003, "name": "Xing", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638713} -{"stream": "sources", "data": {"id": 4003381003, "name": "Talroo", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638713} -{"stream": "sources", "data": {"id": 4004993003, "name": "include.ai", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638713} -{"stream": "sources", "data": {"id": 4005607003, "name": "AppDirect", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638713} -{"stream": "sources", "data": {"id": 4006015003, "name": "Otta", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638713} -{"stream": "sources", "data": {"id": 4006251003, "name": "Revelo", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638714} -{"stream": "sources", "data": {"id": 4006550003, "name": "Rainmakers", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638714} -{"stream": "sources", "data": {"id": 4007366003, "name": "Relode", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638714} -{"stream": "sources", "data": {"id": 4007690003, "name": "JOIN", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638714} -{"stream": "sources", "data": {"id": 4008420003, "name": "ERIN", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638714} -{"stream": "sources", "data": {"id": 4008511003, "name": "VentureBeat Careers, powered by Jobbio", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638714} -{"stream": "sources", "data": {"id": 4008617003, "name": "Monster Organic", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638714} -{"stream": "sources", "data": {"id": 4009581003, "name": "Sourcediv dev", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638714} -{"stream": "sources", "data": {"id": 4009582003, "name": "Sourcediv", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638714} -{"stream": "sources", "data": {"id": 4009906003, "name": "PandoLogic", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638714} -{"stream": "sources", "data": {"id": 4010052003, "name": "JOBfindah", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638714} -{"stream": "sources", "data": {"id": 4010066003, "name": "Cord", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638714} -{"stream": "sources", "data": {"id": 4010238003, "name": "purpose.jobs", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638715} -{"stream": "sources", "data": {"id": 4010715003, "name": "Scout Hires", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638715} -{"stream": "sources", "data": {"id": 4011228003, "name": "CBREX", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638715} -{"stream": "sources", "data": {"id": 4012144003, "name": "Talent By Blind (dev)", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638715} -{"stream": "sources", "data": {"id": 4012145003, "name": "Talent By Blind (test)", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638715} -{"stream": "sources", "data": {"id": 4012387003, "name": "RecruitBot", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638715} -{"stream": "sources", "data": {"id": 4012474003, "name": "RepVue", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638715} -{"stream": "sources", "data": {"id": 4012953003, "name": "Jobplanner", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638715} -{"stream": "sources", "data": {"id": 4013544003, "name": "Test agency", "type": {"id": 4000007003, "name": "Agencies"}}, "emitted_at": 1664285638715} -{"stream": "sources", "data": {"id": 4013712003, "name": "Jobstep", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638715} -{"stream": "sources", "data": {"id": 4014208003, "name": "Relyance", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638715} -{"stream": "sources", "data": {"id": 4014433003, "name": "Intrro", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638715} -{"stream": "sources", "data": {"id": 4014636003, "name": "DataFrenzy", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638715} -{"stream": "sources", "data": {"id": 4015128003, "name": "Talent By Blind", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638716} -{"stream": "sources", "data": {"id": 4015567003, "name": "Real Links", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638716} -{"stream": "sources", "data": {"id": 4016305003, "name": "Scouted", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638716} -{"stream": "sources", "data": {"id": 4016428003, "name": "Talentry", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638716} -{"stream": "sources", "data": {"id": 4016532003, "name": "Careerjet", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638716} -{"stream": "sources", "data": {"id": 4018722003, "name": "ProvenBase", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638716} -{"stream": "sources", "data": {"id": 4018841003, "name": "Homi", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638716} -{"stream": "sources", "data": {"id": 4019367003, "name": "10x10", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638716} -{"stream": "sources", "data": {"id": 4019617003, "name": "Secret Tel Aviv", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638716} -{"stream": "sources", "data": {"id": 4020294003, "name": "BuiltIn", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638716} -{"stream": "sources", "data": {"id": 4020736003, "name": "Tobu", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638716} -{"stream": "sources", "data": {"id": 4020760003, "name": "Velents", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638716} -{"stream": "sources", "data": {"id": 4021421003, "name": "Upward", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638717} -{"stream": "sources", "data": {"id": 4022468003, "name": "ZoomInfo for Recruiters", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638717} -{"stream": "sources", "data": {"id": 4023661003, "name": "Prentus", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638717} -{"stream": "sources", "data": {"id": 4024133003, "name": "Arbeitnow", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638717} -{"stream": "sources", "data": {"id": 4024421003, "name": "GuidedCompass", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638717} -{"stream": "sources", "data": {"id": 4024601003, "name": "Elpha", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638717} -{"stream": "sources", "data": {"id": 4025746003, "name": "Indeed Hiring Platform", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638717} -{"stream": "sources", "data": {"id": 4025759003, "name": "Elpha Dev", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638717} -{"stream": "sources", "data": {"id": 4026726003, "name": "Careerpuck", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638717} -{"stream": "sources", "data": {"id": 4027676003, "name": "Appcast", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638717} -{"stream": "sources", "data": {"id": 4027972003, "name": "SV Academy", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638717} -{"stream": "sources", "data": {"id": 4028644003, "name": "Tolstoy", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638717} -{"stream": "sources", "data": {"id": 4028649003, "name": "TolstoyDev", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638718} -{"stream": "sources", "data": {"id": 4028668003, "name": "OutScout", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638718} -{"stream": "sources", "data": {"id": 4028669003, "name": "OutScoutDev", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638718} -{"stream": "sources", "data": {"id": 4028843003, "name": "signNow", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638718} -{"stream": "sources", "data": {"id": 4029781003, "name": "TitanHouse", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638718} -{"stream": "sources", "data": {"id": 4030665003, "name": "Reprograma", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638718} -{"stream": "sources", "data": {"id": 4031825003, "name": "Trinsly", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638718} -{"stream": "sources", "data": {"id": 4032805003, "name": "Brazen", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638718} -{"stream": "sources", "data": {"id": 4034611003, "name": "Wednesday Talent", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638718} -{"stream": "sources", "data": {"id": 4034771003, "name": "HRMarket 2", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638718} -{"stream": "sources", "data": {"id": 4035349003, "name": "Phenom People", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638718} -{"stream": "sources", "data": {"id": 4036053003, "name": "TalentMarketplace", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638718} -{"stream": "sources", "data": {"id": 4036865003, "name": "Spleadly", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638719} -{"stream": "sources", "data": {"id": 4037066003, "name": "PathMatch", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638719} -{"stream": "sources", "data": {"id": 4037068003, "name": "Bevov", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638719} -{"stream": "sources", "data": {"id": 4037490003, "name": "LinkedIn", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638719} -{"stream": "sources", "data": {"id": 4038632003, "name": "Reflr", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638719} -{"stream": "sources", "data": {"id": 4039580003, "name": "HeroHunt", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638719} -{"stream": "sources", "data": {"id": 4040831003, "name": "Inclusively", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638719} -{"stream": "sources", "data": {"id": 4040946003, "name": "Us in Technology", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638719} -{"stream": "sources", "data": {"id": 4041406003, "name": "Retorio", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638719} -{"stream": "sources", "data": {"id": 4041695003, "name": "Waldo Labs Relay", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638719} -{"stream": "sources", "data": {"id": 4041720003, "name": "Supercharge", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638719} -{"stream": "sources", "data": {"id": 4041898003, "name": "matched.io", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638719} -{"stream": "sources", "data": {"id": 4042739003, "name": "headhuntr.io", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638719} -{"stream": "sources", "data": {"id": 4042896003, "name": "JobVyne", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638720} -{"stream": "sources", "data": {"id": 4042898003, "name": "Celential.ai Recruiting", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638720} -{"stream": "sources", "data": {"id": 4043028003, "name": "EzHire Cannabis", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1664285638720} -{"stream": "sources", "data": {"id": 4043066003, "name": "Programmatic Sourcing", "type": {"id": 4000000003, "name": "Third-party boards"}}, "emitted_at": 1664285638720} -{"stream": "rejection_reasons", "data": {"id": 4014678003, "name": "reason1", "type": {"id": 4000000003, "name": "We rejected them"}}, "emitted_at": 1664285639282} -{"stream": "rejection_reasons", "data": {"id": 4014679003, "name": "reason2", "type": {"id": 4000001003, "name": "They rejected us"}}, "emitted_at": 1664285639283} -{"stream": "rejection_reasons", "data": {"id": 4014680003, "name": "reason3", "type": {"id": 4000002003, "name": "None specified"}}, "emitted_at": 1664285639283} -{"stream": "jobs_openings", "data": {"id": 4320015003, "opening_id": "3-1", "status": "open", "opened_at": "2020-11-24T23:27:11.723Z", "closed_at": null, "application_id": null, "close_reason": null}, "emitted_at": 1664285640400} -{"stream": "jobs_openings", "data": {"id": 4320018003, "opening_id": "4-1", "status": "open", "opened_at": "2020-11-24T23:27:45.665Z", "closed_at": null, "application_id": null, "close_reason": null}, "emitted_at": 1664285640752} -{"stream": "jobs_openings", "data": {"id": 4926182003, "opening_id": "5-1", "status": "open", "opened_at": "2021-10-08T08:19:42.457Z", "closed_at": null, "application_id": null, "close_reason": null}, "emitted_at": 1664285641263} -{"stream": "jobs_openings", "data": {"id": 4928186003, "opening_id": "5-1", "status": "open", "opened_at": "2021-10-10T16:38:57.407Z", "closed_at": null, "application_id": null, "close_reason": null}, "emitted_at": 1664285641263} -{"stream": "jobs_openings", "data": {"id": 4928187003, "opening_id": "5-2", "status": "open", "opened_at": "2021-10-10T16:39:08.365Z", "closed_at": null, "application_id": null, "close_reason": null}, "emitted_at": 1664285641264} -{"stream": "jobs_openings", "data": {"id": 4928188003, "opening_id": "5-2", "status": "open", "opened_at": "2021-10-10T16:39:24.949Z", "closed_at": null, "application_id": null, "close_reason": null}, "emitted_at": 1664285641264} -{"stream": "jobs_openings", "data": {"id": 4926183003, "opening_id": "5-2", "status": "open", "opened_at": "2021-10-08T08:19:42.457Z", "closed_at": null, "application_id": null, "close_reason": null}, "emitted_at": 1664285641264} -{"stream": "jobs_openings", "data": {"id": 4928186003, "opening_id": "5-1", "status": "open", "opened_at": "2021-10-10T16:38:57.407Z", "closed_at": null, "application_id": null, "close_reason": null}, "emitted_at": 1664285641443} -{"stream": "jobs_openings", "data": {"id": 4928187003, "opening_id": "5-2", "status": "open", "opened_at": "2021-10-10T16:39:08.365Z", "closed_at": null, "application_id": null, "close_reason": null}, "emitted_at": 1664285641443} -{"stream": "jobs_openings", "data": {"id": 4928188003, "opening_id": "5-2", "status": "open", "opened_at": "2021-10-10T16:39:24.949Z", "closed_at": null, "application_id": null, "close_reason": null}, "emitted_at": 1664285641443} -{"stream": "jobs_openings", "data": {"id": 4970166003, "opening_id": "6-1", "status": "open", "opened_at": "2021-11-30T01:00:00.000Z", "closed_at": null, "application_id": null, "close_reason": null}, "emitted_at": 1664285641784} -{"stream": "job_stages", "data": {"id": 5245803003, "name": "Application Review", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 0, "interviews": [{"id": 5628614003, "name": "Application Review", "schedulable": false, "interview_kit": {"id": 5628609003, "content": null, "questions": []}, "estimated_minutes": 1, "default_interviewer_users": []}]}, "emitted_at": 1664285642801} -{"stream": "job_stages", "data": {"id": 5245804003, "name": "Preliminary Phone Screen", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 1, "interviews": [{"id": 5628615003, "name": "Preliminary Screening Call", "schedulable": true, "interview_kit": {"id": 5628610003, "content": null, "questions": []}, "estimated_minutes": 20, "default_interviewer_users": []}]}, "emitted_at": 1664285642803} -{"stream": "job_stages", "data": {"id": 5245805003, "name": "Phone Interview", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 2, "interviews": [{"id": 5628616003, "name": "Behavioral Phone Interview", "schedulable": true, "interview_kit": {"id": 5628611003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}]}, "emitted_at": 1664285642803} -{"stream": "job_stages", "data": {"id": 5245806003, "name": "Face to Face", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 3, "interviews": [{"id": 5628617003, "name": "Cultural Add Interview", "schedulable": true, "interview_kit": {"id": 5628612003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}, {"id": 5628618003, "name": "Peer Panel Interview", "schedulable": true, "interview_kit": {"id": 5628613003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}, {"id": 5628619003, "name": "Case Study", "schedulable": true, "interview_kit": {"id": 5628614003, "content": null, "questions": []}, "estimated_minutes": 45, "default_interviewer_users": []}, {"id": 5628620003, "name": "Executive Interview", "schedulable": true, "interview_kit": {"id": 5628615003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}]}, "emitted_at": 1664285642804} -{"stream": "job_stages", "data": {"id": 5245807003, "name": "Reference Check", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 4, "interviews": [{"id": 5628621003, "name": "Former Manager", "schedulable": false, "interview_kit": {"id": 5628616003, "content": null, "questions": []}, "estimated_minutes": 15, "default_interviewer_users": []}]}, "emitted_at": 1664285642804} -{"stream": "job_stages", "data": {"id": 5245808003, "name": "Offer", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 5, "interviews": []}, "emitted_at": 1664285642804} -{"stream": "job_stages", "data": {"id": 5245818003, "name": "Application Review", "created_at": "2020-11-24T23:27:45.704Z", "updated_at": "2020-11-24T23:27:45.704Z", "active": true, "job_id": 4177048003, "priority": 0, "interviews": [{"id": 5628634003, "name": "Application Review", "schedulable": false, "interview_kit": {"id": 5628629003, "content": null, "questions": []}, "estimated_minutes": 1, "default_interviewer_users": []}]}, "emitted_at": 1664285642805} -{"stream": "job_stages", "data": {"id": 5245819003, "name": "Preliminary Phone Screen", "created_at": "2020-11-24T23:27:45.704Z", "updated_at": "2020-11-24T23:27:45.704Z", "active": true, "job_id": 4177048003, "priority": 1, "interviews": [{"id": 5628635003, "name": "Preliminary Screening Call", "schedulable": true, "interview_kit": {"id": 5628630003, "content": null, "questions": []}, "estimated_minutes": 20, "default_interviewer_users": []}]}, "emitted_at": 1664285642805} -{"stream": "job_stages", "data": {"id": 5245820003, "name": "Phone Interview", "created_at": "2020-11-24T23:27:45.704Z", "updated_at": "2020-11-24T23:27:45.704Z", "active": true, "job_id": 4177048003, "priority": 2, "interviews": [{"id": 5628636003, "name": "Behavioral Phone Interview", "schedulable": true, "interview_kit": {"id": 5628631003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}]}, "emitted_at": 1664285642806} -{"stream": "job_stages", "data": {"id": 5245821003, "name": "Face to Face", "created_at": "2020-11-24T23:27:45.704Z", "updated_at": "2020-11-24T23:27:45.704Z", "active": true, "job_id": 4177048003, "priority": 3, "interviews": [{"id": 5628637003, "name": "Cultural Add Interview", "schedulable": true, "interview_kit": {"id": 5628632003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}, {"id": 5628638003, "name": "Peer Panel Interview", "schedulable": true, "interview_kit": {"id": 5628633003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}, {"id": 5628639003, "name": "Case Study", "schedulable": true, "interview_kit": {"id": 5628634003, "content": null, "questions": []}, "estimated_minutes": 45, "default_interviewer_users": []}, {"id": 5628640003, "name": "Executive Interview", "schedulable": true, "interview_kit": {"id": 5628635003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}]}, "emitted_at": 1664285642806} -{"stream": "job_stages", "data": {"id": 5245822003, "name": "Reference Check", "created_at": "2020-11-24T23:27:45.704Z", "updated_at": "2020-11-24T23:27:45.704Z", "active": true, "job_id": 4177048003, "priority": 4, "interviews": [{"id": 5628641003, "name": "Former Manager", "schedulable": false, "interview_kit": {"id": 5628636003, "content": null, "questions": []}, "estimated_minutes": 15, "default_interviewer_users": []}]}, "emitted_at": 1664285642807} -{"stream": "job_stages", "data": {"id": 5245823003, "name": "Offer", "created_at": "2020-11-24T23:27:45.704Z", "updated_at": "2020-11-24T23:27:45.704Z", "active": true, "job_id": 4177048003, "priority": 5, "interviews": []}, "emitted_at": 1664285642807} -{"stream": "job_stages", "data": {"id": 7179760003, "name": "Application Review", "created_at": "2021-10-08T08:19:42.584Z", "updated_at": "2021-10-08T08:19:42.584Z", "active": true, "job_id": 4446240003, "priority": 0, "interviews": [{"id": 8010560003, "name": "Application Review", "schedulable": false, "interview_kit": {"id": 8010544003, "content": "

    \r\n
    Triage the inbox
    \r\n
      \r\n
    • Quickly knock out any applications that are spam, duplicates, or clearly not worth your time
    • \r\n
    • Pass along qualified applicants to the next stage for assessment
    • \r\n
    • Reject any applicants who lack the necessary experience or required skills, or whose applications have poor grammar, spelling, or formatting 
    • \r\n
    \r\n

    ", "questions": []}, "estimated_minutes": 1, "default_interviewer_users": []}]}, "emitted_at": 1664285642807} -{"stream": "job_stages", "data": {"id": 7179761003, "name": "Preliminary Phone Screen", "created_at": "2021-10-08T08:19:42.606Z", "updated_at": "2021-10-08T08:19:42.606Z", "active": true, "job_id": 4446240003, "priority": 1, "interviews": [{"id": 8010561003, "name": "Preliminary Screening Call", "schedulable": true, "interview_kit": {"id": 8010545003, "content": "
    Purpose
    \r\n
      \r\n
    • High-level screening call to make sure the candidate meets the basic requirements
    • \r\n
    \r\n
    Sample Questions
    \r\n
      \r\n
    • Explain the company and the job to the candidate: is it what he/she is looking for?
    • \r\n
    • Walk through his/her resume – are there any red flags?
    • \r\n
    • Find out what the candidate is looking for in his/her ideal role. Write this down so you can refer to this later!
    • \r\n
    • Get the candidate's desired salary range: is it in line with the compensation package?
    • \r\n
    • Tell the candidate what to expect next in your process
    • \r\n
    \r\n

    ", "questions": []}, "estimated_minutes": 20, "default_interviewer_users": []}]}, "emitted_at": 1664285642808} -{"stream": "job_stages", "data": {"id": 7179762003, "name": "Phone Interview", "created_at": "2021-10-08T08:19:42.620Z", "updated_at": "2021-10-08T08:19:42.620Z", "active": true, "job_id": 4446240003, "priority": 2, "interviews": [{"id": 8010562003, "name": "Behavioral Phone Interview", "schedulable": true, "interview_kit": {"id": 8010546003, "content": "
    Purpose
    \r\n
      \r\n
    • Dig in deeper with a set of behavioral questions that target your desired skill set
    • \r\n
    • Specifically look for the following attributes: [Insert desired attributes here]
    • \r\n
    • Determine whether the candidate should be brought in for a face-to-face interview
    • \r\n
    \r\n
    Sample Questions
    \r\n
      \r\n
    • Have the candidate give you concrete examples of times when they demonstrated strengths in your desired skill set
    • \r\n
    • Ask a few open-ended “why” questions
    • \r\n
    • Let the candidate know what to expect next in your process
    • \r\n
    ", "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}]}, "emitted_at": 1664285642808} -{"stream": "job_stages", "data": {"id": 7179763003, "name": "Face to Face", "created_at": "2021-10-08T08:19:42.632Z", "updated_at": "2021-10-08T08:19:42.632Z", "active": true, "job_id": 4446240003, "priority": 3, "interviews": [{"id": 8010563003, "name": "Cultural Add Interview", "schedulable": true, "interview_kit": {"id": 8010547003, "content": "
    Purpose
    \r\n
      \r\n
    • Determine whether or not the candidate would be a strong addition to the organization
    • \r\n
    • Do they live by your company values? [Insert Company Values Here]
    • \r\n
    \r\n
    Sample Questions
    \r\n
      \r\n
    • Ask the candidate for specific examples of times when they demonstrated your company values, e.g., “Tell me about a time when you took ownership of a project from start to finish”
    • \r\n
    • Ask about their motivations in their work - what excites them, what worries them, how do they work best, etc.
    • \r\n
    • Let the candidate know what they should expect next in your process
    • \r\n
    ", "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}, {"id": 8010564003, "name": "Peer Panel Interview", "schedulable": true, "interview_kit": {"id": 8010548003, "content": "
      \r\n
    • Ask the candidate behavioral questions that target the skills and personality traits you're looking for
    • \r\n
    • Specifically dig in on the following skills: [Insert skills and traits here]
    • \r\n
    \r\n
    Sample Questions
    \r\n
      \r\n
    • Have the candidate give you concrete examples of times when they demonstrated strengths in your desired skill set
    • \r\n
    • Ask a few open-ended “why” questions
    • \r\n
    • Is this someone who you want to work with and would add value to the team?
    • \r\n
    • Let the candidate know what to expect next in your process
    • \r\n
    ", "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}, {"id": 8010565003, "name": "Case Study", "schedulable": true, "interview_kit": {"id": 8010549003, "content": "

    [FIll in your case study problem here]

    \r\n

     

    \r\n
      \r\n
    • Prepare a case study or problem for the candidate that mimics a real-world situation that he/she would face in the role
    • \r\n
    • Does the candidate approach the problem analytically and logically?
    • \r\n
    • Ask why he/she made certain decisions. Do they demonstrate a desired way of thinking?
    • \r\n
    • Ask follow-up questions to test the candidate further. (e.g., “What would you do this happened? How would you handle the following objection by a superior?”)
    • \r\n
    • Let the candidate know what they should expect next in your process
    • \r\n
    ", "questions": []}, "estimated_minutes": 45, "default_interviewer_users": []}, {"id": 8010566003, "name": "Executive Interview", "schedulable": true, "interview_kit": {"id": 8010550003, "content": "
      \r\n
    • Unstructured conversation between Executive or Hiring Manager and the candidate
    • \r\n
    • Find out what motivates the candidate. What would they be most excited about if offered the position? What would they be most nervous about?
    • \r\n
    • Sell the candidate on the vision of the company and the quality of the team
    • \r\n
    • Answer any questions the candidate may have
    • \r\n
    • Let the candidate know what to expect next in your process
    • \r\n
    ", "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}]}, "emitted_at": 1664285642808} -{"stream": "job_stages", "data": {"id": 7179764003, "name": "Reference Check", "created_at": "2021-10-08T08:19:42.665Z", "updated_at": "2021-10-08T08:19:42.665Z", "active": true, "job_id": 4446240003, "priority": 4, "interviews": [{"id": 8010567003, "name": "Former Manager", "schedulable": false, "interview_kit": {"id": 8010551003, "content": "
      \r\n
    • Have a quick chat with a former boss and confirm what the candidate said. Did the candidate accurately represent his/her responsibilities in their previous job?
    • \r\n
    • What does the boss think the candidate's biggest strengths are? What would the boss be most concerned about if hiring the candidate again?
    • \r\n
    • Ask about any red flags or questions you might have about the candidate
    • \r\n
    ", "questions": []}, "estimated_minutes": 15, "default_interviewer_users": []}]}, "emitted_at": 1664285642809} -{"stream": "job_stages", "data": {"id": 7179765003, "name": "Offer", "created_at": "2021-10-08T08:19:42.679Z", "updated_at": "2021-10-08T08:19:42.679Z", "active": true, "job_id": 4446240003, "priority": 5, "interviews": []}, "emitted_at": 1664285642809} -{"stream": "job_stages", "data": {"id": 7332462003, "name": "Application Review", "created_at": "2021-11-03T19:46:51.185Z", "updated_at": "2021-11-03T19:46:51.185Z", "active": true, "job_id": 4466310003, "priority": 0, "interviews": [{"id": 8202995003, "name": "Application Review", "schedulable": false, "interview_kit": {"id": 8202979003, "content": null, "questions": []}, "estimated_minutes": 1, "default_interviewer_users": []}]}, "emitted_at": 1664285642809} -{"stream": "job_stages", "data": {"id": 7332463003, "name": "Offer", "created_at": "2021-11-03T19:46:51.185Z", "updated_at": "2021-11-03T19:46:51.185Z", "active": true, "job_id": 4466310003, "priority": 1, "interviews": []}, "emitted_at": 1664285642809} -{"stream": "jobs_stages", "data": {"id": 5245803003, "name": "Application Review", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 0, "interviews": [{"id": 5628614003, "name": "Application Review", "schedulable": false, "interview_kit": {"id": 5628609003, "content": null, "questions": []}, "estimated_minutes": 1, "default_interviewer_users": []}]}, "emitted_at": 1664285644042} -{"stream": "jobs_stages", "data": {"id": 5245804003, "name": "Preliminary Phone Screen", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 1, "interviews": [{"id": 5628615003, "name": "Preliminary Screening Call", "schedulable": true, "interview_kit": {"id": 5628610003, "content": null, "questions": []}, "estimated_minutes": 20, "default_interviewer_users": []}]}, "emitted_at": 1664285644043} -{"stream": "jobs_stages", "data": {"id": 5245805003, "name": "Phone Interview", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 2, "interviews": [{"id": 5628616003, "name": "Behavioral Phone Interview", "schedulable": true, "interview_kit": {"id": 5628611003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}]}, "emitted_at": 1664285644043} -{"stream": "jobs_stages", "data": {"id": 5245806003, "name": "Face to Face", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 3, "interviews": [{"id": 5628617003, "name": "Cultural Add Interview", "schedulable": true, "interview_kit": {"id": 5628612003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}, {"id": 5628618003, "name": "Peer Panel Interview", "schedulable": true, "interview_kit": {"id": 5628613003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}, {"id": 5628619003, "name": "Case Study", "schedulable": true, "interview_kit": {"id": 5628614003, "content": null, "questions": []}, "estimated_minutes": 45, "default_interviewer_users": []}, {"id": 5628620003, "name": "Executive Interview", "schedulable": true, "interview_kit": {"id": 5628615003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}]}, "emitted_at": 1664285644043} -{"stream": "jobs_stages", "data": {"id": 5245807003, "name": "Reference Check", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 4, "interviews": [{"id": 5628621003, "name": "Former Manager", "schedulable": false, "interview_kit": {"id": 5628616003, "content": null, "questions": []}, "estimated_minutes": 15, "default_interviewer_users": []}]}, "emitted_at": 1664285644044} -{"stream": "jobs_stages", "data": {"id": 5245808003, "name": "Offer", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 5, "interviews": []}, "emitted_at": 1664285644044} -{"stream": "jobs_stages", "data": {"id": 5245818003, "name": "Application Review", "created_at": "2020-11-24T23:27:45.704Z", "updated_at": "2020-11-24T23:27:45.704Z", "active": true, "job_id": 4177048003, "priority": 0, "interviews": [{"id": 5628634003, "name": "Application Review", "schedulable": false, "interview_kit": {"id": 5628629003, "content": null, "questions": []}, "estimated_minutes": 1, "default_interviewer_users": []}]}, "emitted_at": 1664285644324} -{"stream": "jobs_stages", "data": {"id": 5245819003, "name": "Preliminary Phone Screen", "created_at": "2020-11-24T23:27:45.704Z", "updated_at": "2020-11-24T23:27:45.704Z", "active": true, "job_id": 4177048003, "priority": 1, "interviews": [{"id": 5628635003, "name": "Preliminary Screening Call", "schedulable": true, "interview_kit": {"id": 5628630003, "content": null, "questions": []}, "estimated_minutes": 20, "default_interviewer_users": []}]}, "emitted_at": 1664285644324} -{"stream": "jobs_stages", "data": {"id": 5245820003, "name": "Phone Interview", "created_at": "2020-11-24T23:27:45.704Z", "updated_at": "2020-11-24T23:27:45.704Z", "active": true, "job_id": 4177048003, "priority": 2, "interviews": [{"id": 5628636003, "name": "Behavioral Phone Interview", "schedulable": true, "interview_kit": {"id": 5628631003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}]}, "emitted_at": 1664285644324} -{"stream": "jobs_stages", "data": {"id": 5245821003, "name": "Face to Face", "created_at": "2020-11-24T23:27:45.704Z", "updated_at": "2020-11-24T23:27:45.704Z", "active": true, "job_id": 4177048003, "priority": 3, "interviews": [{"id": 5628637003, "name": "Cultural Add Interview", "schedulable": true, "interview_kit": {"id": 5628632003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}, {"id": 5628638003, "name": "Peer Panel Interview", "schedulable": true, "interview_kit": {"id": 5628633003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}, {"id": 5628639003, "name": "Case Study", "schedulable": true, "interview_kit": {"id": 5628634003, "content": null, "questions": []}, "estimated_minutes": 45, "default_interviewer_users": []}, {"id": 5628640003, "name": "Executive Interview", "schedulable": true, "interview_kit": {"id": 5628635003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}]}, "emitted_at": 1664285644325} -{"stream": "jobs_stages", "data": {"id": 5245822003, "name": "Reference Check", "created_at": "2020-11-24T23:27:45.704Z", "updated_at": "2020-11-24T23:27:45.704Z", "active": true, "job_id": 4177048003, "priority": 4, "interviews": [{"id": 5628641003, "name": "Former Manager", "schedulable": false, "interview_kit": {"id": 5628636003, "content": null, "questions": []}, "estimated_minutes": 15, "default_interviewer_users": []}]}, "emitted_at": 1664285644325} -{"stream": "jobs_stages", "data": {"id": 5245823003, "name": "Offer", "created_at": "2020-11-24T23:27:45.704Z", "updated_at": "2020-11-24T23:27:45.704Z", "active": true, "job_id": 4177048003, "priority": 5, "interviews": []}, "emitted_at": 1664285644325} -{"stream": "jobs_stages", "data": {"id": 7179760003, "name": "Application Review", "created_at": "2021-10-08T08:19:42.584Z", "updated_at": "2021-10-08T08:19:42.584Z", "active": true, "job_id": 4446240003, "priority": 0, "interviews": [{"id": 8010560003, "name": "Application Review", "schedulable": false, "interview_kit": {"id": 8010544003, "content": "

    \r\n
    Triage the inbox
    \r\n
      \r\n
    • Quickly knock out any applications that are spam, duplicates, or clearly not worth your time
    • \r\n
    • Pass along qualified applicants to the next stage for assessment
    • \r\n
    • Reject any applicants who lack the necessary experience or required skills, or whose applications have poor grammar, spelling, or formatting 
    • \r\n
    \r\n

    ", "questions": []}, "estimated_minutes": 1, "default_interviewer_users": []}]}, "emitted_at": 1664285644542} -{"stream": "jobs_stages", "data": {"id": 7179761003, "name": "Preliminary Phone Screen", "created_at": "2021-10-08T08:19:42.606Z", "updated_at": "2021-10-08T08:19:42.606Z", "active": true, "job_id": 4446240003, "priority": 1, "interviews": [{"id": 8010561003, "name": "Preliminary Screening Call", "schedulable": true, "interview_kit": {"id": 8010545003, "content": "
    Purpose
    \r\n
      \r\n
    • High-level screening call to make sure the candidate meets the basic requirements
    • \r\n
    \r\n
    Sample Questions
    \r\n
      \r\n
    • Explain the company and the job to the candidate: is it what he/she is looking for?
    • \r\n
    • Walk through his/her resume – are there any red flags?
    • \r\n
    • Find out what the candidate is looking for in his/her ideal role. Write this down so you can refer to this later!
    • \r\n
    • Get the candidate's desired salary range: is it in line with the compensation package?
    • \r\n
    • Tell the candidate what to expect next in your process
    • \r\n
    \r\n

    ", "questions": []}, "estimated_minutes": 20, "default_interviewer_users": []}]}, "emitted_at": 1664285644542} -{"stream": "jobs_stages", "data": {"id": 7179762003, "name": "Phone Interview", "created_at": "2021-10-08T08:19:42.620Z", "updated_at": "2021-10-08T08:19:42.620Z", "active": true, "job_id": 4446240003, "priority": 2, "interviews": [{"id": 8010562003, "name": "Behavioral Phone Interview", "schedulable": true, "interview_kit": {"id": 8010546003, "content": "
    Purpose
    \r\n
      \r\n
    • Dig in deeper with a set of behavioral questions that target your desired skill set
    • \r\n
    • Specifically look for the following attributes: [Insert desired attributes here]
    • \r\n
    • Determine whether the candidate should be brought in for a face-to-face interview
    • \r\n
    \r\n
    Sample Questions
    \r\n
      \r\n
    • Have the candidate give you concrete examples of times when they demonstrated strengths in your desired skill set
    • \r\n
    • Ask a few open-ended “why” questions
    • \r\n
    • Let the candidate know what to expect next in your process
    • \r\n
    ", "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}]}, "emitted_at": 1664285644542} -{"stream": "jobs_stages", "data": {"id": 7179763003, "name": "Face to Face", "created_at": "2021-10-08T08:19:42.632Z", "updated_at": "2021-10-08T08:19:42.632Z", "active": true, "job_id": 4446240003, "priority": 3, "interviews": [{"id": 8010563003, "name": "Cultural Add Interview", "schedulable": true, "interview_kit": {"id": 8010547003, "content": "
    Purpose
    \r\n
      \r\n
    • Determine whether or not the candidate would be a strong addition to the organization
    • \r\n
    • Do they live by your company values? [Insert Company Values Here]
    • \r\n
    \r\n
    Sample Questions
    \r\n
      \r\n
    • Ask the candidate for specific examples of times when they demonstrated your company values, e.g., “Tell me about a time when you took ownership of a project from start to finish”
    • \r\n
    • Ask about their motivations in their work - what excites them, what worries them, how do they work best, etc.
    • \r\n
    • Let the candidate know what they should expect next in your process
    • \r\n
    ", "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}, {"id": 8010564003, "name": "Peer Panel Interview", "schedulable": true, "interview_kit": {"id": 8010548003, "content": "
      \r\n
    • Ask the candidate behavioral questions that target the skills and personality traits you're looking for
    • \r\n
    • Specifically dig in on the following skills: [Insert skills and traits here]
    • \r\n
    \r\n
    Sample Questions
    \r\n
      \r\n
    • Have the candidate give you concrete examples of times when they demonstrated strengths in your desired skill set
    • \r\n
    • Ask a few open-ended “why” questions
    • \r\n
    • Is this someone who you want to work with and would add value to the team?
    • \r\n
    • Let the candidate know what to expect next in your process
    • \r\n
    ", "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}, {"id": 8010565003, "name": "Case Study", "schedulable": true, "interview_kit": {"id": 8010549003, "content": "

    [FIll in your case study problem here]

    \r\n

     

    \r\n
      \r\n
    • Prepare a case study or problem for the candidate that mimics a real-world situation that he/she would face in the role
    • \r\n
    • Does the candidate approach the problem analytically and logically?
    • \r\n
    • Ask why he/she made certain decisions. Do they demonstrate a desired way of thinking?
    • \r\n
    • Ask follow-up questions to test the candidate further. (e.g., “What would you do this happened? How would you handle the following objection by a superior?”)
    • \r\n
    • Let the candidate know what they should expect next in your process
    • \r\n
    ", "questions": []}, "estimated_minutes": 45, "default_interviewer_users": []}, {"id": 8010566003, "name": "Executive Interview", "schedulable": true, "interview_kit": {"id": 8010550003, "content": "
      \r\n
    • Unstructured conversation between Executive or Hiring Manager and the candidate
    • \r\n
    • Find out what motivates the candidate. What would they be most excited about if offered the position? What would they be most nervous about?
    • \r\n
    • Sell the candidate on the vision of the company and the quality of the team
    • \r\n
    • Answer any questions the candidate may have
    • \r\n
    • Let the candidate know what to expect next in your process
    • \r\n
    ", "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}]}, "emitted_at": 1664285644542} -{"stream": "jobs_stages", "data": {"id": 7179764003, "name": "Reference Check", "created_at": "2021-10-08T08:19:42.665Z", "updated_at": "2021-10-08T08:19:42.665Z", "active": true, "job_id": 4446240003, "priority": 4, "interviews": [{"id": 8010567003, "name": "Former Manager", "schedulable": false, "interview_kit": {"id": 8010551003, "content": "
      \r\n
    • Have a quick chat with a former boss and confirm what the candidate said. Did the candidate accurately represent his/her responsibilities in their previous job?
    • \r\n
    • What does the boss think the candidate's biggest strengths are? What would the boss be most concerned about if hiring the candidate again?
    • \r\n
    • Ask about any red flags or questions you might have about the candidate
    • \r\n
    ", "questions": []}, "estimated_minutes": 15, "default_interviewer_users": []}]}, "emitted_at": 1664285644543} -{"stream": "jobs_stages", "data": {"id": 7179765003, "name": "Offer", "created_at": "2021-10-08T08:19:42.679Z", "updated_at": "2021-10-08T08:19:42.679Z", "active": true, "job_id": 4446240003, "priority": 5, "interviews": []}, "emitted_at": 1664285644543} -{"stream": "jobs_stages", "data": {"id": 7332462003, "name": "Application Review", "created_at": "2021-11-03T19:46:51.185Z", "updated_at": "2021-11-03T19:46:51.185Z", "active": true, "job_id": 4466310003, "priority": 0, "interviews": [{"id": 8202995003, "name": "Application Review", "schedulable": false, "interview_kit": {"id": 8202979003, "content": null, "questions": []}, "estimated_minutes": 1, "default_interviewer_users": []}]}, "emitted_at": 1664285644747} -{"stream": "jobs_stages", "data": {"id": 7332463003, "name": "Offer", "created_at": "2021-11-03T19:46:51.185Z", "updated_at": "2021-11-03T19:46:51.185Z", "active": true, "job_id": 4466310003, "priority": 1, "interviews": []}, "emitted_at": 1664285644747} \ No newline at end of file +{"stream": "applications", "data": {"status": "active", "source": {"public_name": "HRMARKET", "id": 4000067003}, "rejection_reason": null, "rejection_details": null, "rejected_at": null, "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": {"name": "John Lafleur", "id": 4218086003}}, "prospect": true, "location": null, "last_activity_at": "2020-11-24T23:24:37.049Z", "jobs": [], "job_post_id": null, "id": 19214950003, "current_stage": null, "credited_to": {"name": "John Lafleur", "last_name": "Lafleur", "id": 4218086003, "first_name": "John", "employee_id": null}, "candidate_id": 17130511003, "attachments": [], "applied_at": "2020-11-24T23:24:37.023Z", "answers": []}, "emitted_at": 1671104666954} +{"stream": "applications", "data": {"status": "active", "source": {"public_name": "Jobs page on your website", "id": 4000177003}, "rejection_reason": null, "rejection_details": null, "rejected_at": null, "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": {"name": "John Lafleur", "id": 4218086003}}, "prospect": true, "location": null, "last_activity_at": "2020-11-24T23:25:13.804Z", "jobs": [], "job_post_id": null, "id": 19214993003, "current_stage": null, "credited_to": {"name": "John Lafleur", "last_name": "Lafleur", "id": 4218086003, "first_name": "John", "employee_id": null}, "candidate_id": 17130554003, "attachments": [], "applied_at": "2020-11-24T23:25:13.781Z", "answers": []}, "emitted_at": 1671104666958} +{"stream": "candidates", "data": {"website_addresses": [], "updated_at": "2020-11-24T23:24:37.050Z", "title": null, "tags": [], "social_media_addresses": [], "recruiter": null, "photo_url": null, "phone_numbers": [], "last_name": "Test", "last_activity": "2020-11-24T23:24:37.049Z", "is_private": false, "id": 17130511003, "first_name": "Test", "employments": [], "email_addresses": [], "educations": [], "created_at": "2020-11-24T23:24:37.018Z", "coordinator": null, "company": null, "can_email": true, "attachments": [], "applications": [{"status": "active", "source": {"public_name": "HRMARKET", "id": 4000067003}, "rejection_reason": null, "rejection_details": null, "rejected_at": null, "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": {"name": "John Lafleur", "id": 4218086003}}, "prospect": true, "location": null, "last_activity_at": "2020-11-24T23:24:37.049Z", "jobs": [], "job_post_id": null, "id": 19214950003, "current_stage": null, "credited_to": {"name": "John Lafleur", "last_name": "Lafleur", "id": 4218086003, "first_name": "John", "employee_id": null}, "candidate_id": 17130511003, "attachments": [], "applied_at": "2020-11-24T23:24:37.023Z", "answers": []}], "application_ids": [19214950003], "addresses": []}, "emitted_at": 1671104667481} +{"stream": "candidates", "data": {"website_addresses": [], "updated_at": "2020-11-24T23:25:13.806Z", "title": null, "tags": [], "social_media_addresses": [], "recruiter": null, "photo_url": null, "phone_numbers": [], "last_name": "Test2", "last_activity": "2020-11-24T23:25:13.804Z", "is_private": false, "id": 17130554003, "first_name": "Test2", "employments": [], "email_addresses": [], "educations": [], "created_at": "2020-11-24T23:25:13.777Z", "coordinator": null, "company": null, "can_email": true, "attachments": [], "applications": [{"status": "active", "source": {"public_name": "Jobs page on your website", "id": 4000177003}, "rejection_reason": null, "rejection_details": null, "rejected_at": null, "prospective_office": null, "prospective_department": null, "prospect_detail": {"prospect_stage": null, "prospect_pool": null, "prospect_owner": {"name": "John Lafleur", "id": 4218086003}}, "prospect": true, "location": null, "last_activity_at": "2020-11-24T23:25:13.804Z", "jobs": [], "job_post_id": null, "id": 19214993003, "current_stage": null, "credited_to": {"name": "John Lafleur", "last_name": "Lafleur", "id": 4218086003, "first_name": "John", "employee_id": null}, "candidate_id": 17130554003, "attachments": [], "applied_at": "2020-11-24T23:25:13.781Z", "answers": []}], "application_ids": [19214993003], "addresses": []}, "emitted_at": 1671104667484} +{"stream": "close_reasons", "data": {"id": 4010635003, "name": "Not Filling"}, "emitted_at": 1671104667975} +{"stream": "close_reasons", "data": {"id": 4010634003, "name": "On Hold"}, "emitted_at": 1671104667977} +{"stream": "close_reasons", "data": {"id": 4010633003, "name": "Hire - New Headcount"}, "emitted_at": 1671104667978} +{"stream": "close_reasons", "data": {"id": 4010632003, "name": "Hire - Backfill"}, "emitted_at": 1671104667980} +{"stream": "degrees", "data": {"id": 10848287003, "name": "High School", "priority": 0, "external_id": null}, "emitted_at": 1671104668454} +{"stream": "degrees", "data": {"id": 10848288003, "name": "Associate's Degree", "priority": 1, "external_id": null}, "emitted_at": 1671104668455} +{"stream": "degrees", "data": {"id": 10848289003, "name": "Bachelor's Degree", "priority": 2, "external_id": null}, "emitted_at": 1671104668457} +{"stream": "degrees", "data": {"id": 10848290003, "name": "Master's Degree", "priority": 3, "external_id": null}, "emitted_at": 1671104668458} +{"stream": "departments", "data": {"id": 4028123003, "name": "test dep 2", "parent_id": null, "parent_department_external_id": null, "child_ids": [], "child_department_external_ids": [], "external_id": null}, "emitted_at": 1671104680251} +{"stream": "departments", "data": {"id": 4028122003, "name": "Test dep1", "parent_id": null, "parent_department_external_id": null, "child_ids": [], "child_department_external_ids": [], "external_id": null}, "emitted_at": 1671104680253} +{"stream": "job_posts", "data": {"id": 4252332003, "active": true, "live": false, "first_published_at": null, "title": "Test job", "location": {"id": 4219721003, "name": "test", "office_id": null, "job_post_location_type": {"id": 4000000003, "name": "Free Text"}}, "internal": false, "external": true, "job_id": 4177046003, "content": "

    Test description

    ", "internal_content": null, "updated_at": "2021-04-02T17:38:54.835Z", "created_at": "2020-11-24T23:29:24.315Z", "demographic_question_set_id": null, "questions": [{"required": true, "private": false, "label": "First Name", "name": "first_name", "type": "short_text", "values": [], "description": null}, {"required": true, "private": false, "label": "Last Name", "name": "last_name", "type": "short_text", "values": [], "description": null}, {"required": true, "private": false, "label": "Email", "name": "email", "type": "short_text", "values": [], "description": null}, {"required": false, "private": false, "label": "Phone", "name": "phone", "type": "short_text", "values": [], "description": null}, {"required": false, "private": false, "label": "Resume", "name": "resume", "type": "attachment", "values": [], "description": null}, {"required": false, "private": false, "label": "Cover Letter", "name": "cover_letter", "type": "attachment", "values": [], "description": null}, {"required": null, "private": false, "label": "LinkedIn Profile", "name": "question_5125927003", "type": "short_text", "values": [], "description": null}, {"required": null, "private": false, "label": "Website", "name": "question_5125928003", "type": "short_text", "values": [], "description": null}]}, "emitted_at": 1671104680729} +{"stream": "job_posts", "data": {"id": 4751597003, "active": true, "live": false, "first_published_at": null, "title": "Test Job 2", "location": {"id": 4700649003, "name": "US", "office_id": null, "job_post_location_type": {"id": 4000000003, "name": "Free Text"}}, "internal": false, "external": true, "job_id": 4177048003, "content": "

    Job post content

    ", "internal_content": null, "updated_at": "2021-10-07T18:46:59.032Z", "created_at": "2021-10-07T18:46:58.846Z", "demographic_question_set_id": null, "questions": [{"required": true, "private": false, "label": "First Name", "name": "first_name", "type": "short_text", "values": [], "description": null}, {"required": true, "private": false, "label": "Last Name", "name": "last_name", "type": "short_text", "values": [], "description": null}, {"required": true, "private": false, "label": "Email", "name": "email", "type": "short_text", "values": [], "description": null}, {"required": false, "private": false, "label": "Phone", "name": "phone", "type": "short_text", "values": [], "description": null}, {"required": false, "private": false, "label": "Resume", "name": "resume", "type": "attachment", "values": [], "description": null}, {"required": false, "private": false, "label": "Cover Letter", "name": "cover_letter", "type": "attachment", "values": [], "description": null}, {"required": null, "private": false, "label": "LinkedIn Profile", "name": "question_7911674003", "type": "short_text", "values": [], "description": null}, {"required": null, "private": false, "label": "Website", "name": "question_7911675003", "type": "short_text", "values": [], "description": null}]}, "emitted_at": 1671104680732} +{"stream": "jobs", "data": {"id": 4177046003, "name": "Test job", "requisition_id": "3", "notes": null, "confidential": false, "is_template": true, "copied_from_id": null, "status": "open", "created_at": "2020-11-24T23:27:11.699Z", "opened_at": "2020-11-24T23:27:11.878Z", "closed_at": null, "updated_at": "2021-04-21T17:48:24.779Z", "departments": [{"id": 4028122003, "name": "Test dep1", "parent_id": null, "parent_department_external_id": null, "child_ids": [], "child_department_external_ids": [], "external_id": null}], "offices": [{"id": 4019854003, "name": "Test office", "location": {"name": null}, "primary_contact_user_id": 4218086003, "parent_id": null, "parent_office_external_id": null, "child_ids": [], "child_office_external_ids": [], "external_id": null}], "hiring_team": {"hiring_managers": [], "recruiters": [], "coordinators": [], "sourcers": []}, "openings": [{"id": 4320015003, "opening_id": "3-1", "status": "open", "opened_at": "2020-11-24T23:27:11.723Z", "closed_at": null, "application_id": null, "close_reason": null}], "custom_fields": {"employment_type": null}, "keyed_custom_fields": {"employment_type": {"name": "Employment Type", "type": "single_select", "value": null}}}, "emitted_at": 1671104681275} +{"stream": "jobs", "data": {"id": 4177048003, "name": "Test Job 2", "requisition_id": "4", "notes": null, "confidential": false, "is_template": false, "copied_from_id": null, "status": "open", "created_at": "2020-11-24T23:27:45.634Z", "opened_at": "2020-11-24T23:27:45.878Z", "closed_at": null, "updated_at": "2021-10-07T18:46:58.982Z", "departments": [{"id": 4028123003, "name": "test dep 2", "parent_id": null, "parent_department_external_id": null, "child_ids": [], "child_department_external_ids": [], "external_id": null}], "offices": [{"id": 4019854003, "name": "Test office", "location": {"name": null}, "primary_contact_user_id": 4218086003, "parent_id": null, "parent_office_external_id": null, "child_ids": [], "child_office_external_ids": [], "external_id": null}], "hiring_team": {"hiring_managers": [], "recruiters": [], "coordinators": [], "sourcers": []}, "openings": [{"id": 4320018003, "opening_id": "4-1", "status": "open", "opened_at": "2020-11-24T23:27:45.665Z", "closed_at": null, "application_id": null, "close_reason": null}], "custom_fields": {"employment_type": null}, "keyed_custom_fields": {"employment_type": {"name": "Employment Type", "type": "single_select", "value": null}}}, "emitted_at": 1671104681278} +{"stream": "offers", "data": {"id": 4154100003, "version": 1, "application_id": 19215333003, "created_at": "2020-11-24T23:32:25.760Z", "updated_at": "2020-11-24T23:32:25.772Z", "sent_at": null, "resolved_at": null, "starts_at": "2020-12-04", "status": "unresolved", "job_id": 4177048003, "candidate_id": 17130848003, "opening": {"id": 4320018003, "opening_id": "4-1", "status": "open", "opened_at": "2020-11-24T23:27:45.665Z", "closed_at": null, "application_id": null, "close_reason": null}, "custom_fields": {"employment_type": "Contract"}, "keyed_custom_fields": {"employment_type": {"name": "Employment Type", "type": "single_select", "value": "Contract"}}}, "emitted_at": 1671104681765} +{"stream": "scorecards", "data": {"id": 5253031003, "updated_at": "2020-11-24T23:33:10.440Z", "created_at": "2020-11-24T23:33:10.440Z", "interview": "Application Review", "interview_step": {"id": 5628634003, "name": "Application Review"}, "candidate_id": 17130848003, "application_id": 19215333003, "interviewed_at": "2020-11-25T01:00:00.000Z", "submitted_by": {"id": 4218086003, "first_name": "John", "last_name": "Lafleur", "name": "John Lafleur", "employee_id": null}, "interviewer": {"id": 4218086003, "first_name": "John", "last_name": "Lafleur", "name": "John Lafleur", "employee_id": null}, "submitted_at": "2020-11-24T23:33:10.440Z", "overall_recommendation": "no_decision", "attributes": [{"name": "Willing to do required travel", "type": "Details", "note": null, "rating": "no_decision"}, {"name": "Three to five years of experience", "type": "Qualifications", "note": null, "rating": "no_decision"}, {"name": "Personable", "type": "Personality Traits", "note": null, "rating": "no_decision"}, {"name": "Passionate", "type": "Personality Traits", "note": null, "rating": "no_decision"}, {"name": "Organizational Skills", "type": "Skills", "note": null, "rating": "no_decision"}, {"name": "Manage competing priorities", "type": "Skills", "note": null, "rating": "no_decision"}, {"name": "Fits our salary range", "type": "Details", "note": null, "rating": "no_decision"}, {"name": "Empathetic", "type": "Personality Traits", "note": null, "rating": "no_decision"}, {"name": "Currently based locally", "type": "Details", "note": null, "rating": "no_decision"}, {"name": "Communication", "type": "Skills", "note": null, "rating": "no_decision"}], "ratings": {"definitely_not": [], "no": [], "mixed": [], "yes": [], "strong_yes": []}, "questions": [{"id": null, "question": "Key Take-Aways", "answer": ""}, {"id": null, "question": "Private Notes", "answer": ""}]}, "emitted_at": 1671104682247} +{"stream": "scorecards", "data": {"id": 9664505003, "updated_at": "2021-09-29T17:23:11.468Z", "created_at": "2021-09-29T17:23:11.468Z", "interview": "Preliminary Screening Call", "interview_step": {"id": 5628615003, "name": "Preliminary Screening Call"}, "candidate_id": 40517966003, "application_id": 44937562003, "interviewed_at": "2021-09-29T01:00:00.000Z", "submitted_by": {"id": 4218086003, "first_name": "John", "last_name": "Lafleur", "name": "John Lafleur", "employee_id": null}, "interviewer": {"id": 4218086003, "first_name": "John", "last_name": "Lafleur", "name": "John Lafleur", "employee_id": null}, "submitted_at": "2021-09-29T17:23:11.468Z", "overall_recommendation": "no_decision", "attributes": [{"name": "Willing to do required travel", "type": "Details", "note": null, "rating": "yes"}, {"name": "Three to five years of experience", "type": "Qualifications", "note": null, "rating": "mixed"}, {"name": "Personable", "type": "Personality Traits", "note": null, "rating": "yes"}, {"name": "Passionate", "type": "Personality Traits", "note": null, "rating": "mixed"}, {"name": "Organizational Skills", "type": "Skills", "note": null, "rating": "yes"}, {"name": "Manage competing priorities", "type": "Skills", "note": null, "rating": "yes"}, {"name": "Fits our salary range", "type": "Details", "note": null, "rating": "yes"}, {"name": "Empathetic", "type": "Personality Traits", "note": null, "rating": "strong_yes"}, {"name": "Currently based locally", "type": "Details", "note": null, "rating": "mixed"}, {"name": "Communication", "type": "Skills", "note": null, "rating": "no"}], "ratings": {"definitely_not": [], "no": ["Communication"], "mixed": ["Three to five years of experience", "Passionate", "Currently based locally"], "yes": ["Willing to do required travel", "Personable", "Organizational Skills", "Manage competing priorities", "Fits our salary range"], "strong_yes": ["Empathetic"]}, "questions": [{"id": null, "question": "Key Take-Aways", "answer": "test"}, {"id": null, "question": "Private Notes", "answer": ""}]}, "emitted_at": 1671104682249} +{"stream": "users", "data": {"id": 4218085003, "name": "Greenhouse Admin", "first_name": "Greenhouse", "last_name": "Admin", "primary_email_address": "scrubbed_email_vq8-rm4513etm7xxd9d1qq@example.com", "updated_at": "2020-11-18T14:09:08.401Z", "created_at": "2020-11-18T14:09:08.401Z", "disabled": false, "site_admin": true, "emails": ["scrubbed_email_vq8-rm4513etm7xxd9d1qq@example.com"], "employee_id": null, "linked_candidate_ids": [], "offices": [], "departments": []}, "emitted_at": 1671104682731} +{"stream": "users", "data": {"id": 4218086003, "name": "John Lafleur", "first_name": "John", "last_name": "Lafleur", "primary_email_address": "integration-test@airbyte.io", "updated_at": "2022-09-27T13:00:12.685Z", "created_at": "2020-11-18T14:09:08.481Z", "disabled": false, "site_admin": true, "emails": ["integration-test@airbyte.io"], "employee_id": null, "linked_candidate_ids": [], "offices": [], "departments": []}, "emitted_at": 1671104682734} +{"stream": "custom_fields", "data": {"id": 4680899003, "name": "Degree", "active": true, "field_type": "candidate", "priority": 1, "value_type": "single_select", "private": false, "required": false, "require_approval": false, "trigger_new_version": false, "name_key": "degree", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": [{"id": 10848287003, "name": "High School", "priority": 0, "external_id": null}, {"id": 10848288003, "name": "Associate's Degree", "priority": 1, "external_id": null}, {"id": 10848289003, "name": "Bachelor's Degree", "priority": 2, "external_id": null}, {"id": 10848290003, "name": "Master's Degree", "priority": 3, "external_id": null}, {"id": 10848291003, "name": "Master of Business Administration (M.B.A.)", "priority": 4, "external_id": null}, {"id": 10848292003, "name": "Juris Doctor (J.D.)", "priority": 5, "external_id": null}, {"id": 10848293003, "name": "Doctor of Medicine (M.D.)", "priority": 6, "external_id": null}, {"id": 10848294003, "name": "Doctor of Philosophy (Ph.D.)", "priority": 7, "external_id": null}, {"id": 10848295003, "name": "Engineer's Degree", "priority": 8, "external_id": null}, {"id": 10848296003, "name": "Other", "priority": 9, "external_id": null}]}, "emitted_at": 1671104683544} +{"stream": "custom_fields", "data": {"id": 4680900003, "name": "Discipline", "active": true, "field_type": "candidate", "priority": 2, "value_type": "single_select", "private": false, "required": false, "require_approval": false, "trigger_new_version": false, "name_key": "discipline", "description": null, "expose_in_job_board_api": false, "api_only": false, "offices": [], "departments": [], "template_token_string": null, "custom_field_options": [{"id": 10848297003, "name": "Accounting", "priority": 0, "external_id": null}, {"id": 10848298003, "name": "African Studies", "priority": 1, "external_id": null}, {"id": 10848299003, "name": "Agriculture", "priority": 2, "external_id": null}, {"id": 10848300003, "name": "Anthropology", "priority": 3, "external_id": null}, {"id": 10848301003, "name": "Applied Health Services", "priority": 4, "external_id": null}, {"id": 10848302003, "name": "Architecture", "priority": 5, "external_id": null}, {"id": 10848303003, "name": "Art", "priority": 6, "external_id": null}, {"id": 10848304003, "name": "Asian Studies", "priority": 7, "external_id": null}, {"id": 10848305003, "name": "Biology", "priority": 8, "external_id": null}, {"id": 10848306003, "name": "Business", "priority": 9, "external_id": null}, {"id": 10848307003, "name": "Business Administration", "priority": 10, "external_id": null}, {"id": 10848308003, "name": "Chemistry", "priority": 11, "external_id": null}, {"id": 10848309003, "name": "Classical Languages", "priority": 12, "external_id": null}, {"id": 10848310003, "name": "Communications & Film", "priority": 13, "external_id": null}, {"id": 10848311003, "name": "Computer Science", "priority": 14, "external_id": null}, {"id": 10848312003, "name": "Dentistry", "priority": 15, "external_id": null}, {"id": 10848313003, "name": "Developing Nations", "priority": 16, "external_id": null}, {"id": 10848314003, "name": "Discipline Unknown", "priority": 17, "external_id": null}, {"id": 10848315003, "name": "Earth Sciences", "priority": 18, "external_id": null}, {"id": 10848316003, "name": "Economics", "priority": 19, "external_id": null}, {"id": 10848317003, "name": "Education", "priority": 20, "external_id": null}, {"id": 10848318003, "name": "Electronics", "priority": 21, "external_id": null}, {"id": 10848319003, "name": "Engineering", "priority": 22, "external_id": null}, {"id": 10848320003, "name": "English Studies", "priority": 23, "external_id": null}, {"id": 10848321003, "name": "Environmental Studies", "priority": 24, "external_id": null}, {"id": 10848322003, "name": "European Studies", "priority": 25, "external_id": null}, {"id": 10848323003, "name": "Fashion", "priority": 26, "external_id": null}, {"id": 10848324003, "name": "Finance", "priority": 27, "external_id": null}, {"id": 10848325003, "name": "Fine Arts", "priority": 28, "external_id": null}, {"id": 10848326003, "name": "General Studies", "priority": 29, "external_id": null}, {"id": 10848327003, "name": "Health Services", "priority": 30, "external_id": null}, {"id": 10848328003, "name": "History", "priority": 31, "external_id": null}, {"id": 10848329003, "name": "Human Resources Management", "priority": 32, "external_id": null}, {"id": 10848330003, "name": "Humanities", "priority": 33, "external_id": null}, {"id": 10848331003, "name": "Industrial Arts & Carpentry", "priority": 34, "external_id": null}, {"id": 10848332003, "name": "Information Systems", "priority": 35, "external_id": null}, {"id": 10848333003, "name": "International Relations", "priority": 36, "external_id": null}, {"id": 10848334003, "name": "Journalism", "priority": 37, "external_id": null}, {"id": 10848335003, "name": "Languages", "priority": 38, "external_id": null}, {"id": 10848336003, "name": "Latin American Studies", "priority": 39, "external_id": null}, {"id": 10848337003, "name": "Law", "priority": 40, "external_id": null}, {"id": 10848338003, "name": "Linguistics", "priority": 41, "external_id": null}, {"id": 10848339003, "name": "Manufacturing & Mechanics", "priority": 42, "external_id": null}, {"id": 10848340003, "name": "Mathematics", "priority": 43, "external_id": null}, {"id": 10848341003, "name": "Medicine", "priority": 44, "external_id": null}, {"id": 10848342003, "name": "Middle Eastern Studies", "priority": 45, "external_id": null}, {"id": 10848343003, "name": "Naval Science", "priority": 46, "external_id": null}, {"id": 10848344003, "name": "North American Studies", "priority": 47, "external_id": null}, {"id": 10848345003, "name": "Nuclear Technics", "priority": 48, "external_id": null}, {"id": 10848346003, "name": "Operations Research & Strategy", "priority": 49, "external_id": null}, {"id": 10848347003, "name": "Organizational Theory", "priority": 50, "external_id": null}, {"id": 10848348003, "name": "Philosophy", "priority": 51, "external_id": null}, {"id": 10848349003, "name": "Physical Education", "priority": 52, "external_id": null}, {"id": 10848350003, "name": "Physical Sciences", "priority": 53, "external_id": null}, {"id": 10848351003, "name": "Physics", "priority": 54, "external_id": null}, {"id": 10848352003, "name": "Political Science", "priority": 55, "external_id": null}, {"id": 10848353003, "name": "Psychology", "priority": 56, "external_id": null}, {"id": 10848354003, "name": "Public Policy", "priority": 57, "external_id": null}, {"id": 10848355003, "name": "Public Service", "priority": 58, "external_id": null}, {"id": 10848356003, "name": "Religious Studies", "priority": 59, "external_id": null}, {"id": 10848357003, "name": "Russian & Soviet Studies", "priority": 60, "external_id": null}, {"id": 10848358003, "name": "Scandinavian Studies", "priority": 61, "external_id": null}, {"id": 10848359003, "name": "Science", "priority": 62, "external_id": null}, {"id": 10848360003, "name": "Slavic Studies", "priority": 63, "external_id": null}, {"id": 10848361003, "name": "Social Science", "priority": 64, "external_id": null}, {"id": 10848362003, "name": "Social Sciences", "priority": 65, "external_id": null}, {"id": 10848363003, "name": "Sociology", "priority": 66, "external_id": null}, {"id": 10848364003, "name": "Speech", "priority": 67, "external_id": null}, {"id": 10848365003, "name": "Statistics & Decision Theory", "priority": 68, "external_id": null}, {"id": 10848366003, "name": "Urban Studies", "priority": 69, "external_id": null}, {"id": 10848367003, "name": "Veterinary Medicine", "priority": 70, "external_id": null}, {"id": 10848368003, "name": "Other", "priority": 71, "external_id": null}]}, "emitted_at": 1671104683546} +{"stream": "demographics_question_sets", "data": {"title": "Test Question Set 1", "id": 4000197003, "description": "

    Test Question Set 1 description

    ", "active": true}, "emitted_at": 1671104684218} +{"stream": "demographics_question_sets", "data": {"title": "Test Question Set 2", "id": 4000198003, "description": "

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

    ", "active": true}, "emitted_at": 1671104684219} +{"stream": "demographics_questions", "data": {"translations": [{"name": "q1", "language": "en"}], "required": false, "name": "q1", "id": 4000714003, "demographic_question_set_id": 4000197003, "answer_type": "multi_value_single_select", "active": true}, "emitted_at": 1671104684819} +{"stream": "demographics_questions", "data": {"translations": [{"name": "q2", "language": "en"}], "required": false, "name": "q2", "id": 4000715003, "demographic_question_set_id": 4000197003, "answer_type": "multi_value_multi_select", "active": true}, "emitted_at": 1671104684822} +{"stream": "demographics_questions", "data": {"translations": [{"name": "question1", "language": "en"}], "required": false, "name": "question1", "id": 4000716003, "demographic_question_set_id": 4000198003, "answer_type": "multi_value_multi_select", "active": true}, "emitted_at": 1671104684823} +{"stream": "demographics_answer_options", "data": {"translations": [{"name": "a1", "language": "en"}], "name": "a1", "id": 4004258003, "free_form": false, "demographic_question_id": 4000714003, "active": true}, "emitted_at": 1671104685443} +{"stream": "demographics_answer_options", "data": {"translations": [{"name": "a2", "language": "en"}], "name": "a2", "id": 4004259003, "free_form": false, "demographic_question_id": 4000715003, "active": true}, "emitted_at": 1671104685445} +{"stream": "demographics_answer_options", "data": {"translations": [{"name": "a3", "language": "en"}], "name": "a3", "id": 4004260003, "free_form": false, "demographic_question_id": 4000715003, "active": true}, "emitted_at": 1671104685446} +{"stream": "demographics_answers", "data": {"updated_at": "2021-11-03T19:56:07.248Z", "id": 9308815003, "free_form_text": null, "demographic_question_id": 4000716003, "demographic_answer_option_id": 4004262003, "created_at": "2021-11-03T19:56:07.248Z", "application_id": 47459993003}, "emitted_at": 1671104686128} +{"stream": "demographics_answers", "data": {"updated_at": "2021-11-03T19:56:07.252Z", "id": 9308816003, "free_form_text": "custom answer", "demographic_question_id": 4000716003, "demographic_answer_option_id": 4004263003, "created_at": "2021-11-03T19:56:07.252Z", "application_id": 47459993003}, "emitted_at": 1671104686131} +{"stream": "demographics_answers", "data": {"updated_at": "2021-11-03T19:56:07.259Z", "id": 9308817003, "free_form_text": null, "demographic_question_id": 4000717003, "demographic_answer_option_id": 4004266003, "created_at": "2021-11-03T19:56:07.259Z", "application_id": 47459993003}, "emitted_at": 1671104686133} +{"stream": "applications_demographics_answers", "data": {"updated_at": "2021-11-03T19:56:07.248Z", "id": 9308815003, "free_form_text": null, "demographic_question_id": 4000716003, "demographic_answer_option_id": 4004262003, "created_at": "2021-11-03T19:56:07.248Z", "application_id": 47459993003}, "emitted_at": 1671104699294} +{"stream": "applications_demographics_answers", "data": {"updated_at": "2021-11-03T19:56:07.252Z", "id": 9308816003, "free_form_text": "custom answer", "demographic_question_id": 4000716003, "demographic_answer_option_id": 4004263003, "created_at": "2021-11-03T19:56:07.252Z", "application_id": 47459993003}, "emitted_at": 1671104699296} +{"stream": "applications_demographics_answers", "data": {"updated_at": "2021-11-03T19:56:07.259Z", "id": 9308817003, "free_form_text": null, "demographic_question_id": 4000717003, "demographic_answer_option_id": 4004266003, "created_at": "2021-11-03T19:56:07.259Z", "application_id": 47459993003}, "emitted_at": 1671104699298} +{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "a1", "language": "en"}], "name": "a1", "id": 4004258003, "free_form": false, "demographic_question_id": 4000714003, "active": true}, "emitted_at": 1671104702277} +{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "a2", "language": "en"}], "name": "a2", "id": 4004259003, "free_form": false, "demographic_question_id": 4000715003, "active": true}, "emitted_at": 1671104702597} +{"stream": "demographics_answers_answer_options", "data": {"translations": [{"name": "a3", "language": "en"}], "name": "a3", "id": 4004260003, "free_form": false, "demographic_question_id": 4000715003, "active": true}, "emitted_at": 1671104702600} +{"stream": "interviews", "data": {"id": 40387397003, "application_id": 44937562003, "external_event_id": "123456789", "start": {"date_time": "2021-12-12T13:15:00.000Z"}, "end": {"date_time": "2021-12-12T14:15:00.000Z"}, "location": null, "video_conferencing_url": null, "status": "awaiting_feedback", "created_at": "2021-10-10T16:21:44.107Z", "updated_at": "2021-12-12T15:15:02.894Z", "interview": {"id": 5628615003, "name": "Preliminary Screening Call"}, "organizer": {"id": 4218085003, "first_name": "Greenhouse", "last_name": "Admin", "name": "Greenhouse Admin", "employee_id": null}, "interviewers": [{"id": 4218085003, "employee_id": null, "name": "Greenhouse Admin", "email": "scrubbed_email_vq8-rm4513etm7xxd9d1qq@example.com", "response_status": "accepted", "scorecard_id": null}]}, "emitted_at": 1671104717302} +{"stream": "interviews", "data": {"id": 40387426003, "application_id": 44937562003, "external_event_id": "12345678", "start": {"date_time": "2021-12-13T13:15:00.000Z"}, "end": {"date_time": "2021-12-13T14:15:00.000Z"}, "location": null, "video_conferencing_url": null, "status": "awaiting_feedback", "created_at": "2021-10-10T16:22:04.561Z", "updated_at": "2021-12-13T15:15:13.252Z", "interview": {"id": 5628615003, "name": "Preliminary Screening Call"}, "organizer": {"id": 4218085003, "first_name": "Greenhouse", "last_name": "Admin", "name": "Greenhouse Admin", "employee_id": null}, "interviewers": [{"id": 4218085003, "employee_id": null, "name": "Greenhouse Admin", "email": "scrubbed_email_vq8-rm4513etm7xxd9d1qq@example.com", "response_status": "accepted", "scorecard_id": null}]}, "emitted_at": 1671104717305} +{"stream": "interviews", "data": {"id": 40387431003, "application_id": 44937562003, "external_event_id": "1234567", "start": {"date_time": "2021-12-14T13:15:00.000Z"}, "end": {"date_time": "2021-12-14T14:15:00.000Z"}, "location": null, "video_conferencing_url": null, "status": "awaiting_feedback", "created_at": "2021-10-10T16:22:13.681Z", "updated_at": "2021-12-14T15:15:12.118Z", "interview": {"id": 5628615003, "name": "Preliminary Screening Call"}, "organizer": {"id": 4218085003, "first_name": "Greenhouse", "last_name": "Admin", "name": "Greenhouse Admin", "employee_id": null}, "interviewers": [{"id": 4218085003, "employee_id": null, "name": "Greenhouse Admin", "email": "scrubbed_email_vq8-rm4513etm7xxd9d1qq@example.com", "response_status": "accepted", "scorecard_id": null}]}, "emitted_at": 1671104717307} +{"stream": "applications_interviews", "data": {"id": 40387397003, "application_id": 44937562003, "external_event_id": "123456789", "start": {"date_time": "2021-12-12T13:15:00.000Z"}, "end": {"date_time": "2021-12-12T14:15:00.000Z"}, "location": null, "video_conferencing_url": null, "status": "awaiting_feedback", "created_at": "2021-10-10T16:21:44.107Z", "updated_at": "2021-12-12T15:15:02.894Z", "interview": {"id": 5628615003, "name": "Preliminary Screening Call"}, "organizer": {"id": 4218085003, "first_name": "Greenhouse", "last_name": "Admin", "name": "Greenhouse Admin", "employee_id": null}, "interviewers": [{"id": 4218085003, "employee_id": null, "name": "Greenhouse Admin", "email": "scrubbed_email_vq8-rm4513etm7xxd9d1qq@example.com", "response_status": "accepted", "scorecard_id": null}]}, "emitted_at": 1671104719202} +{"stream": "applications_interviews", "data": {"id": 40387426003, "application_id": 44937562003, "external_event_id": "12345678", "start": {"date_time": "2021-12-13T13:15:00.000Z"}, "end": {"date_time": "2021-12-13T14:15:00.000Z"}, "location": null, "video_conferencing_url": null, "status": "awaiting_feedback", "created_at": "2021-10-10T16:22:04.561Z", "updated_at": "2021-12-13T15:15:13.252Z", "interview": {"id": 5628615003, "name": "Preliminary Screening Call"}, "organizer": {"id": 4218085003, "first_name": "Greenhouse", "last_name": "Admin", "name": "Greenhouse Admin", "employee_id": null}, "interviewers": [{"id": 4218085003, "employee_id": null, "name": "Greenhouse Admin", "email": "scrubbed_email_vq8-rm4513etm7xxd9d1qq@example.com", "response_status": "accepted", "scorecard_id": null}]}, "emitted_at": 1671104719205} +{"stream": "applications_interviews", "data": {"id": 40387431003, "application_id": 44937562003, "external_event_id": "1234567", "start": {"date_time": "2021-12-14T13:15:00.000Z"}, "end": {"date_time": "2021-12-14T14:15:00.000Z"}, "location": null, "video_conferencing_url": null, "status": "awaiting_feedback", "created_at": "2021-10-10T16:22:13.681Z", "updated_at": "2021-12-14T15:15:12.118Z", "interview": {"id": 5628615003, "name": "Preliminary Screening Call"}, "organizer": {"id": 4218085003, "first_name": "Greenhouse", "last_name": "Admin", "name": "Greenhouse Admin", "employee_id": null}, "interviewers": [{"id": 4218085003, "employee_id": null, "name": "Greenhouse Admin", "email": "scrubbed_email_vq8-rm4513etm7xxd9d1qq@example.com", "response_status": "accepted", "scorecard_id": null}]}, "emitted_at": 1671104719207} +{"stream": "sources", "data": {"id": 4000000003, "name": "Recurse", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1671104720043} +{"stream": "sources", "data": {"id": 4000001003, "name": "cliquify", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1671104720044} +{"stream": "sources", "data": {"id": 4000002003, "name": "ContactOut", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1671104720046} +{"stream": "sources", "data": {"id": 4000003003, "name": "Crosschq", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1671104720047} +{"stream": "sources", "data": {"id": 4000004003, "name": "Talentpair", "type": {"id": 4000003003, "name": "Prospecting"}}, "emitted_at": 1671104720048} +{"stream": "rejection_reasons", "data": {"id": 4014678003, "name": "reason1", "type": {"id": 4000000003, "name": "We rejected them"}}, "emitted_at": 1671104721477} +{"stream": "rejection_reasons", "data": {"id": 4014679003, "name": "reason2", "type": {"id": 4000001003, "name": "They rejected us"}}, "emitted_at": 1671104721479} +{"stream": "rejection_reasons", "data": {"id": 4014680003, "name": "reason3", "type": {"id": 4000002003, "name": "None specified"}}, "emitted_at": 1671104721480} +{"stream": "jobs_openings", "data": {"id": 4320015003, "opening_id": "3-1", "status": "open", "opened_at": "2020-11-24T23:27:11.723Z", "closed_at": null, "application_id": null, "close_reason": null}, "emitted_at": 1671104722472} +{"stream": "jobs_openings", "data": {"id": 4320018003, "opening_id": "4-1", "status": "open", "opened_at": "2020-11-24T23:27:45.665Z", "closed_at": null, "application_id": null, "close_reason": null}, "emitted_at": 1671104722888} +{"stream": "jobs_openings", "data": {"id": 4926182003, "opening_id": "5-1", "status": "open", "opened_at": "2021-10-08T08:19:42.457Z", "closed_at": null, "application_id": null, "close_reason": null}, "emitted_at": 1671104723277} +{"stream": "job_stages", "data": {"id": 5245803003, "name": "Application Review", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 0, "interviews": [{"id": 5628614003, "name": "Application Review", "schedulable": false, "interview_kit": {"id": 5628609003, "content": null, "questions": []}, "estimated_minutes": 1, "default_interviewer_users": []}]}, "emitted_at": 1671104735884} +{"stream": "job_stages", "data": {"id": 5245804003, "name": "Preliminary Phone Screen", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 1, "interviews": [{"id": 5628615003, "name": "Preliminary Screening Call", "schedulable": true, "interview_kit": {"id": 5628610003, "content": null, "questions": []}, "estimated_minutes": 20, "default_interviewer_users": []}]}, "emitted_at": 1671104735886} +{"stream": "job_stages", "data": {"id": 5245805003, "name": "Phone Interview", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 2, "interviews": [{"id": 5628616003, "name": "Behavioral Phone Interview", "schedulable": true, "interview_kit": {"id": 5628611003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}]}, "emitted_at": 1671104735888} +{"stream": "jobs_stages", "data": {"id": 5245803003, "name": "Application Review", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 0, "interviews": [{"id": 5628614003, "name": "Application Review", "schedulable": false, "interview_kit": {"id": 5628609003, "content": null, "questions": []}, "estimated_minutes": 1, "default_interviewer_users": []}]}, "emitted_at": 1671104737182} +{"stream": "jobs_stages", "data": {"id": 5245804003, "name": "Preliminary Phone Screen", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 1, "interviews": [{"id": 5628615003, "name": "Preliminary Screening Call", "schedulable": true, "interview_kit": {"id": 5628610003, "content": null, "questions": []}, "estimated_minutes": 20, "default_interviewer_users": []}]}, "emitted_at": 1671104737185} +{"stream": "jobs_stages", "data": {"id": 5245805003, "name": "Phone Interview", "created_at": "2020-11-24T23:27:11.756Z", "updated_at": "2020-11-24T23:27:11.756Z", "active": true, "job_id": 4177046003, "priority": 2, "interviews": [{"id": 5628616003, "name": "Behavioral Phone Interview", "schedulable": true, "interview_kit": {"id": 5628611003, "content": null, "questions": []}, "estimated_minutes": 30, "default_interviewer_users": []}]}, "emitted_at": 1671104737187} 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 dbde54c5cdb9..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.AirbyteStreamNameNamespacePair; import io.airbyte.protocol.models.CommonField; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; 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 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 d77155da2afb..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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; 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 java.sql.SQLException; import java.util.HashMap; import org.jooq.DSLContext; diff --git a/airbyte-integrations/connectors/source-jdbc/src/test/java/io/airbyte/integrations/source/jdbc/DefaultJdbcSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-jdbc/src/test/java/io/airbyte/integrations/source/jdbc/DefaultJdbcSourceAcceptanceTest.java index 86136c0b9f5b..24e136ecbf82 100644 --- a/airbyte-integrations/connectors/source-jdbc/src/test/java/io/airbyte/integrations/source/jdbc/DefaultJdbcSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-jdbc/src/test/java/io/airbyte/integrations/source/jdbc/DefaultJdbcSourceAcceptanceTest.java @@ -21,10 +21,10 @@ import io.airbyte.integrations.source.jdbc.test.JdbcSourceAcceptanceTest; import io.airbyte.integrations.source.relationaldb.models.CdcState; import io.airbyte.integrations.util.HostPortResolver; -import io.airbyte.protocol.models.AirbyteGlobalState; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.AirbyteStreamState; +import io.airbyte.protocol.models.v0.AirbyteGlobalState; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage.AirbyteStateType; +import io.airbyte.protocol.models.v0.AirbyteStreamState; import io.airbyte.test.utils.PostgreSQLContainerHelper; import java.sql.JDBCType; import java.util.List; 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 ffd5451ad33e..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,25 +30,25 @@ 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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamState; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.StreamDescriptor; -import io.airbyte.protocol.models.SyncMode; +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.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +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.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.v0.StreamDescriptor; +import io.airbyte.protocol.models.v0.SyncMode; import java.math.BigDecimal; import java.sql.SQLException; import java.util.ArrayList; 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 119bc981c26a..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,17 +18,17 @@ import io.airbyte.db.jdbc.JdbcDatabase; import io.airbyte.db.jdbc.JdbcUtils; import io.airbyte.integrations.source.jdbc.AbstractJdbcSource; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; +import io.airbyte.protocol.models.v0.SyncMode; import java.math.BigDecimal; import java.nio.ByteBuffer; import java.util.ArrayList; 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/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/main/java/io/airbyte/integrations/source/kafka/KafkaSource.java b/airbyte-integrations/connectors/source-kafka/src/main/java/io/airbyte/integrations/source/kafka/KafkaSource.java index 103a50700b3d..c44ff4adfee0 100644 --- a/airbyte-integrations/connectors/source-kafka/src/main/java/io/airbyte/integrations/source/kafka/KafkaSource.java +++ b/airbyte-integrations/connectors/source-kafka/src/main/java/io/airbyte/integrations/source/kafka/KafkaSource.java @@ -10,8 +10,12 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.Source; import io.airbyte.integrations.source.kafka.format.KafkaFormat; -import io.airbyte.protocol.models.*; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; +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.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.List; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/source-kafka/src/main/java/io/airbyte/integrations/source/kafka/format/AvroFormat.java b/airbyte-integrations/connectors/source-kafka/src/main/java/io/airbyte/integrations/source/kafka/format/AvroFormat.java index 0f7e10db5df4..f4306bfa12a2 100644 --- a/airbyte-integrations/connectors/source-kafka/src/main/java/io/airbyte/integrations/source/kafka/format/AvroFormat.java +++ b/airbyte-integrations/connectors/source-kafka/src/main/java/io/airbyte/integrations/source/kafka/format/AvroFormat.java @@ -13,7 +13,13 @@ import io.airbyte.commons.util.AutoCloseableIterator; import io.airbyte.commons.util.AutoCloseableIterators; import io.airbyte.integrations.source.kafka.KafkaStrategy; -import io.airbyte.protocol.models.*; +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.AirbyteStream; +import io.airbyte.protocol.models.v0.CatalogHelpers; +import io.airbyte.protocol.models.v0.SyncMode; import io.confluent.kafka.schemaregistry.client.SchemaRegistryClientConfig; import io.confluent.kafka.serializers.KafkaAvroDeserializer; import io.confluent.kafka.serializers.KafkaAvroDeserializerConfig; diff --git a/airbyte-integrations/connectors/source-kafka/src/main/java/io/airbyte/integrations/source/kafka/format/JsonFormat.java b/airbyte-integrations/connectors/source-kafka/src/main/java/io/airbyte/integrations/source/kafka/format/JsonFormat.java index 3acf0e7e46a7..aaed50c842b2 100644 --- a/airbyte-integrations/connectors/source-kafka/src/main/java/io/airbyte/integrations/source/kafka/format/JsonFormat.java +++ b/airbyte-integrations/connectors/source-kafka/src/main/java/io/airbyte/integrations/source/kafka/format/JsonFormat.java @@ -9,7 +9,13 @@ import com.google.common.collect.Lists; import io.airbyte.commons.util.AutoCloseableIterator; import io.airbyte.commons.util.AutoCloseableIterators; -import io.airbyte.protocol.models.*; +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.AirbyteStream; +import io.airbyte.protocol.models.v0.CatalogHelpers; +import io.airbyte.protocol.models.v0.SyncMode; import java.time.Duration; import java.time.Instant; import java.time.temporal.ChronoUnit; diff --git a/airbyte-integrations/connectors/source-kafka/src/main/java/io/airbyte/integrations/source/kafka/format/KafkaFormat.java b/airbyte-integrations/connectors/source-kafka/src/main/java/io/airbyte/integrations/source/kafka/format/KafkaFormat.java index e651d9814237..ab6d785c0d6d 100644 --- a/airbyte-integrations/connectors/source-kafka/src/main/java/io/airbyte/integrations/source/kafka/format/KafkaFormat.java +++ b/airbyte-integrations/connectors/source-kafka/src/main/java/io/airbyte/integrations/source/kafka/format/KafkaFormat.java @@ -5,8 +5,8 @@ package io.airbyte.integrations.source.kafka.format; import io.airbyte.commons.util.AutoCloseableIterator; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteStream; import java.util.List; public interface KafkaFormat { 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 adfdd16bd239..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,13 +13,13 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.SyncMode; import java.util.Collections; import java.util.HashMap; import java.util.Map; diff --git a/airbyte-integrations/connectors/source-metabase/Dockerfile b/airbyte-integrations/connectors/source-metabase/Dockerfile index 03fdb7cf3afc..08c142ea73cd 100644 --- a/airbyte-integrations/connectors/source-metabase/Dockerfile +++ b/airbyte-integrations/connectors/source-metabase/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.2.0 +LABEL io.airbyte.version=0.3.1 LABEL io.airbyte.name=airbyte/source-metabase diff --git a/airbyte-integrations/connectors/source-metabase/acceptance-test-config.yml b/airbyte-integrations/connectors/source-metabase/acceptance-test-config.yml index c5de84a9b6a6..d6c733390c40 100644 --- a/airbyte-integrations/connectors/source-metabase/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-metabase/acceptance-test-config.yml @@ -1,20 +1,37 @@ connector_image: airbyte/source-metabase:dev -tests: +acceptance_tests: spec: - - spec_path: "source_metabase/spec.yaml" - backward_compatibility_tests_config: - disable_for_version: "0.1.0" + tests: + - spec_path: "source_metabase/spec.yaml" connection: - - config_path: "secrets/config.json" - status: "succeed" - - config_path: "integration_tests/invalid_config.json" - status: "failed" - - config_path: "integration_tests/config_http_url.json" - status: "failed" + tests: + - config_path: "secrets/config.json" + status: "succeed" + - config_path: "integration_tests/invalid_config.json" + status: "failed" + - config_path: "integration_tests/config_http_url.json" + status: "failed" discovery: - - config_path: "secrets/config.json" - backward_compatibility_tests_config: - disable_for_version: "0.1.0" + 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" + configured_catalog_path: "integration_tests/configured_catalog.json" + empty_streams: + - name: activity + bypass_reason: "data changes very fast" + - name: cards + bypass_reason: "data changes very fast" + - name: collections + bypass_reason: "data changes very fast" + - name: dashboards + bypass_reason: "data changes very fast" + - name: users + bypass_reason: "data changes very fast" + full_refresh: + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + incremental: + bypass_reason: "This connector does not implement incremental sync" diff --git a/airbyte-integrations/connectors/source-metabase/setup.py b/airbyte-integrations/connectors/source-metabase/setup.py index df3e834b959a..8043da4b8cf3 100644 --- a/airbyte-integrations/connectors/source-metabase/setup.py +++ b/airbyte-integrations/connectors/source-metabase/setup.py @@ -5,7 +5,7 @@ from setuptools import find_packages, setup -MAIN_REQUIREMENTS = ["airbyte-cdk~=0.2", "requests>=2.28.0", "types-requests>=2.27.30"] +MAIN_REQUIREMENTS = ["airbyte-cdk", "requests>=2.28.0", "types-requests>=2.27.30"] TEST_REQUIREMENTS = [ "pytest~=6.1", diff --git a/airbyte-integrations/connectors/source-metabase/source_metabase/metabase.yaml b/airbyte-integrations/connectors/source-metabase/source_metabase/metabase.yaml new file mode 100644 index 000000000000..38c1c6379d39 --- /dev/null +++ b/airbyte-integrations/connectors/source-metabase/source_metabase/metabase.yaml @@ -0,0 +1,79 @@ +version: "0.3.0" + +definitions: + selector: + extractor: + field_pointer: [] + data_field_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_pointer: ["data"] + requester: + url_base: "{{ config['instance_api_url'] }}" + http_method: "GET" + authenticator: + type: "SessionTokenAuthenticator" + username: "{{ config['username'] }}" + password: "{{ config['password'] }}" + api_url: "{{ config['instance_api_url'] }}" + header: "X-Metabase-Session" + session_token: "{{ config['session_token'] }}" + session_token_response_key: "id" + login_url: "session" + validate_session_url: "user/current" + retriever: + record_selector: + $ref: "*ref(definitions.selector)" + paginator: + type: NoPagination + requester: + $ref: "*ref(definitions.requester)" + data_field_retriever: + record_selector: + $ref: "*ref(definitions.data_field_selector)" + paginator: + type: NoPagination + requester: + $ref: "*ref(definitions.requester)" + base_stream: + primary_key: "id" + retriever: + $ref: "*ref(definitions.retriever)" + activity_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "activity" + path: "activity" + cards_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "cards" + path: "card" + collections_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "collections" + path: "collection" + dashboards_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "dashboards" + path: "dashboard" + users_stream: + primary_key: "id" + retriever: + $ref: "*ref(definitions.data_field_retriever)" + $options: + name: "users" + path: "user" +streams: + - "*ref(definitions.activity_stream)" + - "*ref(definitions.cards_stream)" + - "*ref(definitions.collections_stream)" + - "*ref(definitions.dashboards_stream)" + - "*ref(definitions.users_stream)" + +check: + stream_names: + - "activity" diff --git a/airbyte-integrations/connectors/source-metabase/source_metabase/source.py b/airbyte-integrations/connectors/source-metabase/source_metabase/source.py index 1e62c9636782..45ec25fbc0e3 100644 --- a/airbyte-integrations/connectors/source-metabase/source_metabase/source.py +++ b/airbyte-integrations/connectors/source-metabase/source_metabase/source.py @@ -2,132 +2,10 @@ # Copyright (c) 2022 Airbyte, Inc., all rights reserved. # -import logging -from typing import Any, Iterator, List, Mapping, MutableMapping, Tuple -import requests -from airbyte_cdk.models import AirbyteMessage, ConfiguredAirbyteCatalog -from airbyte_cdk.sources import AbstractSource -from airbyte_cdk.sources.streams import Stream -from airbyte_cdk.sources.streams.http.auth import HttpAuthenticator -from source_metabase.streams import Activity, Cards, Collections, Dashboards, Users +from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource -API_URL = "instance_api_url" -USERNAME = "username" -PASSWORD = "password" -SESSION_TOKEN = "session_token" - -class MetabaseAuth(HttpAuthenticator): - def __init__(self, logger: logging.Logger, config: Mapping[str, Any]): - self.need_session_close = False - self.session_token = "" - self.logger = logger - self.api_url = config[API_URL] - if USERNAME in config and PASSWORD in config: - self.username = config[USERNAME] - self.password = config[PASSWORD] - if SESSION_TOKEN in config: - self.session_token = config[SESSION_TOKEN] - elif USERNAME in config and PASSWORD in config: - self.session_token = self.get_new_session_token(config[USERNAME], config[PASSWORD]) - else: - raise KeyError("Required parameters (username/password pair or session_token) not found") - # TODO: Try to retrieve latest session_token stored in some state message? - - def get_new_session_token(self, username: str, password: str) -> str: - response = requests.post( - f"{self.api_url}session", headers={"Content-Type": "application/json"}, json={"username": username, "password": password} - ) - response.raise_for_status() - if response.ok: - self.session_token = response.json()["id"] - self.need_session_close = True - self.logger.info(f"New session token generated for {username}") - else: - raise ConnectionError(f"Failed to retrieve new session token, response code {response.status_code} because {response.reason}") - return self.session_token - - def has_valid_token(self) -> bool: - try: - response = requests.get(f"{self.api_url}user/current", headers=self.get_auth_header()) - response.raise_for_status() - except requests.exceptions.HTTPError as e: - if e.response.status_code == 401: - self.logger.warn(f"Unable to connect to Metabase source due to {str(e)}, retrying with a new session_token...") - self.get_new_session_token(self.username, self.password) - response = requests.get(f"{self.api_url}user/current", headers=self.get_auth_header()) - response.raise_for_status() - else: - raise ConnectionError(f"Error while checking connection: {e}") - if response.ok: - json_response = response.json() - self.logger.info( - f"Connection check for Metabase successful for {json_response['common_name']} login at {json_response['last_login']}" - ) - return True - else: - raise ConnectionError(f"Failed to retrieve new session token, response code {response.status_code} because {response.reason}") - - def get_auth_header(self) -> Mapping[str, Any]: - return {"X-Metabase-Session": self.session_token} - - def close_session(self): - if self.need_session_close: - response = requests.delete( - f"{self.api_url}session", headers=self.get_auth_header(), json={"metabase-session-id": self.session_token} - ) - response.raise_for_status() - if response.ok: - self.logger.info("Session successfully closed") - else: - self.logger.info(f"Unable to close session {response.status_code}: {response.reason}") - else: - self.logger.info("Session was not opened by this connector.") - - -class SourceMetabase(AbstractSource): +class SourceMetabase(YamlDeclarativeSource): def __init__(self): - self.session = None - - def check_connection(self, logger: logging.Logger, config: Mapping[str, Any]) -> Tuple[bool, Any]: - session = None - try: - session = MetabaseAuth(logger, config) - return session.has_valid_token(), None - except Exception as e: - return False, e - finally: - if session: - session.close_session() - - def streams(self, config: Mapping[str, Any]) -> List[Stream]: - self.session = MetabaseAuth(logging.getLogger("airbyte"), config) - if not self.session.has_valid_token(): - raise ConnectionError("Failed to connect to source") - args = {"authenticator": self.session, API_URL: config[API_URL]} - return [ - Activity(**args), - Cards(**args), - Collections(**args), - Dashboards(**args), - Users(**args), - ] - - # We override the read method to make sure we close the metabase session and logout - # so we don't keep too many active session_token active. - def read( - self, - logger: logging.Logger, - config: Mapping[str, Any], - catalog: ConfiguredAirbyteCatalog, - state: MutableMapping[str, Any] = None, - ) -> Iterator[AirbyteMessage]: - try: - yield from super().read(logger, config, catalog, state) - finally: - self.close_session() - - def close_session(self): - if self.session: - self.session.close_session() + super().__init__(**{"path_to_yaml": "metabase.yaml"}) diff --git a/airbyte-integrations/connectors/source-monday/Dockerfile b/airbyte-integrations/connectors/source-monday/Dockerfile index 2ca9062320b9..505eddafbf71 100644 --- a/airbyte-integrations/connectors/source-monday/Dockerfile +++ b/airbyte-integrations/connectors/source-monday/Dockerfile @@ -34,5 +34,5 @@ COPY source_monday ./source_monday 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.1 LABEL io.airbyte.name=airbyte/source-monday diff --git a/airbyte-integrations/connectors/source-monday/acceptance-test-config.yml b/airbyte-integrations/connectors/source-monday/acceptance-test-config.yml index bada3d79a93b..4c4a7a4f2a9f 100644 --- a/airbyte-integrations/connectors/source-monday/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-monday/acceptance-test-config.yml @@ -1,34 +1,53 @@ # 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-monday:dev -tests: +acceptance_tests: spec: - - spec_path: "source_monday/spec.json" + tests: + - spec_path: "source_monday/spec.json" connection: - - config_path: "secrets/config.json" - status: "succeed" - - config_path: "secrets/config_api_token.json" - status: "succeed" - - config_path: "secrets/config_oauth.json" - status: "succeed" - - config_path: "integration_tests/invalid_config.json" - status: "failed" - - config_path: "integration_tests/invalid_config_oauth.json" - status: "failed" + tests: + - config_path: "secrets/config_api_token.json" + status: "succeed" + - config_path: "secrets/config_oauth.json" + status: "succeed" + - config_path: "integration_tests/invalid_config.json" + status: "failed" + - config_path: "integration_tests/invalid_config_oauth.json" + status: "failed" discovery: - - config_path: "secrets/config.json" - - config_path: "secrets/config_api_token.json" - - config_path: "secrets/config_oauth.json" + tests: + - config_path: "secrets/config.json" + backward_compatibility_tests_config: + disable_for_version: "0.1.4" + - config_path: "secrets/config_api_token.json" + backward_compatibility_tests_config: + disable_for_version: "0.1.4" + - config_path: "secrets/config_oauth.json" + backward_compatibility_tests_config: + disable_for_version: "0.1.4" basic_read: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - empty_streams: ["updates"] - - config_path: "secrets/config_api_token.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - empty_streams: ["updates"] - - config_path: "secrets/config_oauth.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - empty_streams: ["updates"] + tests: + - config_path: "secrets/config_api_token.json" + expect_records: + path: "integration_tests/expected_records.txt" + extra_fields: no + exact_order: no + extra_records: yes + empty_streams: + - name: teams + bypass_reason: "unable to populate" + - config_path: "secrets/config_oauth.json" + expect_records: + path: "integration_tests/expected_records.txt" + extra_fields: no + exact_order: no + extra_records: yes + empty_streams: + - name: teams + bypass_reason: "unable to populate" full_refresh: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" + tests: + - config_path: "secrets/config_api_token.json" + incremental: + bypass_reason: "Incremental syncs are not supported on this connector." diff --git a/airbyte-integrations/connectors/source-monday/acceptance-test-docker.sh b/airbyte-integrations/connectors/source-monday/acceptance-test-docker.sh old mode 100644 new mode 100755 index e4d8b1cef896..c51577d10690 --- a/airbyte-integrations/connectors/source-monday/acceptance-test-docker.sh +++ b/airbyte-integrations/connectors/source-monday/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-monday/integration_tests/expected_records.txt b/airbyte-integrations/connectors/source-monday/integration_tests/expected_records.txt new file mode 100644 index 000000000000..3e512bb7bbcf --- /dev/null +++ b/airbyte-integrations/connectors/source-monday/integration_tests/expected_records.txt @@ -0,0 +1,75 @@ +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407826"}, "column_values": [{"id": "manager1", "value": null, "additional_info": null, "text": "", "title": "Owner", "type": "multiple-person"}, {"id": "date4", "value": "{\"date\":\"2019-04-11\",\"icon\":null,\"changed_at\":\"2019-04-10 08:06:40 UTC\"}", "additional_info": null, "text": "2019-04-11", "title": "Request date", "type": "date"}, {"id": "status1", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2020-07-22T06:28:36.561Z\"}", "additional_info": "{\"label\":\"Evaluating\",\"color\":\"#fdab3d\",\"changed_at\":\"2020-07-22T06:28:36.561Z\"}", "text": "Evaluating", "title": "Procurement status", "type": "color"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Manager", "type": "multiple-person"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-04-10T08:09:58.545Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-04-10T08:09:58.545Z\"}", "text": "Approved", "title": "Manager approval", "type": "color"}, {"id": "budget_owner", "value": null, "additional_info": null, "text": "", "title": "POC owner", "type": "multiple-person"}, {"id": "budget_owner_approval4", "value": null, "additional_info": null, "text": null, "title": "POC status", "type": "color"}, {"id": "manager", "value": null, "additional_info": null, "text": "", "title": "Budget owner", "type": "multiple-person"}, {"id": "status4", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-04-10T08:11:20.855Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-04-10T08:11:20.855Z\"}", "text": "Approved", "title": "Budget owner approval", "type": "color"}, {"id": "people", "value": null, "additional_info": null, "text": "", "title": "Procurement team", "type": "multiple-person"}, {"id": "budget_owner_approval", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-04-10T08:14:00.506Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-04-10T08:14:00.506Z\"}", "text": "Approved", "title": "Procurement approval", "type": "color"}, {"id": "procurement_team", "value": null, "additional_info": null, "text": "", "title": "Finance", "type": "multiple-person"}, {"id": "procurement_approval", "value": "{\"index\":2,\"post_id\":null,\"changed_at\":\"2019-05-15T14:34:59.145Z\"}", "additional_info": "{\"label\":\"Declined\",\"color\":\"#e2445c\",\"changed_at\":\"2019-05-15T14:34:59.145Z\"}", "text": "Declined", "title": "Finance approval", "type": "color"}, {"id": "finance", "value": null, "additional_info": null, "text": "", "title": "Legal", "type": "multiple-person"}, {"id": "finance_approval", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2019-04-10T08:17:41.900Z\"}", "additional_info": "{\"label\":\"On Hold\",\"color\":\"#fdab3d\",\"changed_at\":\"2019-04-10T08:17:41.900Z\"}", "text": "On Hold", "title": "Legal approval", "type": "color"}, {"id": "file", "value": "{\"files\":null}", "additional_info": null, "text": "", "title": "File", "type": "file"}, {"id": "legal", "value": null, "additional_info": null, "text": "", "title": "Security", "type": "multiple-person"}, {"id": "legal_approval", "value": "{\"index\":2,\"post_id\":null,\"changed_at\":\"2019-04-30T15:43:35.438Z\"}", "additional_info": "{\"label\":\"Declined\",\"color\":\"#e2445c\",\"changed_at\":\"2019-04-30T15:43:35.438Z\"}", "text": "Declined", "title": "Security approval", "type": "color"}, {"id": "date", "value": null, "additional_info": null, "text": "", "title": "Renewal date", "type": "date"}, {"id": "last_updated", "value": null, "additional_info": null, "text": "2022-11-21 14:36:51 UTC", "title": "Last updated", "type": "pulse-updated"}], "created_at": "2022-11-21T14:36:51Z", "creator_id": "25479561", "group": {"id": "topics"}, "id": "3555407934", "name": "Zendesk", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:51Z", "updates": []}, "emitted_at": 1670509826492} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407826"}, "column_values": [{"id": "manager1", "value": null, "additional_info": null, "text": "", "title": "Owner", "type": "multiple-person"}, {"id": "date4", "value": "{\"date\":\"2019-04-11\",\"changed_at\":\"2019-04-02T07:03:23.375Z\"}", "additional_info": null, "text": "2019-04-11", "title": "Request date", "type": "date"}, {"id": "status1", "value": "{\"index\":11,\"post_id\":null,\"changed_at\":\"2020-06-25T11:41:22.421Z\"}", "additional_info": "{\"label\":\"On hold\",\"color\":\"#BB3354\",\"changed_at\":\"2020-06-25T11:41:22.421Z\"}", "text": "On hold", "title": "Procurement status", "type": "color"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Manager", "type": "multiple-person"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-03-01T17:28:23.178Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-03-01T17:28:23.178Z\"}", "text": "Approved", "title": "Manager approval", "type": "color"}, {"id": "budget_owner", "value": null, "additional_info": null, "text": "", "title": "POC owner", "type": "multiple-person"}, {"id": "budget_owner_approval4", "value": null, "additional_info": null, "text": null, "title": "POC status", "type": "color"}, {"id": "manager", "value": null, "additional_info": null, "text": "", "title": "Budget owner", "type": "multiple-person"}, {"id": "status4", "value": "{\"index\":2,\"post_id\":null,\"changed_at\":\"2019-04-10T08:11:26.186Z\"}", "additional_info": "{\"label\":\"Declined\",\"color\":\"#e2445c\",\"changed_at\":\"2019-04-10T08:11:26.186Z\"}", "text": "Declined", "title": "Budget owner approval", "type": "color"}, {"id": "people", "value": null, "additional_info": null, "text": "", "title": "Procurement team", "type": "multiple-person"}, {"id": "budget_owner_approval", "value": null, "additional_info": null, "text": null, "title": "Procurement approval", "type": "color"}, {"id": "procurement_team", "value": null, "additional_info": null, "text": "", "title": "Finance", "type": "multiple-person"}, {"id": "procurement_approval", "value": null, "additional_info": null, "text": null, "title": "Finance approval", "type": "color"}, {"id": "finance", "value": null, "additional_info": null, "text": "", "title": "Legal", "type": "multiple-person"}, {"id": "finance_approval", "value": null, "additional_info": null, "text": null, "title": "Legal approval", "type": "color"}, {"id": "file", "value": "{\"files\":null}", "additional_info": null, "text": "", "title": "File", "type": "file"}, {"id": "legal", "value": null, "additional_info": null, "text": "", "title": "Security", "type": "multiple-person"}, {"id": "legal_approval", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2020-06-25T06:36:38.993Z\"}", "additional_info": "{\"label\":\"On Hold\",\"color\":\"#fdab3d\",\"changed_at\":\"2020-06-25T06:36:38.993Z\"}", "text": "On Hold", "title": "Security approval", "type": "color"}, {"id": "date", "value": null, "additional_info": null, "text": "", "title": "Renewal date", "type": "date"}, {"id": "last_updated", "value": null, "additional_info": null, "text": "2022-11-21 14:36:52 UTC", "title": "Last updated", "type": "pulse-updated"}], "created_at": "2022-11-21T14:36:52Z", "creator_id": "25479561", "group": {"id": "topics"}, "id": "3555407944", "name": "Salesforce", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:52Z", "updates": []}, "emitted_at": 1670509826493} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407826"}, "column_values": [{"id": "manager1", "value": null, "additional_info": null, "text": "", "title": "Owner", "type": "multiple-person"}, {"id": "date4", "value": "{\"date\":\"2019-04-17\",\"changed_at\":\"2019-04-02T07:03:25.251Z\"}", "additional_info": null, "text": "2019-04-17", "title": "Request date", "type": "date"}, {"id": "status1", "value": "{\"index\":14,\"post_id\":null,\"changed_at\":\"2020-07-22T06:28:39.711Z\"}", "additional_info": "{\"label\":\"Waiting for vendor\",\"color\":\"#784BD1\",\"changed_at\":\"2020-07-22T06:28:39.711Z\"}", "text": "Waiting for vendor", "title": "Procurement status", "type": "color"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Manager", "type": "multiple-person"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-04-10T08:10:00.038Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-04-10T08:10:00.038Z\"}", "text": "Approved", "title": "Manager approval", "type": "color"}, {"id": "budget_owner", "value": null, "additional_info": null, "text": "", "title": "POC owner", "type": "multiple-person"}, {"id": "budget_owner_approval4", "value": null, "additional_info": null, "text": null, "title": "POC status", "type": "color"}, {"id": "manager", "value": null, "additional_info": null, "text": "", "title": "Budget owner", "type": "multiple-person"}, {"id": "status4", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-04-10T08:11:23.942Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-04-10T08:11:23.942Z\"}", "text": "Approved", "title": "Budget owner approval", "type": "color"}, {"id": "people", "value": null, "additional_info": null, "text": "", "title": "Procurement team", "type": "multiple-person"}, {"id": "budget_owner_approval", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-04-10T08:14:02.186Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-04-10T08:14:02.186Z\"}", "text": "Approved", "title": "Procurement approval", "type": "color"}, {"id": "procurement_team", "value": null, "additional_info": null, "text": "", "title": "Finance", "type": "multiple-person"}, {"id": "procurement_approval", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-04-10T08:16:19.222Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-04-10T08:16:19.222Z\"}", "text": "Approved", "title": "Finance approval", "type": "color"}, {"id": "finance", "value": null, "additional_info": null, "text": "", "title": "Legal", "type": "multiple-person"}, {"id": "finance_approval", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-04-10T08:17:46.022Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-04-10T08:17:46.022Z\"}", "text": "Approved", "title": "Legal approval", "type": "color"}, {"id": "file", "value": "{\"files\":null}", "additional_info": null, "text": "", "title": "File", "type": "file"}, {"id": "legal", "value": null, "additional_info": null, "text": "", "title": "Security", "type": "multiple-person"}, {"id": "legal_approval", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-25T06:36:40.961Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-25T06:36:40.961Z\"}", "text": "Approved", "title": "Security approval", "type": "color"}, {"id": "date", "value": null, "additional_info": null, "text": "", "title": "Renewal date", "type": "date"}, {"id": "last_updated", "value": null, "additional_info": null, "text": "2022-11-21 14:36:52 UTC", "title": "Last updated", "type": "pulse-updated"}], "created_at": "2022-11-21T14:36:52Z", "creator_id": "25479561", "group": {"id": "topics"}, "id": "3555407952", "name": "YouCanBookMe", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:52Z", "updates": []}, "emitted_at": 1670509826494} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407826"}, "column_values": [{"id": "manager1", "value": null, "additional_info": null, "text": "", "title": "Owner", "type": "multiple-person"}, {"id": "date4", "value": null, "additional_info": null, "text": "", "title": "Request date", "type": "date"}, {"id": "status1", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-25T11:41:48.118Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-25T11:41:48.118Z\"}", "text": "Done", "title": "Procurement status", "type": "color"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Manager", "type": "multiple-person"}, {"id": "status", "value": null, "additional_info": null, "text": null, "title": "Manager approval", "type": "color"}, {"id": "budget_owner", "value": null, "additional_info": null, "text": "", "title": "POC owner", "type": "multiple-person"}, {"id": "budget_owner_approval4", "value": null, "additional_info": null, "text": null, "title": "POC status", "type": "color"}, {"id": "manager", "value": null, "additional_info": null, "text": "", "title": "Budget owner", "type": "multiple-person"}, {"id": "status4", "value": null, "additional_info": null, "text": null, "title": "Budget owner approval", "type": "color"}, {"id": "people", "value": null, "additional_info": null, "text": "", "title": "Procurement team", "type": "multiple-person"}, {"id": "budget_owner_approval", "value": null, "additional_info": null, "text": null, "title": "Procurement approval", "type": "color"}, {"id": "procurement_team", "value": null, "additional_info": null, "text": "", "title": "Finance", "type": "multiple-person"}, {"id": "procurement_approval", "value": null, "additional_info": null, "text": null, "title": "Finance approval", "type": "color"}, {"id": "finance", "value": null, "additional_info": null, "text": "", "title": "Legal", "type": "multiple-person"}, {"id": "finance_approval", "value": null, "additional_info": null, "text": null, "title": "Legal approval", "type": "color"}, {"id": "file", "value": null, "additional_info": null, "text": "", "title": "File", "type": "file"}, {"id": "legal", "value": null, "additional_info": null, "text": "", "title": "Security", "type": "multiple-person"}, {"id": "legal_approval", "value": null, "additional_info": null, "text": null, "title": "Security approval", "type": "color"}, {"id": "date", "value": null, "additional_info": null, "text": "", "title": "Renewal date", "type": "date"}, {"id": "last_updated", "value": null, "additional_info": null, "text": "2022-11-21 14:36:53 UTC", "title": "Last updated", "type": "pulse-updated"}], "created_at": "2022-11-21T14:36:53Z", "creator_id": "36694549", "group": {"id": "new_group"}, "id": "3555408067", "name": "Box", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:53Z", "updates": []}, "emitted_at": 1670509826495} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407826"}, "column_values": [{"id": "manager1", "value": null, "additional_info": null, "text": "", "title": "Owner", "type": "multiple-person"}, {"id": "date4", "value": null, "additional_info": null, "text": "", "title": "Request date", "type": "date"}, {"id": "status1", "value": "{\"index\":108,\"post_id\":null,\"changed_at\":\"2020-07-22T06:27:41.551Z\"}", "additional_info": "{\"label\":\"Approved for use\",\"color\":\"#4eccc6\",\"changed_at\":\"2020-07-22T06:27:41.551Z\"}", "text": "Approved for use", "title": "Procurement status", "type": "color"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Manager", "type": "multiple-person"}, {"id": "status", "value": null, "additional_info": null, "text": null, "title": "Manager approval", "type": "color"}, {"id": "budget_owner", "value": null, "additional_info": null, "text": "", "title": "POC owner", "type": "multiple-person"}, {"id": "budget_owner_approval4", "value": null, "additional_info": null, "text": null, "title": "POC status", "type": "color"}, {"id": "manager", "value": null, "additional_info": null, "text": "", "title": "Budget owner", "type": "multiple-person"}, {"id": "status4", "value": null, "additional_info": null, "text": null, "title": "Budget owner approval", "type": "color"}, {"id": "people", "value": null, "additional_info": null, "text": "", "title": "Procurement team", "type": "multiple-person"}, {"id": "budget_owner_approval", "value": null, "additional_info": null, "text": null, "title": "Procurement approval", "type": "color"}, {"id": "procurement_team", "value": null, "additional_info": null, "text": "", "title": "Finance", "type": "multiple-person"}, {"id": "procurement_approval", "value": null, "additional_info": null, "text": null, "title": "Finance approval", "type": "color"}, {"id": "finance", "value": null, "additional_info": null, "text": "", "title": "Legal", "type": "multiple-person"}, {"id": "finance_approval", "value": null, "additional_info": null, "text": null, "title": "Legal approval", "type": "color"}, {"id": "file", "value": null, "additional_info": null, "text": "", "title": "File", "type": "file"}, {"id": "legal", "value": null, "additional_info": null, "text": "", "title": "Security", "type": "multiple-person"}, {"id": "legal_approval", "value": null, "additional_info": null, "text": null, "title": "Security approval", "type": "color"}, {"id": "date", "value": null, "additional_info": null, "text": "", "title": "Renewal date", "type": "date"}, {"id": "last_updated", "value": null, "additional_info": null, "text": "2022-11-21 14:36:53 UTC", "title": "Last updated", "type": "pulse-updated"}], "created_at": "2022-11-21T14:36:53Z", "creator_id": "36694549", "group": {"id": "new_group"}, "id": "3555408077", "name": "Slack", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:53Z", "updates": []}, "emitted_at": 1670509826495} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407826"}, "column_values": [{"id": "manager1", "value": null, "additional_info": null, "text": "", "title": "Owner", "type": "multiple-person"}, {"id": "date4", "value": null, "additional_info": null, "text": "", "title": "Request date", "type": "date"}, {"id": "status1", "value": "{\"index\":108,\"post_id\":null,\"changed_at\":\"2020-07-22T06:26:53.835Z\"}", "additional_info": "{\"label\":\"Approved for use\",\"color\":\"#4eccc6\",\"changed_at\":\"2020-07-22T06:26:53.835Z\"}", "text": "Approved for use", "title": "Procurement status", "type": "color"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Manager", "type": "multiple-person"}, {"id": "status", "value": null, "additional_info": null, "text": null, "title": "Manager approval", "type": "color"}, {"id": "budget_owner", "value": null, "additional_info": null, "text": "", "title": "POC owner", "type": "multiple-person"}, {"id": "budget_owner_approval4", "value": null, "additional_info": null, "text": null, "title": "POC status", "type": "color"}, {"id": "manager", "value": null, "additional_info": null, "text": "", "title": "Budget owner", "type": "multiple-person"}, {"id": "status4", "value": null, "additional_info": null, "text": null, "title": "Budget owner approval", "type": "color"}, {"id": "people", "value": null, "additional_info": null, "text": "", "title": "Procurement team", "type": "multiple-person"}, {"id": "budget_owner_approval", "value": null, "additional_info": null, "text": null, "title": "Procurement approval", "type": "color"}, {"id": "procurement_team", "value": null, "additional_info": null, "text": "", "title": "Finance", "type": "multiple-person"}, {"id": "procurement_approval", "value": null, "additional_info": null, "text": null, "title": "Finance approval", "type": "color"}, {"id": "finance", "value": null, "additional_info": null, "text": "", "title": "Legal", "type": "multiple-person"}, {"id": "finance_approval", "value": null, "additional_info": null, "text": null, "title": "Legal approval", "type": "color"}, {"id": "file", "value": null, "additional_info": null, "text": "", "title": "File", "type": "file"}, {"id": "legal", "value": null, "additional_info": null, "text": "", "title": "Security", "type": "multiple-person"}, {"id": "legal_approval", "value": null, "additional_info": null, "text": null, "title": "Security approval", "type": "color"}, {"id": "date", "value": null, "additional_info": null, "text": "", "title": "Renewal date", "type": "date"}, {"id": "last_updated", "value": null, "additional_info": null, "text": "2022-11-21 14:36:53 UTC", "title": "Last updated", "type": "pulse-updated"}], "created_at": "2022-11-21T14:36:53Z", "creator_id": "36694549", "group": {"id": "new_group"}, "id": "3555408088", "name": "HelpJuice", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:53Z", "updates": []}, "emitted_at": 1670509826496} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407826"}, "column_values": [{"id": "manager1", "value": null, "additional_info": null, "text": "", "title": "Owner", "type": "multiple-person"}, {"id": "date4", "value": null, "additional_info": null, "text": "", "title": "Request date", "type": "date"}, {"id": "status1", "value": "{\"index\":108,\"post_id\":null,\"changed_at\":\"2020-07-22T06:28:31.709Z\"}", "additional_info": "{\"label\":\"Approved for use\",\"color\":\"#4eccc6\",\"changed_at\":\"2020-07-22T06:28:31.709Z\"}", "text": "Approved for use", "title": "Procurement status", "type": "color"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Manager", "type": "multiple-person"}, {"id": "status", "value": null, "additional_info": null, "text": null, "title": "Manager approval", "type": "color"}, {"id": "budget_owner", "value": null, "additional_info": null, "text": "", "title": "POC owner", "type": "multiple-person"}, {"id": "budget_owner_approval4", "value": null, "additional_info": null, "text": null, "title": "POC status", "type": "color"}, {"id": "manager", "value": null, "additional_info": null, "text": "", "title": "Budget owner", "type": "multiple-person"}, {"id": "status4", "value": null, "additional_info": null, "text": null, "title": "Budget owner approval", "type": "color"}, {"id": "people", "value": null, "additional_info": null, "text": "", "title": "Procurement team", "type": "multiple-person"}, {"id": "budget_owner_approval", "value": null, "additional_info": null, "text": null, "title": "Procurement approval", "type": "color"}, {"id": "procurement_team", "value": null, "additional_info": null, "text": "", "title": "Finance", "type": "multiple-person"}, {"id": "procurement_approval", "value": null, "additional_info": null, "text": null, "title": "Finance approval", "type": "color"}, {"id": "finance", "value": null, "additional_info": null, "text": "", "title": "Legal", "type": "multiple-person"}, {"id": "finance_approval", "value": null, "additional_info": null, "text": null, "title": "Legal approval", "type": "color"}, {"id": "file", "value": null, "additional_info": null, "text": "", "title": "File", "type": "file"}, {"id": "legal", "value": null, "additional_info": null, "text": "", "title": "Security", "type": "multiple-person"}, {"id": "legal_approval", "value": null, "additional_info": null, "text": null, "title": "Security approval", "type": "color"}, {"id": "date", "value": null, "additional_info": null, "text": "", "title": "Renewal date", "type": "date"}, {"id": "last_updated", "value": null, "additional_info": null, "text": "2022-11-21 14:36:53 UTC", "title": "Last updated", "type": "pulse-updated"}], "created_at": "2022-11-21T14:36:53Z", "creator_id": "36694549", "group": {"id": "new_group"}, "id": "3555408094", "name": "LucidChart", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:53Z", "updates": []}, "emitted_at": 1670509826497} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407826"}, "column_values": [{"id": "manager1", "value": null, "additional_info": null, "text": "", "title": "Owner", "type": "multiple-person"}, {"id": "date4", "value": "{\"date\":\"2019-04-11\",\"changed_at\":\"2019-04-02T07:03:23.375Z\"}", "additional_info": null, "text": "2019-04-11", "title": "Request date", "type": "date"}, {"id": "status1", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-07-22T06:28:25.645Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-07-22T06:28:25.645Z\"}", "text": "Done", "title": "Procurement status", "type": "color"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Manager", "type": "multiple-person"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-03-01T17:28:23.178Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-03-01T17:28:23.178Z\"}", "text": "Approved", "title": "Manager approval", "type": "color"}, {"id": "budget_owner", "value": null, "additional_info": null, "text": "", "title": "POC owner", "type": "multiple-person"}, {"id": "budget_owner_approval4", "value": null, "additional_info": null, "text": null, "title": "POC status", "type": "color"}, {"id": "manager", "value": null, "additional_info": null, "text": "", "title": "Budget owner", "type": "multiple-person"}, {"id": "status4", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-05-15T12:27:06.894Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-05-15T12:27:06.894Z\"}", "text": "Approved", "title": "Budget owner approval", "type": "color"}, {"id": "people", "value": null, "additional_info": null, "text": "", "title": "Procurement team", "type": "multiple-person"}, {"id": "budget_owner_approval", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-05-15T12:27:08.700Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-05-15T12:27:08.700Z\"}", "text": "Approved", "title": "Procurement approval", "type": "color"}, {"id": "procurement_team", "value": null, "additional_info": null, "text": "", "title": "Finance", "type": "multiple-person"}, {"id": "procurement_approval", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-05-15T12:27:10.209Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-05-15T12:27:10.209Z\"}", "text": "Approved", "title": "Finance approval", "type": "color"}, {"id": "finance", "value": null, "additional_info": null, "text": "", "title": "Legal", "type": "multiple-person"}, {"id": "finance_approval", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-05-15T12:27:11.909Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-05-15T12:27:11.909Z\"}", "text": "Approved", "title": "Legal approval", "type": "color"}, {"id": "file", "value": "{\"files\":null}", "additional_info": null, "text": "", "title": "File", "type": "file"}, {"id": "legal", "value": null, "additional_info": null, "text": "", "title": "Security", "type": "multiple-person"}, {"id": "legal_approval", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-05-15T12:27:15.385Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-05-15T12:27:15.385Z\"}", "text": "Approved", "title": "Security approval", "type": "color"}, {"id": "date", "value": null, "additional_info": null, "text": "", "title": "Renewal date", "type": "date"}, {"id": "last_updated", "value": null, "additional_info": null, "text": "2022-11-21 14:36:53 UTC", "title": "Last updated", "type": "pulse-updated"}], "created_at": "2022-11-21T14:36:53Z", "creator_id": "25479561", "group": {"id": "new_group"}, "id": "3555408048", "name": "Aircall", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:53Z", "updates": []}, "emitted_at": 1670509826498} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407826"}, "column_values": [{"id": "manager1", "value": null, "additional_info": null, "text": "", "title": "Owner", "type": "multiple-person"}, {"id": "date4", "value": "{\"date\":\"2019-04-17\",\"changed_at\":\"2019-04-02T07:03:25.251Z\"}", "additional_info": null, "text": "2019-04-17", "title": "Request date", "type": "date"}, {"id": "status1", "value": "{\"index\":108,\"post_id\":null,\"changed_at\":\"2020-07-22T06:28:29.177Z\"}", "additional_info": "{\"label\":\"Approved for use\",\"color\":\"#4eccc6\",\"changed_at\":\"2020-07-22T06:28:29.177Z\"}", "text": "Approved for use", "title": "Procurement status", "type": "color"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Manager", "type": "multiple-person"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-04-10T08:10:00.038Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-04-10T08:10:00.038Z\"}", "text": "Approved", "title": "Manager approval", "type": "color"}, {"id": "budget_owner", "value": null, "additional_info": null, "text": "", "title": "POC owner", "type": "multiple-person"}, {"id": "budget_owner_approval4", "value": null, "additional_info": null, "text": null, "title": "POC status", "type": "color"}, {"id": "manager", "value": null, "additional_info": null, "text": "", "title": "Budget owner", "type": "multiple-person"}, {"id": "status4", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-04-10T08:11:23.942Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-04-10T08:11:23.942Z\"}", "text": "Approved", "title": "Budget owner approval", "type": "color"}, {"id": "people", "value": null, "additional_info": null, "text": "", "title": "Procurement team", "type": "multiple-person"}, {"id": "budget_owner_approval", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-04-10T08:14:02.186Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-04-10T08:14:02.186Z\"}", "text": "Approved", "title": "Procurement approval", "type": "color"}, {"id": "procurement_team", "value": null, "additional_info": null, "text": "", "title": "Finance", "type": "multiple-person"}, {"id": "procurement_approval", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-04-10T08:16:19.222Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-04-10T08:16:19.222Z\"}", "text": "Approved", "title": "Finance approval", "type": "color"}, {"id": "finance", "value": null, "additional_info": null, "text": "", "title": "Legal", "type": "multiple-person"}, {"id": "finance_approval", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-04-10T08:17:46.022Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-04-10T08:17:46.022Z\"}", "text": "Approved", "title": "Legal approval", "type": "color"}, {"id": "file", "value": "{\"files\":null}", "additional_info": null, "text": "", "title": "File", "type": "file"}, {"id": "legal", "value": null, "additional_info": null, "text": "", "title": "Security", "type": "multiple-person"}, {"id": "legal_approval", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2019-05-15T12:27:17.250Z\"}", "additional_info": "{\"label\":\"Approved\",\"color\":\"#00c875\",\"changed_at\":\"2019-05-15T12:27:17.250Z\"}", "text": "Approved", "title": "Security approval", "type": "color"}, {"id": "date", "value": null, "additional_info": null, "text": "", "title": "Renewal date", "type": "date"}, {"id": "last_updated", "value": null, "additional_info": null, "text": "2022-11-21 14:36:53 UTC", "title": "Last updated", "type": "pulse-updated"}], "created_at": "2022-11-21T14:36:53Z", "creator_id": "25479561", "group": {"id": "new_group"}, "id": "3555408057", "name": "Zoom", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:53Z", "updates": []}, "emitted_at": 1670509826499} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407826"}, "column_values": [{"id": "manager1", "value": null, "additional_info": null, "text": "", "title": "Owner", "type": "multiple-person"}, {"id": "date4", "value": null, "additional_info": null, "text": "", "title": "Request date", "type": "date"}, {"id": "status1", "value": "{\"index\":3,\"post_id\":null,\"changed_at\":\"2020-07-22T06:27:17.793Z\"}", "additional_info": "{\"label\":\"Waiting for legal\",\"color\":\"#0086c0\",\"changed_at\":\"2020-07-22T06:27:17.793Z\"}", "text": "Waiting for legal", "title": "Procurement status", "type": "color"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Manager", "type": "multiple-person"}, {"id": "status", "value": null, "additional_info": null, "text": null, "title": "Manager approval", "type": "color"}, {"id": "budget_owner", "value": null, "additional_info": null, "text": "", "title": "POC owner", "type": "multiple-person"}, {"id": "budget_owner_approval4", "value": null, "additional_info": null, "text": null, "title": "POC status", "type": "color"}, {"id": "manager", "value": null, "additional_info": null, "text": "", "title": "Budget owner", "type": "multiple-person"}, {"id": "status4", "value": null, "additional_info": null, "text": null, "title": "Budget owner approval", "type": "color"}, {"id": "people", "value": null, "additional_info": null, "text": "", "title": "Procurement team", "type": "multiple-person"}, {"id": "budget_owner_approval", "value": null, "additional_info": null, "text": null, "title": "Procurement approval", "type": "color"}, {"id": "procurement_team", "value": null, "additional_info": null, "text": "", "title": "Finance", "type": "multiple-person"}, {"id": "procurement_approval", "value": null, "additional_info": null, "text": null, "title": "Finance approval", "type": "color"}, {"id": "finance", "value": null, "additional_info": null, "text": "", "title": "Legal", "type": "multiple-person"}, {"id": "finance_approval", "value": null, "additional_info": null, "text": null, "title": "Legal approval", "type": "color"}, {"id": "file", "value": null, "additional_info": null, "text": "", "title": "File", "type": "file"}, {"id": "legal", "value": null, "additional_info": null, "text": "", "title": "Security", "type": "multiple-person"}, {"id": "legal_approval", "value": null, "additional_info": null, "text": null, "title": "Security approval", "type": "color"}, {"id": "date", "value": null, "additional_info": null, "text": "", "title": "Renewal date", "type": "date"}, {"id": "last_updated", "value": null, "additional_info": null, "text": "2022-11-21 14:36:53 UTC", "title": "Last updated", "type": "pulse-updated"}], "created_at": "2022-11-21T14:36:53Z", "creator_id": "36694549", "group": {"id": "new_group2816"}, "id": "3555408102", "name": "Gaviti", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:53Z", "updates": []}, "emitted_at": 1670509826500} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407826"}, "column_values": [{"id": "manager1", "value": null, "additional_info": null, "text": "", "title": "Owner", "type": "multiple-person"}, {"id": "date4", "value": null, "additional_info": null, "text": "", "title": "Request date", "type": "date"}, {"id": "status1", "value": "{\"index\":15,\"post_id\":null,\"changed_at\":\"2020-07-22T06:27:22.578Z\"}", "additional_info": "{\"label\":\"Negotiation\",\"color\":\"#9CD326\",\"changed_at\":\"2020-07-22T06:27:22.578Z\"}", "text": "Negotiation", "title": "Procurement status", "type": "color"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Manager", "type": "multiple-person"}, {"id": "status", "value": null, "additional_info": null, "text": null, "title": "Manager approval", "type": "color"}, {"id": "budget_owner", "value": null, "additional_info": null, "text": "", "title": "POC owner", "type": "multiple-person"}, {"id": "budget_owner_approval4", "value": null, "additional_info": null, "text": null, "title": "POC status", "type": "color"}, {"id": "manager", "value": null, "additional_info": null, "text": "", "title": "Budget owner", "type": "multiple-person"}, {"id": "status4", "value": null, "additional_info": null, "text": null, "title": "Budget owner approval", "type": "color"}, {"id": "people", "value": null, "additional_info": null, "text": "", "title": "Procurement team", "type": "multiple-person"}, {"id": "budget_owner_approval", "value": null, "additional_info": null, "text": null, "title": "Procurement approval", "type": "color"}, {"id": "procurement_team", "value": null, "additional_info": null, "text": "", "title": "Finance", "type": "multiple-person"}, {"id": "procurement_approval", "value": null, "additional_info": null, "text": null, "title": "Finance approval", "type": "color"}, {"id": "finance", "value": null, "additional_info": null, "text": "", "title": "Legal", "type": "multiple-person"}, {"id": "finance_approval", "value": null, "additional_info": null, "text": null, "title": "Legal approval", "type": "color"}, {"id": "file", "value": null, "additional_info": null, "text": "", "title": "File", "type": "file"}, {"id": "legal", "value": null, "additional_info": null, "text": "", "title": "Security", "type": "multiple-person"}, {"id": "legal_approval", "value": null, "additional_info": null, "text": null, "title": "Security approval", "type": "color"}, {"id": "date", "value": null, "additional_info": null, "text": "", "title": "Renewal date", "type": "date"}, {"id": "last_updated", "value": null, "additional_info": null, "text": "2022-11-21 14:36:53 UTC", "title": "Last updated", "type": "pulse-updated"}], "created_at": "2022-11-21T14:36:53Z", "creator_id": "36694549", "group": {"id": "new_group2816"}, "id": "3555408118", "name": "Priority", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:53Z", "updates": []}, "emitted_at": 1670509826501} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"SN56456\"", "additional_info": null, "text": "SN56456", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":2,\"post_id\":null,\"changed_at\":\"2020-06-22T08:37:41.248Z\"}", "additional_info": "{\"label\":\"Needs replacement\",\"color\":\"#e2445c\",\"changed_at\":\"2020-06-22T08:37:41.248Z\"}", "text": "Needs replacement", "title": "Status", "type": "color"}, {"id": "date4", "value": "{\"date\":\"2020-05-14\",\"changed_at\":\"2020-06-22T11:25:44.457Z\"}", "additional_info": null, "text": "2020-05-14", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": "\"Zakariah Macleod\"", "additional_info": null, "text": "Zakariah Macleod", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-06-10\",\"changed_at\":\"2020-06-24T10:59:53.938Z\"}", "additional_info": null, "text": "2020-06-10", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:52Z", "creator_id": "36694549", "group": {"id": "duplicate_of_tvs___projectors"}, "id": "3555407991", "name": "Samsung", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:52Z", "updates": []}, "emitted_at": 1670509828048} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"SN 94-34-AS-GT-66\"", "additional_info": null, "text": "SN 94-34-AS-GT-66", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2020-06-22T08:37:42.971Z\"}", "additional_info": "{\"label\":\"Out for repair\",\"color\":\"#fdab3d\",\"changed_at\":\"2020-06-22T08:37:42.971Z\"}", "text": "Out for repair", "title": "Status", "type": "color"}, {"id": "date4", "value": "{\"date\":\"2020-06-10\",\"changed_at\":\"2020-06-22T11:25:46.599Z\"}", "additional_info": null, "text": "2020-06-10", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": "\"Corbin Blackburn\"", "additional_info": null, "text": "Corbin Blackburn", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-06-11\",\"changed_at\":\"2020-06-24T10:59:55.752Z\"}", "additional_info": null, "text": "2020-06-11", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:52Z", "creator_id": "36694549", "group": {"id": "duplicate_of_tvs___projectors"}, "id": "3555407997", "name": "Sonos One", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:52Z", "updates": []}, "emitted_at": 1670509828051} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"P2219G\"", "additional_info": null, "text": "P2219G", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2020-06-22T08:37:44.792Z\"}", "additional_info": "{\"label\":\"Out for repair\",\"color\":\"#fdab3d\",\"changed_at\":\"2020-06-22T08:37:44.792Z\"}", "text": "Out for repair", "title": "Status", "type": "color"}, {"id": "date4", "value": "{\"date\":\"2020-06-02\",\"changed_at\":\"2020-06-22T11:25:48.402Z\"}", "additional_info": null, "text": "2020-06-02", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": "\"Jorge Mcgowan\"", "additional_info": null, "text": "Jorge Mcgowan", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-06-28\",\"changed_at\":\"2020-06-24T10:59:57.460Z\"}", "additional_info": null, "text": "2020-06-28", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:52Z", "creator_id": "36694549", "group": {"id": "duplicate_of_tvs___projectors"}, "id": "3555408009", "name": "Dell", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:52Z", "updates": []}, "emitted_at": 1670509828055} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"SN FVFYVE57L21Y\"", "additional_info": null, "text": "SN FVFYVE57L21Y", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "additional_info": "{\"label\":\"Working well\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "text": "Working well", "title": "Status", "type": "color"}, {"id": "date4", "value": "{\"date\":\"2020-06-03\",\"changed_at\":\"2020-06-22T11:25:52.834Z\"}", "additional_info": null, "text": "2020-06-03", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": "\"Rylee Pham\"", "additional_info": null, "text": "Rylee Pham", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-03-11\",\"changed_at\":\"2020-06-24T11:00:01.660Z\"}", "additional_info": null, "text": "2020-03-11", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:51Z", "creator_id": "36694549", "group": {"id": "topics"}, "id": "3555407931", "name": "Macbook Pro", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:51Z", "updates": []}, "emitted_at": 1670509828057} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"SN FVFYVE57L22Y\"", "additional_info": null, "text": "SN FVFYVE57L22Y", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "additional_info": "{\"label\":\"Working well\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "text": "Working well", "title": "Status", "type": "color"}, {"id": "date4", "value": "{\"date\":\"2020-06-03\",\"changed_at\":\"2020-06-22T11:25:56.327Z\"}", "additional_info": null, "text": "2020-06-03", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": "\"Kaydon Gamble\"", "additional_info": null, "text": "Kaydon Gamble", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-02-19\",\"changed_at\":\"2020-06-24T11:00:06.248Z\"}", "additional_info": null, "text": "2020-02-19", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:52Z", "creator_id": "36694549", "group": {"id": "topics"}, "id": "3555407941", "name": "Macbook Pro", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:52Z", "updates": []}, "emitted_at": 1670509828060} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"SN FVFYVE57L23W\"", "additional_info": null, "text": "SN FVFYVE57L23W", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "additional_info": "{\"label\":\"Working well\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "text": "Working well", "title": "Status", "type": "color"}, {"id": "date4", "value": "{\"date\":\"2020-06-04\",\"changed_at\":\"2020-06-22T11:25:58.156Z\"}", "additional_info": null, "text": "2020-06-04", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": "\"Eli Reyes\"", "additional_info": null, "text": "Eli Reyes", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-03-26\",\"changed_at\":\"2020-06-24T11:00:13.482Z\"}", "additional_info": null, "text": "2020-03-26", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:52Z", "creator_id": "36694549", "group": {"id": "topics"}, "id": "3555407947", "name": "Macbook Pro", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:52Z", "updates": []}, "emitted_at": 1670509828062} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"SN FVFYVE57L41V\"", "additional_info": null, "text": "SN FVFYVE57L41V", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "additional_info": "{\"label\":\"Working well\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "text": "Working well", "title": "Status", "type": "color"}, {"id": "date4", "value": "{\"date\":\"2020-06-11\",\"changed_at\":\"2020-06-22T11:26:00.305Z\"}", "additional_info": null, "text": "2020-06-11", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": "\"Finley Hilton\"", "additional_info": null, "text": "Finley Hilton", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-03-12\",\"changed_at\":\"2020-06-24T11:00:09.820Z\"}", "additional_info": null, "text": "2020-03-12", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:52Z", "creator_id": "36694549", "group": {"id": "topics"}, "id": "3555407961", "name": "Macbook Pro", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:52Z", "updates": []}, "emitted_at": 1670509828063} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"SN FVFYVE67L21Y\"", "additional_info": null, "text": "SN FVFYVE67L21Y", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "additional_info": "{\"label\":\"Working well\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "text": "Working well", "title": "Status", "type": "color"}, {"id": "date4", "value": "{\"date\":\"2020-06-17\",\"changed_at\":\"2020-06-22T11:26:02.141Z\"}", "additional_info": null, "text": "2020-06-17", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": "\"Fabien Morton\"", "additional_info": null, "text": "Fabien Morton", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-04-21\",\"changed_at\":\"2020-06-24T11:00:17.305Z\"}", "additional_info": null, "text": "2020-04-21", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:52Z", "creator_id": "36694549", "group": {"id": "topics"}, "id": "3555407968", "name": "Macbook Pro", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:52Z", "updates": []}, "emitted_at": 1670509828065} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"SN FVFYVE57L28Y\"", "additional_info": null, "text": "SN FVFYVE57L28Y", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "additional_info": "{\"label\":\"Working well\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "text": "Working well", "title": "Status", "type": "color"}, {"id": "date4", "value": "{\"date\":\"2020-06-18\",\"changed_at\":\"2020-06-22T11:26:04.062Z\"}", "additional_info": null, "text": "2020-06-18", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": "\"Amelia-Mae Flower\"", "additional_info": null, "text": "Amelia-Mae Flower", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-06-04\",\"changed_at\":\"2020-06-24T11:00:21.416Z\"}", "additional_info": null, "text": "2020-06-04", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:52Z", "creator_id": "36694549", "group": {"id": "topics"}, "id": "3555407977", "name": "Macbook Pro", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:52Z", "updates": []}, "emitted_at": 1670509828067} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"3sBeKstD\"", "additional_info": null, "text": "3sBeKstD", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "additional_info": "{\"label\":\"Working well\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "text": "Working well", "title": "Status", "type": "color"}, {"id": "date4", "value": "{\"date\":\"2020-06-03\",\"changed_at\":\"2020-06-22T11:26:06.624Z\"}", "additional_info": null, "text": "2020-06-03", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": "\"Masuma Carver\"", "additional_info": null, "text": "Masuma Carver", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-04-07\",\"changed_at\":\"2020-06-24T11:00:35.389Z\"}", "additional_info": null, "text": "2020-04-07", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:52Z", "creator_id": "36694549", "group": {"id": "group_title"}, "id": "3555408016", "name": "Dell - U2417H", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:52Z", "updates": []}, "emitted_at": 1670509828068} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"eqK2M67W\"", "additional_info": null, "text": "eqK2M67W", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "additional_info": "{\"label\":\"Working well\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "text": "Working well", "title": "Status", "type": "color"}, {"id": "date4", "value": "{\"date\":\"2020-06-10\",\"changed_at\":\"2020-06-22T11:26:08.798Z\"}", "additional_info": null, "text": "2020-06-10", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": "\"Tadhg Hensley\"", "additional_info": null, "text": "Tadhg Hensley", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-06-04\",\"changed_at\":\"2020-06-24T11:00:23.245Z\"}", "additional_info": null, "text": "2020-06-04", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:53Z", "creator_id": "36694549", "group": {"id": "group_title"}, "id": "3555408058", "name": "Dell - U2418H", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:53Z", "updates": []}, "emitted_at": 1670509828069} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"39QTALuj\"", "additional_info": null, "text": "39QTALuj", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "additional_info": "{\"label\":\"Working well\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "text": "Working well", "title": "Status", "type": "color"}, {"id": "date4", "value": "{\"date\":\"2020-06-09\",\"changed_at\":\"2020-06-22T11:26:10.906Z\"}", "additional_info": null, "text": "2020-06-09", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": "\"Aanya Booth\"", "additional_info": null, "text": "Aanya Booth", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-06-05\",\"changed_at\":\"2020-06-24T11:00:25.468Z\"}", "additional_info": null, "text": "2020-06-05", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:53Z", "creator_id": "36694549", "group": {"id": "group_title"}, "id": "3555408070", "name": "Dell - U2416H", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:53Z", "updates": []}, "emitted_at": 1670509828071} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"LTgqT9cY\"", "additional_info": null, "text": "LTgqT9cY", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "additional_info": "{\"label\":\"Working well\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "text": "Working well", "title": "Status", "type": "color"}, {"id": "date4", "value": "{\"date\":\"2020-06-03\",\"changed_at\":\"2020-06-22T11:26:12.701Z\"}", "additional_info": null, "text": "2020-06-03", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": "\"Kiana Burnett\"", "additional_info": null, "text": "Kiana Burnett", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-06-20\",\"changed_at\":\"2020-06-24T11:00:27.706Z\"}", "additional_info": null, "text": "2020-06-20", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:53Z", "creator_id": "36694549", "group": {"id": "group_title"}, "id": "3555408083", "name": "Dell - U2419HX", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:53Z", "updates": []}, "emitted_at": 1670509828072} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"FjE7nsrs\"", "additional_info": null, "text": "FjE7nsrs", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "additional_info": "{\"label\":\"Working well\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "text": "Working well", "title": "Status", "type": "color"}, {"id": "date4", "value": "{\"date\":\"2020-06-10\",\"changed_at\":\"2020-06-22T11:26:17.156Z\"}", "additional_info": null, "text": "2020-06-10", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": "\"Roxie Forbes\"", "additional_info": null, "text": "Roxie Forbes", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-05-06\",\"changed_at\":\"2020-06-24T11:00:31.519Z\"}", "additional_info": null, "text": "2020-05-06", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:53Z", "creator_id": "36694549", "group": {"id": "group_title"}, "id": "3555408091", "name": "Dell - P2219H", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:53Z", "updates": []}, "emitted_at": 1670509828073} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"SN32456\"", "additional_info": null, "text": "SN32456", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "additional_info": "{\"label\":\"Working well\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "text": "Working well", "title": "Status", "type": "color"}, {"id": "date4", "value": null, "additional_info": null, "text": "", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-05-05\",\"changed_at\":\"2020-06-24T11:00:39.214Z\"}", "additional_info": null, "text": "2020-05-05", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:53Z", "creator_id": "36694549", "group": {"id": "new_group"}, "id": "3555408021", "name": "Samsung", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:53Z", "updates": []}, "emitted_at": 1670509828074} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"SN32457\"", "additional_info": null, "text": "SN32457", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "additional_info": "{\"label\":\"Working well\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "text": "Working well", "title": "Status", "type": "color"}, {"id": "date4", "value": null, "additional_info": null, "text": "", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-05-07\",\"changed_at\":\"2020-06-24T11:00:42.752Z\"}", "additional_info": null, "text": "2020-05-07", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:53Z", "creator_id": "36694549", "group": {"id": "new_group"}, "id": "3555408033", "name": "Samsung", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:53Z", "updates": []}, "emitted_at": 1670509828075} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"SN32458\"", "additional_info": null, "text": "SN32458", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "additional_info": "{\"label\":\"Working well\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "text": "Working well", "title": "Status", "type": "color"}, {"id": "date4", "value": null, "additional_info": null, "text": "", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-05-21\",\"changed_at\":\"2020-06-24T11:00:46.170Z\"}", "additional_info": null, "text": "2020-05-21", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:53Z", "creator_id": "36694549", "group": {"id": "new_group"}, "id": "3555408041", "name": "Samsung", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:53Z", "updates": []}, "emitted_at": 1670509828077} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407785"}, "column_values": [{"id": "text4", "value": "\"SN32458\"", "additional_info": null, "text": "SN32458", "title": "SN", "type": "text"}, {"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "additional_info": "{\"label\":\"Working well\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-22T08:41:28.806Z\"}", "text": "Working well", "title": "Status", "type": "color"}, {"id": "date4", "value": null, "additional_info": null, "text": "", "title": "Date given to current owner", "type": "date"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "Current owner", "type": "text"}, {"id": "date_given_to_current_owner", "value": "{\"date\":\"2020-06-03\",\"changed_at\":\"2020-06-24T11:00:48.979Z\"}", "additional_info": null, "text": "2020-06-03", "title": "Last checked", "type": "date"}], "created_at": "2022-11-21T14:36:53Z", "creator_id": "36694549", "group": {"id": "new_group"}, "id": "3555408052", "name": "Samsung", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:53Z", "updates": []}, "emitted_at": 1670509828079} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407698"}, "column_values": [{"id": "people", "value": null, "additional_info": null, "text": "", "title": "IT owner", "type": "multiple-person"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Responsible HR", "type": "multiple-person"}, {"id": "date4", "value": null, "additional_info": null, "text": "", "title": "Start date", "type": "date"}, {"id": "status", "value": null, "additional_info": null, "text": null, "title": "Team", "type": "color"}, {"id": "status8", "value": null, "additional_info": null, "text": null, "title": "Site", "type": "color"}, {"id": "status1", "value": null, "additional_info": null, "text": null, "title": "Computer type", "type": "color"}, {"id": "status2", "value": null, "additional_info": null, "text": null, "title": "Computer setup", "type": "color"}, {"id": "computer_setup", "value": null, "additional_info": null, "text": null, "title": "Google account", "type": "color"}, {"id": "google_account", "value": null, "additional_info": null, "text": null, "title": "Zoom account", "type": "color"}, {"id": "zoom_account", "value": null, "additional_info": null, "text": null, "title": "365 account", "type": "color"}, {"id": "365_account3", "value": null, "additional_info": null, "text": null, "title": "Setup desk monitor", "type": "color"}, {"id": "set_up_desk_monitor", "value": null, "additional_info": null, "text": null, "title": "Setup entrance tag", "type": "color"}, {"id": "email", "value": null, "additional_info": null, "text": "", "title": "Email", "type": "email"}], "created_at": "2022-11-21T14:36:52Z", "creator_id": "25479561", "group": {"id": "airbyte_group"}, "id": "3555408019", "name": "new item", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:56Z", "updates": [{"id": "1825289531"}]}, "emitted_at": 1670509828865} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407698"}, "column_values": [{"id": "people", "value": null, "additional_info": null, "text": "", "title": "IT owner", "type": "multiple-person"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Responsible HR", "type": "multiple-person"}, {"id": "date4", "value": null, "additional_info": null, "text": "", "title": "Start date", "type": "date"}, {"id": "status", "value": null, "additional_info": null, "text": null, "title": "Team", "type": "color"}, {"id": "status8", "value": null, "additional_info": null, "text": null, "title": "Site", "type": "color"}, {"id": "status1", "value": null, "additional_info": null, "text": null, "title": "Computer type", "type": "color"}, {"id": "status2", "value": null, "additional_info": null, "text": null, "title": "Computer setup", "type": "color"}, {"id": "computer_setup", "value": null, "additional_info": null, "text": null, "title": "Google account", "type": "color"}, {"id": "google_account", "value": null, "additional_info": null, "text": null, "title": "Zoom account", "type": "color"}, {"id": "zoom_account", "value": null, "additional_info": null, "text": null, "title": "365 account", "type": "color"}, {"id": "365_account3", "value": null, "additional_info": null, "text": null, "title": "Setup desk monitor", "type": "color"}, {"id": "set_up_desk_monitor", "value": null, "additional_info": null, "text": null, "title": "Setup entrance tag", "type": "color"}, {"id": "email", "value": null, "additional_info": null, "text": "", "title": "Email", "type": "email"}], "created_at": "2022-11-21T14:36:52Z", "creator_id": "36694549", "group": {"id": "new_group"}, "id": "3555407986", "name": "Hi there! \ud83d\udc4b Click here for more information \u27a1\ufe0f", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:52Z", "updates": [{"id": "1825289518"}]}, "emitted_at": 1670509828869} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407698"}, "column_values": [{"id": "people", "value": null, "additional_info": null, "text": "", "title": "IT owner", "type": "multiple-person"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Responsible HR", "type": "multiple-person"}, {"id": "date4", "value": "{\"date\":\"2020-06-23\"}", "additional_info": null, "text": "2020-06-23", "title": "Start date", "type": "date"}, {"id": "status", "value": "{\"index\":7,\"post_id\":null}", "additional_info": "{\"label\":\"Finance\",\"color\":\"#579bfc\",\"changed_at\":null}", "text": "Finance", "title": "Team", "type": "color"}, {"id": "status8", "value": "{\"index\":1,\"post_id\":null}", "additional_info": "{\"label\":\"Denver\",\"color\":\"#225091\",\"changed_at\":null}", "text": "Denver", "title": "Site", "type": "color"}, {"id": "status1", "value": "{\"index\":14,\"post_id\":null}", "additional_info": "{\"label\":\"PC\",\"color\":\"#784BD1\",\"changed_at\":null}", "text": "PC", "title": "Computer type", "type": "color"}, {"id": "status2", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2020-06-21T13:46:33.895Z\"}", "additional_info": "{\"label\":\"Working on it\",\"color\":\"#fdab3d\",\"changed_at\":\"2020-06-21T13:46:33.895Z\"}", "text": "Working on it", "title": "Computer setup", "type": "color"}, {"id": "computer_setup", "value": null, "additional_info": null, "text": null, "title": "Google account", "type": "color"}, {"id": "google_account", "value": null, "additional_info": null, "text": null, "title": "Zoom account", "type": "color"}, {"id": "zoom_account", "value": null, "additional_info": null, "text": null, "title": "365 account", "type": "color"}, {"id": "365_account3", "value": null, "additional_info": null, "text": null, "title": "Setup desk monitor", "type": "color"}, {"id": "set_up_desk_monitor", "value": null, "additional_info": null, "text": null, "title": "Setup entrance tag", "type": "color"}, {"id": "email", "value": "{\"text\":\"bjornk@yahoo.com\",\"email\":\"bjornk@yahoo.com\"}", "additional_info": null, "text": "bjornk@yahoo.com", "title": "Email", "type": "email"}], "created_at": "2022-11-21T14:36:51Z", "creator_id": "36694549", "group": {"id": "topics"}, "id": "3555407939", "name": "Employee name 3", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:52Z", "updates": []}, "emitted_at": 1670509828873} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407698"}, "column_values": [{"id": "people", "value": null, "additional_info": null, "text": "", "title": "IT owner", "type": "multiple-person"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Responsible HR", "type": "multiple-person"}, {"id": "date4", "value": "{\"date\":\"2020-06-19\"}", "additional_info": null, "text": "2020-06-19", "title": "Start date", "type": "date"}, {"id": "status", "value": "{\"index\":4,\"post_id\":null}", "additional_info": "{\"label\":\"Sales\",\"color\":\"#a25ddc\",\"changed_at\":null}", "text": "Sales", "title": "Team", "type": "color"}, {"id": "status8", "value": "{\"index\":1,\"post_id\":null}", "additional_info": "{\"label\":\"Denver\",\"color\":\"#225091\",\"changed_at\":null}", "text": "Denver", "title": "Site", "type": "color"}, {"id": "status1", "value": "{\"index\":14,\"post_id\":null}", "additional_info": "{\"label\":\"PC\",\"color\":\"#784BD1\",\"changed_at\":null}", "text": "PC", "title": "Computer type", "type": "color"}, {"id": "status2", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:46:39.331Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:46:39.331Z\"}", "text": "Done", "title": "Computer setup", "type": "color"}, {"id": "computer_setup", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:46:40.460Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:46:40.460Z\"}", "text": "Done", "title": "Google account", "type": "color"}, {"id": "google_account", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2020-06-21T13:46:41.571Z\"}", "additional_info": "{\"label\":\"Working on it\",\"color\":\"#fdab3d\",\"changed_at\":\"2020-06-21T13:46:41.571Z\"}", "text": "Working on it", "title": "Zoom account", "type": "color"}, {"id": "zoom_account", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2020-06-21T13:49:15.506Z\"}", "additional_info": "{\"label\":\"Working on it\",\"color\":\"#fdab3d\",\"changed_at\":\"2020-06-21T13:49:15.506Z\"}", "text": "Working on it", "title": "365 account", "type": "color"}, {"id": "365_account3", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-22T06:24:56.006Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-22T06:24:56.006Z\"}", "text": "Done", "title": "Setup desk monitor", "type": "color"}, {"id": "set_up_desk_monitor", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-22T06:24:57.281Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-22T06:24:57.281Z\"}", "text": "Done", "title": "Setup entrance tag", "type": "color"}, {"id": "email", "value": "{\"text\":\"fangorn@att.net\",\"email\":\"fangorn@att.net\"}", "additional_info": null, "text": "fangorn@att.net", "title": "Email", "type": "email"}], "created_at": "2022-11-21T14:36:52Z", "creator_id": "36694549", "group": {"id": "topics"}, "id": "3555407955", "name": "Employee name 5", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:52Z", "updates": []}, "emitted_at": 1670509828876} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407698"}, "column_values": [{"id": "people", "value": null, "additional_info": null, "text": "", "title": "IT owner", "type": "multiple-person"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Responsible HR", "type": "multiple-person"}, {"id": "date4", "value": "{\"date\":\"2020-05-15\"}", "additional_info": null, "text": "2020-05-15", "title": "Start date", "type": "date"}, {"id": "status", "value": "{\"index\":6,\"post_id\":null}", "additional_info": "{\"label\":\"Partners\",\"color\":\"#037f4c\",\"changed_at\":null}", "text": "Partners", "title": "Team", "type": "color"}, {"id": "status8", "value": "{\"index\":2,\"post_id\":null}", "additional_info": "{\"label\":\"Florida\",\"color\":\"#FF642E\",\"changed_at\":null}", "text": "Florida", "title": "Site", "type": "color"}, {"id": "status1", "value": "{\"index\":1,\"post_id\":null}", "additional_info": "{\"label\":\"Mac\",\"color\":\"#00c875\",\"changed_at\":null}", "text": "Mac", "title": "Computer type", "type": "color"}, {"id": "status2", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:48:51.414Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:48:51.414Z\"}", "text": "Done", "title": "Computer setup", "type": "color"}, {"id": "computer_setup", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:48:52.581Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:48:52.581Z\"}", "text": "Done", "title": "Google account", "type": "color"}, {"id": "google_account", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:48:54.106Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:48:54.106Z\"}", "text": "Done", "title": "Zoom account", "type": "color"}, {"id": "zoom_account", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:48:55.348Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:48:55.348Z\"}", "text": "Done", "title": "365 account", "type": "color"}, {"id": "365_account3", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:48:55.348Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:48:55.348Z\"}", "text": "Done", "title": "Setup desk monitor", "type": "color"}, {"id": "set_up_desk_monitor", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:48:55.348Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:48:55.348Z\"}", "text": "Done", "title": "Setup entrance tag", "type": "color"}, {"id": "email", "value": "{\"text\":\"mdielmann@me.com\",\"email\":\"mdielmann@me.com\"}", "additional_info": null, "text": "mdielmann@me.com", "title": "Email", "type": "email"}], "created_at": "2022-11-21T14:36:52Z", "creator_id": "36694549", "group": {"id": "group_title"}, "id": "3555407946", "name": "Employee name 4", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:52Z", "updates": []}, "emitted_at": 1670509828879} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407698"}, "column_values": [{"id": "people", "value": null, "additional_info": null, "text": "", "title": "IT owner", "type": "multiple-person"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Responsible HR", "type": "multiple-person"}, {"id": "date4", "value": "{\"date\":\"2020-04-16\"}", "additional_info": null, "text": "2020-04-16", "title": "Start date", "type": "date"}, {"id": "status", "value": "{\"index\":3,\"post_id\":null}", "additional_info": "{\"label\":\"R&D\",\"color\":\"#0086c0\",\"changed_at\":null}", "text": "R&D", "title": "Team", "type": "color"}, {"id": "status8", "value": "{\"index\":14,\"post_id\":null}", "additional_info": "{\"label\":\"New York\",\"color\":\"#784BD1\",\"changed_at\":null}", "text": "New York", "title": "Site", "type": "color"}, {"id": "status1", "value": "{\"index\":1,\"post_id\":null}", "additional_info": "{\"label\":\"Mac\",\"color\":\"#00c875\",\"changed_at\":null}", "text": "Mac", "title": "Computer type", "type": "color"}, {"id": "status2", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:48:57.121Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:48:57.121Z\"}", "text": "Done", "title": "Computer setup", "type": "color"}, {"id": "computer_setup", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:48:59.755Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:48:59.755Z\"}", "text": "Done", "title": "Google account", "type": "color"}, {"id": "google_account", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:49:02.766Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:49:02.766Z\"}", "text": "Done", "title": "Zoom account", "type": "color"}, {"id": "zoom_account", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:49:06.494Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:49:06.494Z\"}", "text": "Done", "title": "365 account", "type": "color"}, {"id": "365_account3", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:49:06.494Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:49:06.494Z\"}", "text": "Done", "title": "Setup desk monitor", "type": "color"}, {"id": "set_up_desk_monitor", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:49:06.494Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:49:06.494Z\"}", "text": "Done", "title": "Setup entrance tag", "type": "color"}, {"id": "email", "value": "{\"text\":\"bjornk@outlook.com\",\"email\":\"bjornk@outlook.com\"}", "additional_info": null, "text": "bjornk@outlook.com", "title": "Email", "type": "email"}], "created_at": "2022-11-21T14:36:52Z", "creator_id": "36694549", "group": {"id": "duplicate_of_new_hires___6_25_"}, "id": "3555407966", "name": "Employee name 6", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:52Z", "updates": []}, "emitted_at": 1670509828881} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555407698"}, "column_values": [{"id": "people", "value": null, "additional_info": null, "text": "", "title": "IT owner", "type": "multiple-person"}, {"id": "person", "value": null, "additional_info": null, "text": "", "title": "Responsible HR", "type": "multiple-person"}, {"id": "date4", "value": "{\"date\":\"2020-04-29\"}", "additional_info": null, "text": "2020-04-29", "title": "Start date", "type": "date"}, {"id": "status", "value": "{\"index\":4,\"post_id\":null}", "additional_info": "{\"label\":\"Sales\",\"color\":\"#a25ddc\",\"changed_at\":null}", "text": "Sales", "title": "Team", "type": "color"}, {"id": "status8", "value": "{\"index\":1,\"post_id\":null}", "additional_info": "{\"label\":\"Denver\",\"color\":\"#225091\",\"changed_at\":null}", "text": "Denver", "title": "Site", "type": "color"}, {"id": "status1", "value": "{\"index\":1,\"post_id\":null}", "additional_info": "{\"label\":\"Mac\",\"color\":\"#00c875\",\"changed_at\":null}", "text": "Mac", "title": "Computer type", "type": "color"}, {"id": "status2", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:48:58.600Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:48:58.600Z\"}", "text": "Done", "title": "Computer setup", "type": "color"}, {"id": "computer_setup", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:49:01.489Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:49:01.489Z\"}", "text": "Done", "title": "Google account", "type": "color"}, {"id": "google_account", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:49:04.009Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:49:04.009Z\"}", "text": "Done", "title": "Zoom account", "type": "color"}, {"id": "zoom_account", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:49:05.324Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:49:05.324Z\"}", "text": "Done", "title": "365 account", "type": "color"}, {"id": "365_account3", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:49:05.324Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:49:05.324Z\"}", "text": "Done", "title": "Setup desk monitor", "type": "color"}, {"id": "set_up_desk_monitor", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2020-06-21T13:49:05.324Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2020-06-21T13:49:05.324Z\"}", "text": "Done", "title": "Setup entrance tag", "type": "color"}, {"id": "email", "value": "{\"text\":\"mcmillan@gmail.com\",\"email\":\"mcmillan@gmail.com\"}", "additional_info": null, "text": "mcmillan@gmail.com", "title": "Email", "type": "email"}], "created_at": "2022-11-21T14:36:52Z", "creator_id": "36694549", "group": {"id": "duplicate_of_new_hires___6_25_"}, "id": "3555407969", "name": "Employee name 7", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:36:52Z", "updates": []}, "emitted_at": 1670509828883} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179105"}, "column_values": [{"id": "status", "value": null, "additional_info": null, "text": null, "title": "Status", "type": "color"}, {"id": "link", "value": "{\"url\":\"https://drive.google.com/file/d/1wC5EQFsISkGAYLTKtcw1sG3ppHNLwESl/view\",\"text\":\"Link\",\"changed_at\":\"2022-06-08T12:54:27.555Z\"}", "additional_info": null, "text": "Link - https://drive.google.com/file/d/1wC5EQFsISkGAYLTKtcw1sG3ppHNLwESl/view", "title": "Link", "type": "link"}, {"id": "label", "value": null, "additional_info": null, "text": null, "title": "Label", "type": "color"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "Text", "type": "text"}], "created_at": "2022-11-21T14:04:41Z", "creator_id": "29814928", "group": {"id": "topics"}, "id": "3555179394", "name": "API session", "parent_item": {"id": "3555179341"}, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:41Z", "updates": []}, "emitted_at": 1670509829849} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179105"}, "column_values": [{"id": "status", "value": null, "additional_info": null, "text": null, "title": "Status", "type": "color"}, {"id": "link", "value": "{\"url\":\"https://drive.google.com/file/d/1BbEblAXGDOxTiTIDIcqOzfhAh43IyuTu/view\",\"text\":\"Link\",\"changed_at\":\"2022-06-08T12:54:31.968Z\"}", "additional_info": null, "text": "Link - https://drive.google.com/file/d/1BbEblAXGDOxTiTIDIcqOzfhAh43IyuTu/view", "title": "Link", "type": "link"}, {"id": "label", "value": null, "additional_info": null, "text": null, "title": "Label", "type": "color"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "Text", "type": "text"}], "created_at": "2022-11-21T14:04:41Z", "creator_id": "29814928", "group": {"id": "topics"}, "id": "3555179405", "name": "Build a view", "parent_item": {"id": "3555179341"}, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:41Z", "updates": []}, "emitted_at": 1670509829853} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179105"}, "column_values": [{"id": "status", "value": null, "additional_info": null, "text": null, "title": "Status", "type": "color"}, {"id": "link", "value": "{\"url\":\"https://drive.google.com/file/d/1ByMoeo2yhQcZfEOLhPP_iTjhutsLHipO/view\",\"text\":\"Link\",\"changed_at\":\"2022-06-08T12:54:38.402Z\"}", "additional_info": null, "text": "Link - https://drive.google.com/file/d/1ByMoeo2yhQcZfEOLhPP_iTjhutsLHipO/view", "title": "Link", "type": "link"}, {"id": "label", "value": null, "additional_info": null, "text": null, "title": "Label", "type": "color"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "Text", "type": "text"}], "created_at": "2022-11-21T14:04:41Z", "creator_id": "29814928", "group": {"id": "topics"}, "id": "3555179418", "name": "Build an integration", "parent_item": {"id": "3555179341"}, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:41Z", "updates": []}, "emitted_at": 1670509829857} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179105"}, "column_values": [{"id": "status", "value": null, "additional_info": null, "text": null, "title": "Status", "type": "color"}, {"id": "link", "value": "{\"url\":\"https://drive.google.com/file/d/1MbhkWgJY8piKmH0uivIHaKnwYPyNr3rS/view\",\"text\":\"Link\",\"changed_at\":\"2022-06-08T12:54:48.148Z\"}", "additional_info": null, "text": "Link - https://drive.google.com/file/d/1MbhkWgJY8piKmH0uivIHaKnwYPyNr3rS/view", "title": "Link", "type": "link"}, {"id": "label", "value": null, "additional_info": null, "text": null, "title": "Label", "type": "color"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "Text", "type": "text"}], "created_at": "2022-11-21T14:04:41Z", "creator_id": "29814928", "group": {"id": "topics"}, "id": "3555179422", "name": "Authentication", "parent_item": {"id": "3555179341"}, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:41Z", "updates": []}, "emitted_at": 1670509829860} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179105"}, "column_values": [{"id": "status", "value": null, "additional_info": null, "text": null, "title": "Status", "type": "color"}, {"id": "link", "value": "{\"url\":\"https://drive.google.com/file/d/1ZUwXi9VA7MfD3JZJgvVXmpdvaosHJIKm/view\",\"text\":\"Link\",\"changed_at\":\"2022-06-08T12:54:53.319Z\"}", "additional_info": null, "text": "Link - https://drive.google.com/file/d/1ZUwXi9VA7MfD3JZJgvVXmpdvaosHJIKm/view", "title": "Link", "type": "link"}, {"id": "label", "value": null, "additional_info": null, "text": null, "title": "Label", "type": "color"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "Text", "type": "text"}], "created_at": "2022-11-21T14:04:41Z", "creator_id": "29814928", "group": {"id": "topics"}, "id": "3555179431", "name": "Build a Workspace template", "parent_item": {"id": "3555179341"}, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:41Z", "updates": []}, "emitted_at": 1670509829863} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179105"}, "column_values": [{"id": "status", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2022-11-21T14:40:58.550Z\"}", "additional_info": "{\"label\":\"Done\",\"color\":\"#00c875\",\"changed_at\":\"2022-11-21T14:40:58.550Z\"}", "text": "Done", "title": "Status", "type": "color"}, {"id": "link", "value": "{\"url\":\"https://airbyte.com/\",\"text\":\"Airbyte\",\"changed_at\":\"2022-11-21T14:40:42.184Z\"}", "additional_info": null, "text": "Airbyte - https://airbyte.com/", "title": "Link", "type": "link"}, {"id": "label", "value": "{\"index\":156,\"post_id\":null,\"changed_at\":\"2022-11-21T14:41:45.550Z\"}", "additional_info": "{\"label\":\"Label 3\",\"color\":\"#9D99B9\",\"changed_at\":\"2022-11-21T14:41:45.550Z\"}", "text": "Label 3", "title": "Label", "type": "color"}, {"id": "text", "value": "\"Test test test\"", "additional_info": null, "text": "Test test test", "title": "Text", "type": "text"}], "created_at": "2022-11-21T14:40:34Z", "creator_id": "36694549", "group": {"id": "topics"}, "id": "3555433784", "name": "Test", "parent_item": {"id": "3555179351"}, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:42:01Z", "updates": []}, "emitted_at": 1670509829866} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179105"}, "column_values": [{"id": "status", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2022-11-21T14:41:32.359Z\"}", "additional_info": "{\"label\":\"Working on it\",\"color\":\"#fdab3d\",\"changed_at\":\"2022-11-21T14:41:32.359Z\"}", "text": "Working on it", "title": "Status", "type": "color"}, {"id": "link", "value": null, "additional_info": null, "text": "", "title": "Link", "type": "link"}, {"id": "label", "value": "{\"index\":105,\"post_id\":null,\"changed_at\":\"2022-11-21T14:41:43.450Z\"}", "additional_info": "{\"label\":\"Label 1\",\"color\":\"#9AADBD\",\"changed_at\":\"2022-11-21T14:41:43.450Z\"}", "text": "Label 1", "title": "Label", "type": "color"}, {"id": "text", "value": "\"one two three #!!\"", "additional_info": null, "text": "one two three #!!", "title": "Text", "type": "text"}], "created_at": "2022-11-21T14:41:12Z", "creator_id": "36694549", "group": {"id": "topics"}, "id": "3555437747", "name": "Test1", "parent_item": {"id": "3555179351"}, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:42:09Z", "updates": [{"id": "1825302913"}]}, "emitted_at": 1670509829868} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": null, "additional_info": null, "text": "", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2022-06-07T11:29:38.019Z\"}", "additional_info": "{\"label\":\"Done!\",\"color\":\"#00c875\",\"changed_at\":\"2022-06-07T11:29:38.019Z\"}", "text": "Done!", "title": "Status", "type": "color"}, {"id": "status_10", "value": null, "additional_info": null, "text": "Other", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:39Z", "creator_id": "29814928", "group": {"id": "topics"}, "id": "3555179259", "name": "Create a dev account", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:39Z", "updates": []}, "emitted_at": 1670509831250} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": "{\"linkedPulseIds\":[{\"linkedPulseId\":3555433784},{\"linkedPulseId\":3555437747}]}", "additional_info": null, "text": "Test, Test1", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": null, "additional_info": null, "text": "", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2022-06-07T11:29:19.711Z\"}", "additional_info": "{\"label\":\"Working on it\",\"color\":\"#fdab3d\",\"changed_at\":\"2022-06-07T11:29:19.711Z\"}", "text": "Working on it", "title": "Status", "type": "color"}, {"id": "status_10", "value": null, "additional_info": null, "text": "Other", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:40Z", "creator_id": "29814928", "group": {"id": "topics"}, "id": "3555179351", "name": "Click to read this update \ud83e\udd29", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:41:13Z", "updates": [{"id": "1825206780"}]}, "emitted_at": 1670509831253} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"https://www.youtube.com/watch?v=nUMK6d1JcCY\",\"text\":\"Link\",\"changed_at\":\"2022-06-07T11:16:13.208Z\"}", "additional_info": null, "text": "Link - https://www.youtube.com/watch?v=nUMK6d1JcCY", "title": "Link", "type": "link"}, {"id": "text", "value": "\"You can write you notes here\"", "additional_info": null, "text": "You can write you notes here", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": "{\"index\":2,\"post_id\":null,\"changed_at\":\"2022-06-07T11:16:08.728Z\"}", "additional_info": "{\"label\":\"Video\",\"color\":\"#e2445c\",\"changed_at\":\"2022-06-07T11:16:08.728Z\"}", "text": "Video", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:39Z", "creator_id": "14293832", "group": {"id": "topics"}, "id": "3555179247", "name": "What is monday - 2 min video \ud83c\udfa5 (Very cool)", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:39Z", "updates": []}, "emitted_at": 1670509831256} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": null, "additional_info": null, "text": "", "title": "Link", "type": "link"}, {"id": "text", "value": "\"Notes\"", "additional_info": null, "text": "Notes", "title": "My notes", "type": "text"}, {"id": "status_1", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2022-11-21T14:42:28.383Z\"}", "additional_info": "{\"label\":\"Working on it\",\"color\":\"#fdab3d\",\"changed_at\":\"2022-11-21T14:42:28.383Z\"}", "text": "Working on it", "title": "Status", "type": "color"}, {"id": "status_10", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2022-11-21T14:42:31.122Z\"}", "additional_info": "{\"label\":\"Documentation\",\"color\":\"#175A63\",\"changed_at\":\"2022-11-21T14:42:31.122Z\"}", "text": "Documentation", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:42:29Z", "creator_id": "36694549", "group": {"id": "topics"}, "id": "3555446655", "name": "Item 1", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:42:42Z", "updates": []}, "emitted_at": 1670509831257} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": null, "additional_info": null, "text": "", "title": "Link", "type": "link"}, {"id": "text", "value": "\"Note 2\"", "additional_info": null, "text": "Note 2", "title": "My notes", "type": "text"}, {"id": "status_1", "value": "{\"index\":2,\"post_id\":null,\"changed_at\":\"2022-11-21T14:42:44.903Z\"}", "additional_info": "{\"label\":\"Stuck\",\"color\":\"#e2445c\",\"changed_at\":\"2022-11-21T14:42:44.903Z\"}", "text": "Stuck", "title": "Status", "type": "color"}, {"id": "status_10", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2022-11-21T14:42:47.315Z\"}", "additional_info": "{\"label\":\"Article\",\"color\":\"#66CCFF\",\"changed_at\":\"2022-11-21T14:42:47.315Z\"}", "text": "Article", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:42:48Z", "creator_id": "36694549", "group": {"id": "topics"}, "id": "3555448801", "name": "Item 2", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:42:58Z", "updates": []}, "emitted_at": 1670509831260} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"https://support.monday.com/hc/en-us/articles/360001267945-The-board-views\",\"text\":\"LInk\",\"changed_at\":\"2022-06-07T11:18:26.141Z\"}", "additional_info": null, "text": "LInk - https://support.monday.com/hc/en-us/articles/360001267945-The-board-views", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2022-06-07T11:17:57.718Z\"}", "additional_info": "{\"label\":\"Article\",\"color\":\"#66CCFF\",\"changed_at\":\"2022-06-07T11:17:57.718Z\"}", "text": "Article", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:39Z", "creator_id": "36694549", "group": {"id": "new_group37570"}, "id": "3555179253", "name": "Board views", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:39Z", "updates": []}, "emitted_at": 1670509831262} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"https://support.monday.com/hc/en-us/articles/360017143959-The-Item-Card-\",\"text\":\"Link\",\"changed_at\":\"2022-06-07T11:57:42.870Z\"}", "additional_info": null, "text": "Link - https://support.monday.com/hc/en-us/articles/360017143959-The-Item-Card-", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2022-06-07T11:22:29.156Z\"}", "additional_info": "{\"label\":\"Article\",\"color\":\"#66CCFF\",\"changed_at\":\"2022-06-07T11:22:29.156Z\"}", "text": "Article", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:39Z", "creator_id": "29814928", "group": {"id": "new_group37570"}, "id": "3555179292", "name": "Item views", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:39Z", "updates": []}, "emitted_at": 1670509831263} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"https://support.monday.com/hc/en-us/articles/360003445540-monday-com-Integrations\",\"text\":\"Link\",\"changed_at\":\"2022-06-07T11:51:35.374Z\"}", "additional_info": null, "text": "Link - https://support.monday.com/hc/en-us/articles/360003445540-monday-com-Integrations", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2022-06-07T11:22:29.156Z\"}", "additional_info": "{\"label\":\"Article\",\"color\":\"#66CCFF\",\"changed_at\":\"2022-06-07T11:22:29.156Z\"}", "text": "Article", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:39Z", "creator_id": "29814928", "group": {"id": "new_group37570"}, "id": "3555179262", "name": "Integrations", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:39Z", "updates": []}, "emitted_at": 1670509831265} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"https://support.monday.com/hc/en-us/articles/360002187819-The-Dashboards\",\"text\":\"Link\",\"changed_at\":\"2022-06-07T11:54:50.218Z\"}", "additional_info": null, "text": "Link - https://support.monday.com/hc/en-us/articles/360002187819-The-Dashboards", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2022-06-07T11:22:29.156Z\"}", "additional_info": "{\"label\":\"Article\",\"color\":\"#66CCFF\",\"changed_at\":\"2022-06-07T11:22:29.156Z\"}", "text": "Article", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:39Z", "creator_id": "29814928", "group": {"id": "new_group37570"}, "id": "3555179270", "name": "Dashboard widgets", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:39Z", "updates": []}, "emitted_at": 1670509831266} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"https://support.monday.com/hc/en-us/articles/360001362625-monday-com-board-templates\",\"text\":\"Link\",\"changed_at\":\"2022-06-07T11:56:20.627Z\"}", "additional_info": null, "text": "Link - https://support.monday.com/hc/en-us/articles/360001362625-monday-com-board-templates", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2022-06-07T11:56:23.316Z\"}", "additional_info": "{\"label\":\"Article\",\"color\":\"#66CCFF\",\"changed_at\":\"2022-06-07T11:56:23.316Z\"}", "text": "Article", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:39Z", "creator_id": "29814928", "group": {"id": "new_group37570"}, "id": "3555179288", "name": "Workspace template", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:39Z", "updates": []}, "emitted_at": 1670509831268} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"https://monday.com/marketplace\",\"text\":\"Apps marketplace\",\"changed_at\":\"2022-04-12T13:55:17.553Z\"}", "additional_info": null, "text": "Apps marketplace - https://monday.com/marketplace", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": null, "additional_info": null, "text": "Other", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:38Z", "creator_id": "14293832", "group": {"id": "group_title"}, "id": "3555179185", "name": "Check out our marketplace - The puzzle icon on the left pane", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:38Z", "updates": []}, "emitted_at": 1670509831269} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"https://apps.developer.monday.com/docs/monday-app-development-process\",\"text\":\"Link\",\"changed_at\":\"2022-06-07T11:58:53.115Z\"}", "additional_info": null, "text": "Link - https://apps.developer.monday.com/docs/monday-app-development-process", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2022-06-07T11:58:38.720Z\"}", "additional_info": "{\"label\":\"Article\",\"color\":\"#66CCFF\",\"changed_at\":\"2022-06-07T11:58:38.720Z\"}", "text": "Article", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:39Z", "creator_id": "14293832", "group": {"id": "group_title"}, "id": "3555179305", "name": "Plan your app", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:39Z", "updates": []}, "emitted_at": 1670509831270} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"https://monday.com/developers/apps/intro\",\"text\":\"Link\",\"changed_at\":\"2022-06-07T11:59:07.145Z\"}", "additional_info": null, "text": "Link - https://monday.com/developers/apps/intro", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2022-06-07T11:58:40.733Z\"}", "additional_info": "{\"label\":\"Documentation\",\"color\":\"#175A63\",\"changed_at\":\"2022-06-07T11:58:40.733Z\"}", "text": "Documentation", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:39Z", "creator_id": "36694549", "group": {"id": "group_title"}, "id": "3555179310", "name": "Check out our monday apps documentation", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:40Z", "updates": []}, "emitted_at": 1670509831271} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"https://apps.developer.monday.com/docs/workspace-templates\",\"text\":\"Link\",\"changed_at\":\"2022-06-07T11:59:30.527Z\"}", "additional_info": null, "text": "Link - https://apps.developer.monday.com/docs/workspace-templates", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2022-06-07T11:58:43.818Z\"}", "additional_info": "{\"label\":\"Documentation\",\"color\":\"#175A63\",\"changed_at\":\"2022-06-07T11:58:43.818Z\"}", "text": "Documentation", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:40Z", "creator_id": "36694549", "group": {"id": "group_title"}, "id": "3555179318", "name": "Bundling templates with your app", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:40Z", "updates": []}, "emitted_at": 1670509831272} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": "{\"linkedPulseIds\":[{\"linkedPulseId\":3555179394},{\"linkedPulseId\":3555179405},{\"linkedPulseId\":3555179418},{\"linkedPulseId\":3555179422},{\"linkedPulseId\":3555179431}]}", "additional_info": null, "text": "API session, Build a view, Build an integration, Authentication, Build a Workspace template", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": null, "additional_info": null, "text": "", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": "{\"index\":2,\"post_id\":null,\"changed_at\":\"2022-06-07T11:59:35.220Z\"}", "additional_info": "{\"label\":\"Video\",\"color\":\"#e2445c\",\"changed_at\":\"2022-06-07T11:59:35.220Z\"}", "text": "Video", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:40Z", "creator_id": "29814928", "group": {"id": "group_title"}, "id": "3555179341", "name": "Sessions recordings - See the framework in action (Subitems)", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:42Z", "updates": []}, "emitted_at": 1670509831273} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"https://apps.developer.monday.com/docs/submit-your-app\",\"text\":\"Link\",\"changed_at\":\"2022-06-07T12:06:37.152Z\"}", "additional_info": null, "text": "Link - https://apps.developer.monday.com/docs/submit-your-app", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": "{\"index\":0,\"post_id\":null,\"changed_at\":\"2022-06-07T12:06:30.006Z\"}", "additional_info": "{\"label\":\"Article\",\"color\":\"#66CCFF\",\"changed_at\":\"2022-06-07T12:06:30.006Z\"}", "text": "Article", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:40Z", "creator_id": "36694549", "group": {"id": "new_group45036"}, "id": "3555179324", "name": "Prepare for marketplace review", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:40Z", "updates": []}, "emitted_at": 1670509831275} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"https://view.monday.com/2586384041-f47a2dae812b0a295f0a974bfc39b42d?r=use1\",\"text\":\"Link to board\",\"changed_at\":\"2022-04-25T09:16:11.585Z\"}", "additional_info": null, "text": "Link to board - https://view.monday.com/2586384041-f47a2dae812b0a295f0a974bfc39b42d?r=use1", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": null, "additional_info": null, "text": "Other", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:39Z", "creator_id": "29814928", "group": {"id": "new_group45036"}, "id": "3555179218", "name": "App review template board", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:39Z", "updates": []}, "emitted_at": 1670509831276} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"https://forms.monday.com/forms/c390831d51274ee8882bf4fc96a6fb17\",\"text\":\"Submission form\",\"changed_at\":\"2022-04-12T14:04:58.308Z\"}", "additional_info": null, "text": "Submission form - https://forms.monday.com/forms/c390831d51274ee8882bf4fc96a6fb17", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": null, "additional_info": null, "text": "Other", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:39Z", "creator_id": "36694549", "group": {"id": "new_group45036"}, "id": "3555179230", "name": "Submit your app to review", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:39Z", "updates": []}, "emitted_at": 1670509831277} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"https://community.monday.com/c/developers/8\",\"text\":\"Link \",\"changed_at\":\"2022-04-12T14:02:46.916Z\"}", "additional_info": null, "text": "Link - https://community.monday.com/c/developers/8", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": null, "additional_info": null, "text": "Other", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:38Z", "creator_id": "36694549", "group": {"id": "new_group"}, "id": "3555179200", "name": "Developers community \ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:38Z", "updates": []}, "emitted_at": 1670509831278} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"https://style.monday.com/?path=/docs/welcome--page\",\"text\":\"Link\",\"changed_at\":\"2022-04-12T14:03:00.031Z\"}", "additional_info": null, "text": "Link - https://style.monday.com/?path=/docs/welcome--page", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": null, "additional_info": null, "text": "Other", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:39Z", "creator_id": "36694549", "group": {"id": "new_group"}, "id": "3555179207", "name": "Design kit \ud83d\udc69\ud83c\udffb\u200d\ud83c\udfa8", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:39Z", "updates": []}, "emitted_at": 1670509831279} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"https://apps.developer.monday.com/docs/monetization\",\"text\":\"Link\",\"changed_at\":\"2022-06-07T12:07:37.151Z\"}", "additional_info": null, "text": "Link - https://apps.developer.monday.com/docs/monetization", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": "{\"index\":1,\"post_id\":null,\"changed_at\":\"2022-06-07T12:07:24.046Z\"}", "additional_info": "{\"label\":\"Documentation\",\"color\":\"#175A63\",\"changed_at\":\"2022-06-07T12:07:24.046Z\"}", "text": "Documentation", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:40Z", "creator_id": "36694549", "group": {"id": "new_group"}, "id": "3555179327", "name": "monday apps monetization \ud83d\udcb0", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:40Z", "updates": []}, "emitted_at": 1670509831280} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"mailto:appsupport@monday.com/\",\"text\":\"appsupport@monday.com\",\"changed_at\":\"2022-04-13T20:54:57.089Z\"}", "additional_info": null, "text": "appsupport@monday.com - mailto:appsupport@monday.com/", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": null, "additional_info": null, "text": "Other", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:39Z", "creator_id": "36694549", "group": {"id": "new_group"}, "id": "3555179211", "name": "Technical support team \ud83e\udd70", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:39Z", "updates": []}, "emitted_at": 1670509831281} +{"stream": "items", "data": {"assets": [], "board": {"id": "3555179067"}, "column_values": [{"id": "subitems", "value": null, "additional_info": null, "text": "", "title": "Subitems", "type": "subtasks"}, {"id": "link", "value": "{\"url\":\"https://mondayclimatechallenge.devpost.com/\",\"text\":\"Link\",\"changed_at\":\"2022-06-07T13:40:18.751Z\"}", "additional_info": null, "text": "Link - https://mondayclimatechallenge.devpost.com/", "title": "Link", "type": "link"}, {"id": "text", "value": null, "additional_info": null, "text": "", "title": "My notes", "type": "text"}, {"id": "status_1", "value": null, "additional_info": null, "text": "Need to review", "title": "Status", "type": "color"}, {"id": "status_10", "value": null, "additional_info": null, "text": "Other", "title": "Type", "type": "color"}], "created_at": "2022-11-21T14:04:40Z", "creator_id": "29814928", "group": {"id": "new_group"}, "id": "3555179334", "name": "Make sure you saw to see challenge post (awesome prizes included)", "parent_item": null, "state": "active", "subscribers": [{"id": 36694549}], "updated_at": "2022-11-21T14:04:40Z", "updates": []}, "emitted_at": 1670509831281} +{"stream": "boards", "data": {"board_kind": "public", "columns": [{"archived": false, "id": "name", "settings_str": "{}", "title": "Name", "type": "name", "width": 380}, {"archived": false, "id": "manager1", "settings_str": "{}", "title": "Owner", "type": "multiple-person", "width": 80}, {"archived": false, "id": "date4", "settings_str": "{}", "title": "Request date", "type": "date", "width": null}, {"archived": false, "id": "status1", "settings_str": "{\"labels\":{\"0\":\"Evaluating\",\"1\":\"Done\",\"2\":\"Denied\",\"3\":\"Waiting for legal\",\"6\":\"Approved for POC\",\"11\":\"On hold\",\"14\":\"Waiting for vendor\",\"15\":\"Negotiation\",\"108\":\"Approved for use\"},\"labels_positions_v2\":{\"0\":0,\"1\":1,\"2\":7,\"3\":8,\"5\":9,\"6\":3,\"11\":6,\"14\":5,\"15\":4,\"108\":2},\"labels_colors\":{\"0\":{\"color\":\"#fdab3d\",\"border\":\"#E99729\",\"var_name\":\"orange\"},\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"},\"3\":{\"color\":\"#0086c0\",\"border\":\"#3DB0DF\",\"var_name\":\"blue-links\"},\"6\":{\"color\":\"#037f4c\",\"border\":\"#006B38\",\"var_name\":\"grass-green\"},\"11\":{\"color\":\"#BB3354\",\"border\":\"#A42D4A\",\"var_name\":\"dark-red\"},\"14\":{\"color\":\"#784BD1\",\"border\":\"#8F4DC4\",\"var_name\":\"dark-purple\"},\"15\":{\"color\":\"#9CD326\",\"border\":\"#89B921\",\"var_name\":\"lime-green\"},\"108\":{\"color\":\"#4eccc6\",\"border\":\"#4eccc6\",\"var_name\":\"australia\"}}}", "title": "Procurement status", "type": "color", "width": null}, {"archived": false, "id": "person", "settings_str": "{}", "title": "Manager", "type": "multiple-person", "width": 80}, {"archived": false, "id": "status", "settings_str": "{\"labels\":{\"0\":\"On Hold\",\"1\":\"Approved\",\"2\":\"Declined\"},\"labels_positions_v2\":{\"0\":0,\"1\":2,\"2\":1,\"5\":3},\"labels_colors\":{\"0\":{\"color\":\"#fdab3d\",\"border\":\"#E99729\",\"var_name\":\"orange\"},\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"}}}", "title": "Manager approval", "type": "color", "width": null}, {"archived": false, "id": "budget_owner", "settings_str": "{}", "title": "POC owner", "type": "multiple-person", "width": 80}, {"archived": false, "id": "budget_owner_approval4", "settings_str": "{\"labels\":{\"0\":\"On Hold\",\"1\":\"Approved\",\"2\":\"Declined\"},\"labels_positions_v2\":{\"0\":0,\"1\":2,\"2\":1,\"5\":3},\"labels_colors\":{\"0\":{\"color\":\"#fdab3d\",\"border\":\"#E99729\",\"var_name\":\"orange\"},\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"}}}", "title": "POC status", "type": "color", "width": null}, {"archived": false, "id": "manager", "settings_str": "{}", "title": "Budget owner", "type": "multiple-person", "width": 80}, {"archived": false, "id": "status4", "settings_str": "{\"labels\":{\"0\":\"On Hold\",\"1\":\"Approved\",\"2\":\"Declined\"},\"labels_positions_v2\":{\"0\":0,\"1\":2,\"2\":1,\"5\":3},\"labels_colors\":{\"0\":{\"color\":\"#fdab3d\",\"border\":\"#E99729\",\"var_name\":\"orange\"},\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"}}}", "title": "Budget owner approval", "type": "color", "width": 185}, {"archived": false, "id": "people", "settings_str": "{}", "title": "Procurement team", "type": "multiple-person", "width": null}, {"archived": false, "id": "budget_owner_approval", "settings_str": "{\"labels\":{\"0\":\"On Hold\",\"1\":\"Approved\",\"2\":\"Declined\"},\"labels_positions_v2\":{\"0\":0,\"1\":2,\"2\":1,\"5\":3},\"labels_colors\":{\"0\":{\"color\":\"#fdab3d\",\"border\":\"#E99729\",\"var_name\":\"orange\"},\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"}}}", "title": "Procurement approval", "type": "color", "width": null}, {"archived": false, "id": "procurement_team", "settings_str": "{}", "title": "Finance", "type": "multiple-person", "width": null}, {"archived": false, "id": "procurement_approval", "settings_str": "{\"labels\":{\"0\":\"On Hold\",\"1\":\"Approved\",\"2\":\"Declined\"},\"labels_positions_v2\":{\"0\":0,\"1\":2,\"2\":1,\"5\":3},\"labels_colors\":{\"0\":{\"color\":\"#fdab3d\",\"border\":\"#E99729\",\"var_name\":\"orange\"},\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"}}}", "title": "Finance approval", "type": "color", "width": null}, {"archived": false, "id": "finance", "settings_str": "{}", "title": "Legal", "type": "multiple-person", "width": null}, {"archived": false, "id": "finance_approval", "settings_str": "{\"labels\":{\"0\":\"On Hold\",\"1\":\"Approved\",\"2\":\"Redlines\"},\"labels_positions_v2\":{\"0\":0,\"1\":2,\"2\":1,\"5\":3},\"labels_colors\":{\"0\":{\"color\":\"#fdab3d\",\"border\":\"#E99729\",\"var_name\":\"orange\"},\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"}}}", "title": "Legal approval", "type": "color", "width": null}, {"archived": false, "id": "file", "settings_str": "{}", "title": "File", "type": "file", "width": null}, {"archived": false, "id": "legal", "settings_str": "{}", "title": "Security", "type": "multiple-person", "width": null}, {"archived": false, "id": "legal_approval", "settings_str": "{\"labels\":{\"0\":\"On Hold\",\"1\":\"Approved\",\"2\":\"Declined\"},\"labels_positions_v2\":{\"0\":0,\"1\":2,\"2\":1,\"5\":3},\"labels_colors\":{\"0\":{\"color\":\"#fdab3d\",\"border\":\"#E99729\",\"var_name\":\"orange\"},\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"}}}", "title": "Security approval", "type": "color", "width": null}, {"archived": false, "id": "date", "settings_str": "{\"hide_footer\":false}", "title": "Renewal date", "type": "date", "width": null}, {"archived": false, "id": "last_updated", "settings_str": "{}", "title": "Last updated", "type": "pulse-updated", "width": 129}], "communication": null, "description": "Many IT departments need to handle the procurement process for new services. The essence of this board is to streamline this process by providing an intuitive structure that supports collaboration and efficiency.", "groups": [{"archived": null, "color": "#579bfc", "deleted": null, "id": "topics", "position": "65536", "title": "Reviewing"}, {"archived": null, "color": "#FF642E", "deleted": null, "id": "new_group", "position": "98304.0", "title": "Corporate IT"}, {"archived": null, "color": "#037f4c", "deleted": null, "id": "new_group2816", "position": "114688.0", "title": "Finance"}], "id": "3555407826", "name": "Procurement process", "owner": {"id": 36694549}, "permissions": "everyone", "pos": null, "state": "active", "subscribers": [{"id": 36694549}], "tags": [], "top_group": {"id": "topics"}, "updated_at": "2022-11-21T14:36:50Z", "updates": [], "views": [{"id": "80969928"}], "workspace": null}, "emitted_at": 1670509832350} +{"stream": "boards", "data": {"board_kind": "public", "columns": [{"archived": false, "id": "name", "settings_str": "{}", "title": "Name", "type": "name", "width": 523}, {"archived": false, "id": "text4", "settings_str": "{}", "title": "SN", "type": "text", "width": null}, {"archived": false, "id": "status", "settings_str": "{\"done_colors\":[1],\"hide_footer\":true,\"labels\":{\"0\":\"Out for repair\",\"1\":\"Working well\",\"2\":\"Needs replacement\"},\"labels_positions_v2\":{\"0\":0,\"1\":2,\"2\":1,\"5\":3},\"labels_colors\":{\"0\":{\"color\":\"#fdab3d\",\"border\":\"#E99729\",\"var_name\":\"orange\"},\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"}}}", "title": "Status", "type": "color", "width": null}, {"archived": false, "id": "date4", "settings_str": "{}", "title": "Date given to current owner", "type": "date", "width": 204}, {"archived": false, "id": "text", "settings_str": "{}", "title": "Current owner", "type": "text", "width": null}, {"archived": false, "id": "date_given_to_current_owner", "settings_str": "{}", "title": "Last checked", "type": "date", "width": 129}], "communication": null, "description": "Welcome to your inventory management board. This is the place to track and manage all of your IT equipment inventory.", "groups": [{"archived": null, "color": "#BB3354", "deleted": null, "id": "duplicate_of_tvs___projectors", "position": "65408", "title": "Out of service"}, {"archived": null, "color": "#579bfc", "deleted": null, "id": "topics", "position": "65536", "title": "Laptops"}, {"archived": null, "color": "#a25ddc", "deleted": null, "id": "group_title", "position": "98304", "title": "Monitors"}, {"archived": null, "color": "#037f4c", "deleted": null, "id": "new_group", "position": "163840.0", "title": "TVs & projectors"}], "id": "3555407785", "name": "Inventory management", "owner": {"id": 36694549}, "permissions": "everyone", "pos": null, "state": "active", "subscribers": [{"id": 36694549}], "tags": [], "top_group": {"id": "duplicate_of_tvs___projectors"}, "updated_at": "2022-11-21T14:36:49Z", "updates": [], "views": [], "workspace": null}, "emitted_at": 1670509832352} +{"stream": "boards", "data": {"board_kind": "public", "columns": [{"archived": false, "id": "name", "settings_str": "{}", "title": "Name", "type": "name", "width": 347}, {"archived": false, "id": "people", "settings_str": "{}", "title": "IT owner", "type": "multiple-person", "width": 98}, {"archived": false, "id": "person", "settings_str": "{}", "title": "Responsible HR", "type": "multiple-person", "width": 112}, {"archived": false, "id": "date4", "settings_str": "{}", "title": "Start date", "type": "date", "width": 114}, {"archived": false, "id": "status", "settings_str": "{\"done_colors\":[1],\"hide_footer\":true,\"color_mapping\":{\"0\":16,\"1\":11,\"11\":1,\"16\":0},\"labels\":{\"0\":\"Product\",\"1\":\"Design\",\"2\":\"HR\",\"3\":\"R\\u0026D\",\"4\":\"Sales\",\"6\":\"Partners\",\"7\":\"Finance\"},\"labels_positions_v2\":{\"0\":0,\"1\":2,\"2\":1,\"3\":3,\"4\":4,\"5\":7,\"6\":5,\"7\":6},\"labels_colors\":{\"0\":{\"color\":\"#66CCFF\",\"border\":\"#5AB3E0\",\"var_name\":\"turquoise\"},\"1\":{\"color\":\"#BB3354\",\"border\":\"#A42D4A\",\"var_name\":\"dark-red\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"},\"3\":{\"color\":\"#0086c0\",\"border\":\"#3DB0DF\",\"var_name\":\"blue-links\"},\"4\":{\"color\":\"#a25ddc\",\"border\":\"#9238AF\",\"var_name\":\"purple\"},\"6\":{\"color\":\"#037f4c\",\"border\":\"#006B38\",\"var_name\":\"grass-green\"},\"7\":{\"color\":\"#579bfc\",\"border\":\"#4387E8\",\"var_name\":\"bright-blue\"}}}", "title": "Team", "type": "color", "width": 103}, {"archived": false, "id": "status8", "settings_str": "{\"done_colors\":[1],\"hide_footer\":true,\"color_mapping\":{\"1\":107,\"2\":19,\"3\":1,\"19\":2,\"107\":3},\"labels\":{\"1\":\"Denver\",\"2\":\"Florida\",\"14\":\"New York\"},\"labels_positions_v2\":{\"1\":2,\"2\":0,\"5\":3,\"14\":1},\"labels_colors\":{\"1\":{\"color\":\"#225091\",\"border\":\"#225091\",\"var_name\":\"navy\"},\"2\":{\"color\":\"#FF642E\",\"border\":\"#E05828\",\"var_name\":\"dark-orange\"},\"14\":{\"color\":\"#784BD1\",\"border\":\"#8F4DC4\",\"var_name\":\"dark-purple\"}}}", "title": "Site", "type": "color", "width": 80}, {"archived": false, "id": "status1", "settings_str": "{\"done_colors\":[1],\"hide_footer\":true,\"labels\":{\"1\":\"Mac\",\"14\":\"PC\"},\"labels_positions_v2\":{\"1\":0,\"5\":2,\"14\":1},\"labels_colors\":{\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"14\":{\"color\":\"#784BD1\",\"border\":\"#8F4DC4\",\"var_name\":\"dark-purple\"}}}", "title": "Computer type", "type": "color", "width": 107}, {"archived": false, "id": "status2", "settings_str": "{\"done_colors\":[1],\"hide_footer\":true,\"labels\":{\"0\":\"Working on it\",\"1\":\"Done\",\"2\":\"Stuck\"},\"labels_positions_v2\":{\"0\":0,\"1\":2,\"2\":1,\"5\":3},\"labels_colors\":{\"0\":{\"color\":\"#fdab3d\",\"border\":\"#E99729\",\"var_name\":\"orange\"},\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"}}}", "title": "Computer setup", "type": "color", "width": 116}, {"archived": false, "id": "computer_setup", "settings_str": "{\"done_colors\":[1],\"hide_footer\":true,\"labels\":{\"0\":\"Working on it\",\"1\":\"Done\",\"2\":\"Stuck\"},\"labels_positions_v2\":{\"0\":0,\"1\":2,\"2\":1,\"5\":3},\"labels_colors\":{\"0\":{\"color\":\"#fdab3d\",\"border\":\"#E99729\",\"var_name\":\"orange\"},\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"}}}", "title": "Google account", "type": "color", "width": 110}, {"archived": false, "id": "google_account", "settings_str": "{\"done_colors\":[1],\"hide_footer\":true,\"labels\":{\"0\":\"Working on it\",\"1\":\"Done\",\"2\":\"Stuck\"},\"labels_positions_v2\":{\"0\":0,\"1\":2,\"2\":1,\"5\":3},\"labels_colors\":{\"0\":{\"color\":\"#fdab3d\",\"border\":\"#E99729\",\"var_name\":\"orange\"},\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"}}}", "title": "Zoom account", "type": "color", "width": 104}, {"archived": false, "id": "zoom_account", "settings_str": "{\"done_colors\":[1],\"hide_footer\":true,\"labels\":{\"0\":\"Working on it\",\"1\":\"Done\",\"2\":\"Stuck\"},\"labels_positions_v2\":{\"0\":0,\"1\":2,\"2\":1,\"5\":3},\"labels_colors\":{\"0\":{\"color\":\"#fdab3d\",\"border\":\"#E99729\",\"var_name\":\"orange\"},\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"}}}", "title": "365 account", "type": "color", "width": 102}, {"archived": false, "id": "365_account3", "settings_str": "{\"done_colors\":[1],\"hide_footer\":true,\"labels\":{\"0\":\"Working on it\",\"1\":\"Done\",\"2\":\"Stuck\"},\"labels_positions_v2\":{\"0\":0,\"1\":2,\"2\":1,\"5\":3},\"labels_colors\":{\"0\":{\"color\":\"#fdab3d\",\"border\":\"#E99729\",\"var_name\":\"orange\"},\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"}}}", "title": "Setup desk monitor", "type": "color", "width": 132}, {"archived": false, "id": "set_up_desk_monitor", "settings_str": "{\"done_colors\":[1],\"hide_footer\":true,\"labels\":{\"0\":\"Working on it\",\"1\":\"Done\",\"2\":\"Stuck\"},\"labels_positions_v2\":{\"0\":0,\"1\":2,\"2\":1,\"5\":3},\"labels_colors\":{\"0\":{\"color\":\"#fdab3d\",\"border\":\"#E99729\",\"var_name\":\"orange\"},\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"}}}", "title": "Setup entrance tag", "type": "color", "width": null}, {"archived": false, "id": "email", "settings_str": "{}", "title": "Email", "type": "email", "width": null}], "communication": null, "description": "This is an IT onboarding process board. The essence of this board is to track the IT onboarding process of new employees.", "groups": [{"archived": null, "color": "#037f4c", "deleted": null, "id": "airbyte_group27398", "position": "16352.0", "title": "Airbyte group"}, {"archived": null, "color": "#a25ddc", "deleted": null, "id": "airbyte_group", "position": "32704.0", "title": "Airbyte group"}, {"archived": null, "color": "#FF642E", "deleted": null, "id": "new_group", "position": "65408", "title": "More information about this template:"}, {"archived": null, "color": "#579bfc", "deleted": null, "id": "topics", "position": "65536", "title": "New Hires - June"}, {"archived": null, "color": "#a25ddc", "deleted": null, "id": "group_title", "position": "98304", "title": "New Hires - May"}, {"archived": null, "color": "#037f4c", "deleted": null, "id": "duplicate_of_new_hires___6_25_", "position": "196608.0", "title": "New Hires - April"}], "id": "3555407698", "name": "IT Onboarding", "owner": {"id": 36694549}, "permissions": "everyone", "pos": null, "state": "active", "subscribers": [{"id": 36694549}], "tags": [], "top_group": {"id": "airbyte_group27398"}, "updated_at": "2022-11-21T14:36:49Z", "updates": [{"id": "1825289531"}], "views": [{"id": "80969927"}, {"id": "80969929"}], "workspace": null}, "emitted_at": 1670509832353} +{"stream": "boards", "data": {"board_kind": "public", "columns": [{"archived": false, "id": "name", "settings_str": "{}", "title": "Name", "type": "name", "width": 414}, {"archived": false, "id": "status", "settings_str": "{\"labels\":{\"0\":\"Working on it\",\"1\":\"Done\",\"2\":\"Stuck\"},\"labels_colors\":{\"0\":{\"color\":\"#fdab3d\",\"border\":\"#E99729\",\"var_name\":\"orange\"},\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"}}}", "title": "Status", "type": "color", "width": null}, {"archived": false, "id": "link", "settings_str": "{}", "title": "Link", "type": "link", "width": null}, {"archived": false, "id": "label", "settings_str": "{\"done_colors\":[1],\"labels\":{\"3\":\"Label 2\",\"105\":\"Label 1\",\"156\":\"Label 3\"},\"labels_positions_v2\":{\"3\":1,\"5\":3,\"105\":0,\"156\":2},\"labels_colors\":{\"3\":{\"color\":\"#0086c0\",\"border\":\"#3DB0DF\",\"var_name\":\"blue-links\"},\"105\":{\"color\":\"#9AADBD\",\"border\":\"#9AADBD\",\"var_name\":\"winter\"},\"156\":{\"color\":\"#9D99B9\",\"border\":\"#9D99B9\",\"var_name\":\"purple_gray\"}}}", "title": "Label", "type": "color", "width": null}, {"archived": false, "id": "text", "settings_str": "{}", "title": "Text", "type": "text", "width": null}], "communication": null, "description": null, "groups": [{"archived": null, "color": "#579bfc", "deleted": null, "id": "topics", "position": "65536", "title": "Subitems"}], "id": "3555179105", "name": "Subitems of Welcome to your monday dev account \ud83d\ude0d", "owner": {"id": 36694549}, "permissions": "everyone", "pos": null, "state": "active", "subscribers": [{"id": 36694549}], "tags": [], "top_group": {"id": "topics"}, "updated_at": "2022-11-21T14:42:06Z", "updates": [{"id": "1825302913"}], "views": [], "workspace": null}, "emitted_at": 1670509832355} +{"stream": "boards", "data": {"board_kind": "public", "columns": [{"archived": false, "id": "name", "settings_str": "{}", "title": "Name", "type": "name", "width": 596}, {"archived": false, "id": "subitems", "settings_str": "{\"allowMultipleItems\":true,\"itemTypeName\":\"column.subtasks.title\",\"displayType\":\"BOARD_INLINE\",\"boardIds\":[3555179105]}", "title": "Subitems", "type": "subtasks", "width": null}, {"archived": false, "id": "link", "settings_str": "{}", "title": "Link", "type": "link", "width": 168}, {"archived": false, "id": "text", "settings_str": "{}", "title": "My notes", "type": "text", "width": 262}, {"archived": false, "id": "status_1", "settings_str": "{\"labels\":{\"0\":\"Working on it\",\"1\":\"Done!\",\"2\":\"Stuck\",\"5\":\"Need to review\"},\"labels_positions_v2\":{\"0\":0,\"1\":1,\"2\":2,\"5\":3},\"labels_colors\":{\"0\":{\"color\":\"#fdab3d\",\"border\":\"#E99729\",\"var_name\":\"orange\"},\"1\":{\"color\":\"#00c875\",\"border\":\"#00B461\",\"var_name\":\"green-shadow\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"},\"5\":{\"color\":\"#c4c4c4\",\"border\":\"#B0B0B0\",\"var_name\":\"grey\"}}}", "title": "Status", "type": "color", "width": null}, {"archived": false, "id": "status_10", "settings_str": "{\"done_colors\":[1],\"color_mapping\":{\"0\":16,\"1\":160,\"16\":0,\"160\":1},\"labels\":{\"0\":\"Article\",\"1\":\"Documentation\",\"2\":\"Video\",\"5\":\"Other\"},\"labels_colors\":{\"0\":{\"color\":\"#66CCFF\",\"border\":\"#5AB3E0\",\"var_name\":\"turquoise\"},\"1\":{\"color\":\"#175A63\",\"border\":\"#175A63\",\"var_name\":\"eden\"},\"2\":{\"color\":\"#e2445c\",\"border\":\"#CE3048\",\"var_name\":\"red-shadow\"},\"5\":{\"color\":\"#c4c4c4\",\"border\":\"#B0B0B0\",\"var_name\":\"grey\"}}}", "title": "Type", "type": "color", "width": null}], "communication": null, "description": null, "groups": [{"archived": null, "color": "#579bfc", "deleted": null, "id": "topics", "position": "81920", "title": "Get to know monday.com"}, {"archived": null, "color": "#FF158A", "deleted": null, "id": "new_group37570", "position": "90112", "title": "What can be developed on monday.com"}, {"archived": null, "color": "#a25ddc", "deleted": null, "id": "group_title", "position": "98304", "title": "Build your monday app"}, {"archived": null, "color": "#fdab3d", "deleted": null, "id": "new_group45036", "position": "131072.0", "title": "Prepare for app submission"}, {"archived": null, "color": "#0086c0", "deleted": null, "id": "new_group", "position": "163840.0", "title": "Helpful resources"}], "id": "3555179067", "name": "Welcome to your monday dev account \ud83d\ude0d", "owner": {"id": 36694549}, "permissions": "everyone", "pos": null, "state": "active", "subscribers": [{"id": 36694549}], "tags": [], "top_group": {"id": "topics"}, "updated_at": "2022-11-21T14:04:38Z", "updates": [{"id": "1825206780"}], "views": [{"id": "80965788"}], "workspace": null}, "emitted_at": 1670509832356} +{"stream": "updates", "data": {"assets": [], "body": "

    \ufeffTest

    ", "created_at": "2022-11-21T14:41:21Z", "creator_id": "36694549", "id": "1825302913", "item_id": "3555437747", "replies": [{"id": "1825303266", "creator_id": "36694549", "created_at": "2022-11-21T14:41:29Z", "text_body": "\ufeffTest test", "updated_at": "2022-11-21T14:41:29Z", "body": "

    \ufeffTest test

    "}], "text_body": "\ufeffTest", "updated_at": "2022-11-21T14:41:29Z"}, "emitted_at": 1670509894939} +{"stream": "updates", "data": {"assets": [], "body": "

    \ufeffHey there \ud83d\udc4b

    \ufeffThis is an update, we usually use this to...update \ud83d\ude04

    \ufeffWe love to communicate with the context of a specific item.

    \ufeff

    \ufeffRight above this box, there are tabs for different item views which can also be used for apps.

    ", "created_at": "2022-06-08T12:53:39Z", "creator_id": "-7", "id": "1825206780", "item_id": "3555179351", "replies": [], "text_body": "\ufeffHey there \ud83d\udc4b\n\n\ufeffThis is an update, we usually use this to...update \ud83d\ude04\n\n\ufeffWe love to communicate with the context of a specific item.\n\n\ufeff\n\n\ufeffRight above this box, there are tabs for different item views which can also be used for apps.", "updated_at": "2022-11-21T14:04:40Z"}, "emitted_at": 1670509894942} +{"stream": "users", "data": {"birthday": null, "country_code": "UA", "created_at": "2022-11-21T14:03:00Z", "join_date": null, "email": "integration-test@airbyte.io", "enabled": true, "id": 36694549, "is_admin": true, "is_guest": false, "is_pending": false, "is_view_only": false, "is_verified": true, "location": null, "mobile_phone": null, "name": "Airbyte Team", "phone": "", "photo_original": "https://files.monday.com/use1/photos/36694549/original/36694549-user_photo_2022_11_21_14_10_42.png?1669039842", "photo_small": "https://files.monday.com/use1/photos/36694549/small/36694549-user_photo_2022_11_21_14_10_42.png?1669039842", "photo_thumb": "https://files.monday.com/use1/photos/36694549/thumb/36694549-user_photo_2022_11_21_14_10_42.png?1669039842", "photo_thumb_small": "https://files.monday.com/use1/photos/36694549/thumb_small/36694549-user_photo_2022_11_21_14_10_42.png?1669039842", "photo_tiny": "https://files.monday.com/use1/photos/36694549/tiny/36694549-user_photo_2022_11_21_14_10_42.png?1669039842", "time_zone_identifier": "Europe/Kiev", "title": "Airbyte Developer Account", "url": "https://airbyte-unit.monday.com/users/36694549", "utc_hours_diff": 2}, "emitted_at": 1670509895766} +{"stream": "users", "data": {"birthday": null, "country_code": "UA", "created_at": "2022-11-21T14:33:18Z", "join_date": null, "email": "iryna.grankova@airbyte.io", "enabled": true, "id": 36695702, "is_admin": false, "is_guest": false, "is_pending": false, "is_view_only": false, "is_verified": true, "location": null, "mobile_phone": null, "name": "Iryna Grankova", "phone": null, "photo_original": "https://files.monday.com/use1/photos/36695702/original/36695702-user_photo_initials_2022_11_21_14_34_12.png?1669041252", "photo_small": "https://files.monday.com/use1/photos/36695702/small/36695702-user_photo_initials_2022_11_21_14_34_12.png?1669041252", "photo_thumb": "https://files.monday.com/use1/photos/36695702/thumb/36695702-user_photo_initials_2022_11_21_14_34_12.png?1669041252", "photo_thumb_small": "https://files.monday.com/use1/photos/36695702/thumb_small/36695702-user_photo_initials_2022_11_21_14_34_12.png?1669041252", "photo_tiny": "https://files.monday.com/use1/photos/36695702/tiny/36695702-user_photo_initials_2022_11_21_14_34_12.png?1669041252", "time_zone_identifier": "Europe/Athens", "title": null, "url": "https://airbyte-unit.monday.com/users/36695702", "utc_hours_diff": 2}, "emitted_at": 1670509895770} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-monday/source_monday/__init__.py b/airbyte-integrations/connectors/source-monday/source_monday/__init__.py index b2995ef1eb17..433e7ff4d9b0 100644 --- a/airbyte-integrations/connectors/source-monday/source_monday/__init__.py +++ b/airbyte-integrations/connectors/source-monday/source_monday/__init__.py @@ -3,6 +3,10 @@ # -from .source import SourceMonday +from .dpath_string_extractor import DpathStringExtractor +from .graphql_request_options_provider import GraphQLRequestOptionsProvider -__all__ = ["SourceMonday"] +# from .source import SourceMonday +from .source_lc import SourceMonday + +__all__ = ["SourceMonday", "GraphQLRequestOptionsProvider", "DpathStringExtractor"] diff --git a/airbyte-integrations/connectors/source-monday/source_monday/dpath_string_extractor.py b/airbyte-integrations/connectors/source-monday/source_monday/dpath_string_extractor.py new file mode 100644 index 000000000000..f5065bb380ae --- /dev/null +++ b/airbyte-integrations/connectors/source-monday/source_monday/dpath_string_extractor.py @@ -0,0 +1,53 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +from dataclasses import InitVar, dataclass +from typing import Any, List, Mapping, Union + +import dpath.util +import requests +from airbyte_cdk.sources.declarative.decoders.decoder import Decoder +from airbyte_cdk.sources.declarative.decoders.json_decoder import JsonDecoder +from airbyte_cdk.sources.declarative.extractors.record_extractor import RecordExtractor +from airbyte_cdk.sources.declarative.interpolation.interpolated_string import InterpolatedString +from airbyte_cdk.sources.declarative.types import Config, Record +from dataclasses_jsonschema import JsonSchemaMixin + + +@dataclass +class DpathStringExtractor(RecordExtractor, JsonSchemaMixin): + """ + Makes it easy to extract records from nested and complex structures (nested lists, dicts, mixed structures) by specifying dpath string. + Example: For the following structure `S` we want to extract and combine all the "expected_records" list values all together in one list. + >>> import dpath.util + >>> S = { + ... "key": { + ... "subkey": [ + ... {"expected_records": [ {"id": 1}, {"id": 2}, {"id": 3} ]}, + ... {"expected_records": [ {"id": 4} ]} + ... ] + ... } + ... } + >>> dpath.util.values(S, "/key/subkey/*/expected_records/*") # The result: [{'id': 1}, {'id': 2}, {'id': 3}, {'id': 4}] + # Now we are able to specify the `field_pointer` as a dpath interpolated string "/key/subkey/*/expected_records/*": + record_selector: + ... + extractor: + ... + field_pointer: "/key/subkey/*/expected_records/*" + class_name: "source_monday.DpathStringExtractor" + """ + + field_pointer: Union[InterpolatedString, str] + config: Config + options: InitVar[Mapping[str, Any]] + decoder: Decoder = JsonDecoder(options={}) + + def __post_init__(self, options: Mapping[str, Any]): + self.field_pointer = InterpolatedString.create(self.field_pointer, options=options) + self.field_pointer = self.field_pointer.eval(self.config) + + def extract_records(self, response: requests.Response) -> List[Record]: + response_body = self.decoder.decode(response) + return dpath.util.values(response_body, self.field_pointer) diff --git a/airbyte-integrations/connectors/source-monday/source_monday/graphql_request_options_provider.py b/airbyte-integrations/connectors/source-monday/source_monday/graphql_request_options_provider.py new file mode 100644 index 000000000000..bb255c248baa --- /dev/null +++ b/airbyte-integrations/connectors/source-monday/source_monday/graphql_request_options_provider.py @@ -0,0 +1,113 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import json +import os +from dataclasses import dataclass +from typing import Any, Mapping, MutableMapping, Optional, Type, Union + +from airbyte_cdk.sources.declarative.interpolation import InterpolatedString +from airbyte_cdk.sources.declarative.requesters.request_options import InterpolatedRequestOptionsProvider +from airbyte_cdk.sources.declarative.types import StreamSlice, StreamState + + +@dataclass +class GraphQLRequestOptionsProvider(InterpolatedRequestOptionsProvider): + NEXT_PAGE_TOKEN_FIELD_NAME = "next_page_token" + NESTED_OBJECTS_LIMIT_MAX_VALUE = 100 + + limit: Union[InterpolatedString, str, int] = None + + def __post_init__(self, options: Mapping[str, Any]): + super(GraphQLRequestOptionsProvider, self).__post_init__(options) + + self.limit = InterpolatedString.create(self.limit, options=options) + self.name = options.get("name", "").lower() + + def _ensure_type(self, t: Type, o: Any): + """ + Ensure given object `o` is of type `t` + """ + if not isinstance(o, t): + raise TypeError(f"{type(o)} {o} is not of type {t}") + + def _get_schema_root_properties(self): + schema_path = os.path.join(os.path.abspath(os.curdir), "source_monday", f"schemas/{self.name}.json") + with open(schema_path) as f: + schema_dict = json.load(f) + return schema_dict["properties"] + + def _get_object_arguments(self, **object_arguments) -> str: + return ",".join([f"{argument}:{value}" for argument, value in object_arguments.items() if value is not None]) + + def _build_query(self, object_name: str, field_schema: dict, **object_arguments) -> str: + """ + Recursive function that builds a GraphQL query string by traversing given stream schema properties. + Attributes + object_name (str): the name of root object + field_schema (dict): configured catalog schema for current stream + object_arguments (dict): arguments such as limit, page, ids, ... etc to be passed for given object + """ + fields = [] + for field, nested_schema in field_schema.items(): + nested_fields = nested_schema.get("properties", nested_schema.get("items", {}).get("properties")) + if nested_fields: + # preconfigured_arguments = get properties from schema or any other source ... + # fields.append(self._build_query(field, nested_fields, **preconfigured_arguments)) + fields.append(self._build_query(field, nested_fields)) + else: + fields.append(field) + + arguments = self._get_object_arguments(**object_arguments) + arguments = f"({arguments})" if arguments else "" + fields = ",".join(fields) + + return f"{object_name}{arguments}{{{fields}}}" + + def _build_items_query(self, object_name: str, field_schema: dict, **object_arguments) -> str: + """ + Special optimization needed for items stream. Starting October 3rd, 2022 items can only be reached through boards. + See https://developer.monday.com/api-reference/docs/items-queries#items-queries + """ + query = self._build_query(object_name, field_schema, limit=self.NESTED_OBJECTS_LIMIT_MAX_VALUE) + arguments = self._get_object_arguments(**object_arguments) + return f"boards({arguments}){{{query}}}" + + def _build_teams_query(self, object_name: str, field_schema: dict, **object_arguments) -> str: + """ + Special optimization needed for tests to pass successfully because of rate limits. + It makes a query cost less points and should not be used to production + """ + teams_limit = self.config.get("teams_limit") + if teams_limit: + self._ensure_type(int, teams_limit) + arguments = self._get_object_arguments(**object_arguments) + query = f"{{id,name,picture_url,users(limit:{teams_limit}){{id}}}}" + return f"{object_name}({arguments}){query}" + return self._build_query(object_name=object_name, field_schema=field_schema, **object_arguments) + + def get_request_params( + self, + *, + stream_state: Optional[StreamState] = None, + stream_slice: Optional[StreamSlice] = None, + next_page_token: Optional[Mapping[str, Any]] = None, + ) -> MutableMapping[str, Any]: + """ + Combines queries to a single GraphQL query. + """ + limit = self.limit.eval(self.config) + if self.name == "items": + query_builder = self._build_items_query + elif self.name == "teams": + query_builder = self._build_teams_query + else: + query_builder = self._build_query + query = query_builder( + object_name=self.name, + field_schema=self._get_schema_root_properties(), + limit=limit or None, + page=next_page_token and next_page_token[self.NEXT_PAGE_TOKEN_FIELD_NAME], + ) + return {"query": f"query{{{query}}}"} diff --git a/airbyte-integrations/connectors/source-monday/source_monday/monday.yaml b/airbyte-integrations/connectors/source-monday/source_monday/monday.yaml new file mode 100644 index 000000000000..2e058e23f7d5 --- /dev/null +++ b/airbyte-integrations/connectors/source-monday/source_monday/monday.yaml @@ -0,0 +1,104 @@ +version: "0.1.0" + +definitions: + schema_loader: + type: JsonSchema + file_path: "./source_monday/schemas/{{ options['name'] }}.json" + selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_pointer: + - "data" + - "{{ options['name'] }}" + requester: + url_base: "https://api.monday.com/v2" + http_method: "GET" + authenticator: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_token'] if config['credentials']['auth_type'] == 'api_token' else config['credentials']['access_token'] if config['credentials']['auth_type'] == 'oauth2.0' else config.get('api_token', '') }}" + request_options_provider: + class_name: "source_monday.GraphQLRequestOptionsProvider" + limit: "{{ options['items_per_page'] }}" + error_handler: + response_filters: + - predicate: "{{ 'error_code' in response and response['error_code'] == 'ComplexityException' }}" + action: RETRY + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 60 + default_paginator: + type: "DefaultPaginator" + url_base: "https://api.monday.com/v2" + pagination_strategy: + type: "PageIncrement" + start_from_page: 1 + page_size: 100 + retriever: + record_selector: + $ref: "*ref(definitions.selector)" + requester: + $ref: "*ref(definitions.requester)" + paginator: + $ref: "*ref(definitions.default_paginator)" + base_stream: + retriever: + $ref: "*ref(definitions.retriever)" + schema_loader: + $ref: "*ref(definitions.schema_loader)" + primary_key: "id" + base_nopagination_stream: + retriever: + $ref: "*ref(definitions.retriever)" + paginator: + type: NoPagination + items_stream: + $ref: "*ref(definitions.base_stream)" + retriever: + $ref: "*ref(definitions.retriever)" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_pointer: "/data/boards/*/items/*" + class_name: "source_monday.DpathStringExtractor" + paginator: + $ref: "*ref(definitions.default_paginator)" + pagination_strategy: + $ref: "*ref(definitions.default_paginator.pagination_strategy)" + page_size: 1 + $options: + name: "items" + path: "" + items_per_page: 1 + boards_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "boards" + path: "" + teams_stream: + $ref: "*ref(definitions.base_nopagination_stream)" + $options: + name: "teams" + path: "" + updates_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "updates" + path: "" + users_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "users" + path: "" + +streams: + - "*ref(definitions.items_stream)" + - "*ref(definitions.boards_stream)" + - "*ref(definitions.teams_stream)" + - "*ref(definitions.updates_stream)" + - "*ref(definitions.users_stream)" + +check: + stream_names: + - "users" diff --git a/airbyte-integrations/connectors/source-monday/source_monday/schemas/boards.json b/airbyte-integrations/connectors/source-monday/source_monday/schemas/boards.json index 196f77d9ef2e..69f57548890b 100644 --- a/airbyte-integrations/connectors/source-monday/source_monday/schemas/boards.json +++ b/airbyte-integrations/connectors/source-monday/source_monday/schemas/boards.json @@ -27,7 +27,7 @@ "title": { "type": ["null", "string"] } } }, - "id": { "type": ["null", "integer"] }, + "id": { "type": ["null", "string"] }, "name": { "type": ["null", "string"] }, "owner": { "type": ["null", "object"], diff --git a/airbyte-integrations/connectors/source-monday/source_monday/schemas/items.json b/airbyte-integrations/connectors/source-monday/source_monday/schemas/items.json index a7a150e15c07..66763c3e21c2 100644 --- a/airbyte-integrations/connectors/source-monday/source_monday/schemas/items.json +++ b/airbyte-integrations/connectors/source-monday/source_monday/schemas/items.json @@ -11,7 +11,7 @@ "board": { "type": ["null", "object"], "properties": { - "id": { "type": ["null", "integer"] } + "id": { "type": ["null", "string"] } } }, "column_values": { @@ -26,19 +26,19 @@ } }, "created_at": { "type": ["null", "string"], "format": "date-time" }, - "creator_id": { "type": ["null", "integer"] }, + "creator_id": { "type": ["null", "string"] }, "group": { "type": ["null", "object"], "properties": { "id": { "type": ["null", "string"] } } }, - "id": { "type": ["null", "integer"] }, + "id": { "type": ["null", "string"] }, "name": { "type": ["null", "string"] }, "parent_item": { "type": ["null", "object"], "properties": { - "id": { "type": ["null", "integer"] } + "id": { "type": ["null", "string"] } } }, "state": { "type": ["null", "string"] }, diff --git a/airbyte-integrations/connectors/source-monday/source_monday/schemas/updates.json b/airbyte-integrations/connectors/source-monday/source_monday/schemas/updates.json index 11a3164a6fad..c35d55986103 100644 --- a/airbyte-integrations/connectors/source-monday/source_monday/schemas/updates.json +++ b/airbyte-integrations/connectors/source-monday/source_monday/schemas/updates.json @@ -10,9 +10,9 @@ }, "body": { "type": ["null", "string"] }, "created_at": { "type": ["null", "string"], "format": "date-time" }, - "creator_id": { "type": ["null", "integer"] }, - "id": { "type": ["null", "integer"] }, - "item_id": { "type": ["null", "integer"] }, + "creator_id": { "type": ["null", "string"] }, + "id": { "type": ["null", "string"] }, + "item_id": { "type": ["null", "string"] }, "replies": { "type": ["null", "array"], "properties": { diff --git a/airbyte-integrations/connectors/source-monday/source_monday/source_lc.py b/airbyte-integrations/connectors/source-monday/source_monday/source_lc.py new file mode 100644 index 000000000000..932f5206a4b6 --- /dev/null +++ b/airbyte-integrations/connectors/source-monday/source_monday/source_lc.py @@ -0,0 +1,17 @@ +# +# 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 SourceMonday(YamlDeclarativeSource): + def __init__(self): + super().__init__(**{"path_to_yaml": "monday.yaml"}) diff --git a/airbyte-integrations/connectors/source-monday/unit_tests/test_graphql_request_options_provider.py b/airbyte-integrations/connectors/source-monday/unit_tests/test_graphql_request_options_provider.py new file mode 100644 index 000000000000..c2b0a28b103f --- /dev/null +++ b/airbyte-integrations/connectors/source-monday/unit_tests/test_graphql_request_options_provider.py @@ -0,0 +1,93 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import pytest +from source_monday import GraphQLRequestOptionsProvider + +nested_object_schema = { + "root": { + "type": ["null", "array"], + "properties": { + "nested": { + "type": ["null", "object"], + "properties": { + "nested_of_nested": {"type": ["null", "string"]} + } + } + } + }, + "sibling": {"type": ["null", "string"]} +} + +nested_array_schema = { + "root": { + "type": ["null", "array"], + "items": { + "type": ["null", "array"], + "properties": { + "nested": { + "type": ["null", "object"], + "properties": { + "nested_of_nested": {"type": ["null", "string"]} + } + } + } + } + }, + "sibling": {"type": ["null", "string"]} +} + + +@pytest.mark.parametrize( + ("input_schema", "stream_name", "config", "graphql_query"), + [ + pytest.param( + nested_object_schema, + "test_stream", + {}, + {"query": "query{test_stream(limit:100,page:2){root{nested{nested_of_nested}},sibling}}"}, + id="test_get_request_params_produces_graphql_query_for_object_items" + ), + pytest.param( + nested_array_schema, + "test_stream", + {}, + {"query": "query{test_stream(limit:100,page:2){root{nested{nested_of_nested}},sibling}}"}, + id="test_get_request_params_produces_graphql_query_for_array_items" + ), + pytest.param( + nested_array_schema, + "items", + {}, + {"query": "query{boards(limit:100,page:2){items(limit:100){root{nested{nested_of_nested}},sibling}}}"}, + id="test_get_request_params_produces_graphql_query_for_items_stream" + ), + pytest.param( + nested_array_schema, + "teams", + {"teams_limit": 100}, + {'query': 'query{teams(limit:100,page:2){id,name,picture_url,users(limit:100){id}}}'}, + id="test_get_request_params_produces_graphql_query_for_teams_optimized_stream" + ), + pytest.param( + nested_array_schema, + "teams", + {}, + {'query': 'query{teams(limit:100,page:2){root{nested{nested_of_nested}},sibling}}'}, + id="test_get_request_params_produces_graphql_query_for_teams_stream" + ) + ] +) +def test_get_request_params(mocker, input_schema, graphql_query, stream_name, config): + mocker.patch.object(GraphQLRequestOptionsProvider, "_get_schema_root_properties", return_value=input_schema) + provider = GraphQLRequestOptionsProvider( + limit="{{ options['items_per_page'] }}", + options={"name": stream_name, "items_per_page": 100}, + config=config + ) + assert provider.get_request_params( + stream_state={}, + stream_slice={}, + next_page_token={"next_page_token": 2} + ) == graphql_query diff --git a/airbyte-integrations/connectors/source-mongodb-strict-encrypt/src/main/java/io.airbyte.integrations.source.mongodb/MongodbSourceStrictEncrypt.java b/airbyte-integrations/connectors/source-mongodb-strict-encrypt/src/main/java/io.airbyte.integrations.source.mongodb/MongodbSourceStrictEncrypt.java index 5fb9f8a43074..f459280c6c7f 100644 --- a/airbyte-integrations/connectors/source-mongodb-strict-encrypt/src/main/java/io.airbyte.integrations.source.mongodb/MongodbSourceStrictEncrypt.java +++ b/airbyte-integrations/connectors/source-mongodb-strict-encrypt/src/main/java/io.airbyte.integrations.source.mongodb/MongodbSourceStrictEncrypt.java @@ -13,8 +13,8 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.Source; import io.airbyte.integrations.base.spec_modification.SpecModifyingSource; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.slf4j.Logger; import org.slf4j.LoggerFactory; 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 462d70006572..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,14 +21,14 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.nio.file.Files; import java.nio.file.Path; import java.util.HashMap; diff --git a/airbyte-integrations/connectors/source-mongodb-v2/acceptance-test-config.yml b/airbyte-integrations/connectors/source-mongodb-v2/acceptance-test-config.yml index 6402c3beba5f..ce4581678511 100644 --- a/airbyte-integrations/connectors/source-mongodb-v2/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-mongodb-v2/acceptance-test-config.yml @@ -1,7 +1,29 @@ # 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-mongodb-v2:dev -tests: +acceptance_tests: spec: - - spec_path: "src/test-integration/resources/expected_spec.json" - config_path: "src/test-integration/resources/dummy_config.json" + tests: + - spec_path: "integration_tests/expected_spec.json" + config_path: "secrets/credentials.json" + timeout_seconds: 60 + connection: + tests: + - config_path: "secrets/credentials.json" + status: "succeed" + timeout_seconds: 60 + discovery: + tests: + - config_path: "secrets/credentials.json" + timeout_seconds: 60 + basic_read: + tests: + - config_path: "secrets/credentials.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + timeout_seconds: 120 + full_refresh: + tests: + - config_path: "secrets/credentials.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + timeout_seconds: 180 + diff --git a/airbyte-integrations/connectors/source-mongodb-v2/acceptance-test-docker.sh b/airbyte-integrations/connectors/source-mongodb-v2/acceptance-test-docker.sh old mode 100644 new mode 100755 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 new file mode 100644 index 000000000000..d8637ff7bdfa --- /dev/null +++ b/airbyte-integrations/connectors/source-mongodb-v2/integration_tests/configured_catalog.json @@ -0,0 +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" + } + } + }, + "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/resources/expected_spec.json b/airbyte-integrations/connectors/source-mongodb-v2/integration_tests/expected_spec.json similarity index 100% rename from airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/resources/expected_spec.json rename to airbyte-integrations/connectors/source-mongodb-v2/integration_tests/expected_spec.json 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 a938f64f1882..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,14 +10,14 @@ import io.airbyte.commons.resources.MoreResources; import io.airbyte.db.mongodb.MongoDatabase; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.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 03f5b6dd1cea..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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.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.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.CatalogHelpers; 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 23d3ba3964ad..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,16 +17,16 @@ import io.airbyte.db.jdbc.JdbcUtils; import io.airbyte.db.mongodb.MongoDatabase; import io.airbyte.integrations.source.mongodb.MongoDbSource; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.DestinationSyncMode; +import io.airbyte.protocol.models.v0.SyncMode; import java.time.LocalDate; import java.time.ZoneId; import java.util.Arrays; 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 9fa9cd30819c..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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.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.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.CatalogHelpers; import java.util.List; import org.bson.BsonArray; import org.bson.BsonString; diff --git a/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/resources/dummy_config.json b/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/resources/dummy_config.json deleted file mode 100644 index 0216ddfd3c03..000000000000 --- a/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/resources/dummy_config.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "database": "default" -} diff --git a/airbyte-integrations/connectors/source-mssql-strict-encrypt/Dockerfile b/airbyte-integrations/connectors/source-mssql-strict-encrypt/Dockerfile index 7f0a78bc324b..b5ecbf766a7e 100644 --- a/airbyte-integrations/connectors/source-mssql-strict-encrypt/Dockerfile +++ b/airbyte-integrations/connectors/source-mssql-strict-encrypt/Dockerfile @@ -16,5 +16,5 @@ ENV APPLICATION source-mssql-strict-encrypt COPY --from=build /airbyte /airbyte -LABEL io.airbyte.version=0.4.25 +LABEL io.airbyte.version=0.4.26 LABEL io.airbyte.name=airbyte/source-mssql-strict-encrypt diff --git a/airbyte-integrations/connectors/source-mssql-strict-encrypt/src/main/java/io.airbyte.integrations.source.mssql/MssqlSourceStrictEncrypt.java b/airbyte-integrations/connectors/source-mssql-strict-encrypt/src/main/java/io.airbyte.integrations.source.mssql/MssqlSourceStrictEncrypt.java index 29d17482226e..41738380a1c7 100644 --- a/airbyte-integrations/connectors/source-mssql-strict-encrypt/src/main/java/io.airbyte.integrations.source.mssql/MssqlSourceStrictEncrypt.java +++ b/airbyte-integrations/connectors/source-mssql-strict-encrypt/src/main/java/io.airbyte.integrations.source.mssql/MssqlSourceStrictEncrypt.java @@ -9,7 +9,7 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.Source; import io.airbyte.integrations.base.spec_modification.SpecModifyingSource; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.slf4j.Logger; import org.slf4j.LoggerFactory; 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 5f7ee31dab89..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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; 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 java.sql.SQLException; import java.util.HashMap; import org.apache.commons.lang3.RandomStringUtils; diff --git a/airbyte-integrations/connectors/source-mssql-strict-encrypt/src/test/java/io/airbyte/integrations/source/mssql/MssqlStrictEncryptJdbcSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-mssql-strict-encrypt/src/test/java/io/airbyte/integrations/source/mssql/MssqlStrictEncryptJdbcSourceAcceptanceTest.java index d741e616d607..7bbf01d09716 100644 --- a/airbyte-integrations/connectors/source-mssql-strict-encrypt/src/test/java/io/airbyte/integrations/source/mssql/MssqlStrictEncryptJdbcSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mssql-strict-encrypt/src/test/java/io/airbyte/integrations/source/mssql/MssqlStrictEncryptJdbcSourceAcceptanceTest.java @@ -20,7 +20,7 @@ import io.airbyte.integrations.base.ssh.SshHelpers; import io.airbyte.integrations.source.jdbc.AbstractJdbcSource; import io.airbyte.integrations.source.jdbc.test.JdbcSourceAcceptanceTest; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.sql.JDBCType; import java.util.function.Function; import javax.sql.DataSource; diff --git a/airbyte-integrations/connectors/source-mssql-strict-encrypt/src/test/resources/expected_spec.json b/airbyte-integrations/connectors/source-mssql-strict-encrypt/src/test/resources/expected_spec.json index c1bfccc2b4db..bbdae356015a 100644 --- a/airbyte-integrations/connectors/source-mssql-strict-encrypt/src/test/resources/expected_spec.json +++ b/airbyte-integrations/connectors/source-mssql-strict-encrypt/src/test/resources/expected_spec.json @@ -72,9 +72,7 @@ "properties": { "ssl_method": { "type": "string", - "const": "encrypted_trust_server_certificate", - "enum": ["encrypted_trust_server_certificate"], - "default": "encrypted_trust_server_certificate" + "const": "encrypted_trust_server_certificate" } } }, @@ -85,9 +83,7 @@ "properties": { "ssl_method": { "type": "string", - "const": "encrypted_verify_certificate", - "enum": ["encrypted_verify_certificate"], - "default": "encrypted_verify_certificate" + "const": "encrypted_verify_certificate" }, "hostNameInCertificate": { "title": "Host Name In Certificate", @@ -114,8 +110,6 @@ "method": { "type": "string", "const": "STANDARD", - "enum": ["STANDARD"], - "default": "STANDARD", "order": 0 } } @@ -128,8 +122,6 @@ "method": { "type": "string", "const": "CDC", - "enum": ["CDC"], - "default": "CDC", "order": 0 }, "data_to_sync": { @@ -147,15 +139,6 @@ "enum": ["Snapshot", "Read Committed"], "description": "Existing data in the database are synced through an initial snapshot. This parameter controls the isolation level that will be used during the initial snapshotting. If you choose the \"Snapshot\" level, you must enable the snapshot isolation mode on the database.", "order": 2 - }, - "initial_waiting_seconds": { - "type": "integer", - "title": "Initial Waiting Time in Seconds (Advanced)", - "description": "The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 1200 seconds. Read about initial waiting time.", - "default": 300, - "min": 120, - "max": 1200, - "order": 3 } } } diff --git a/airbyte-integrations/connectors/source-mssql/Dockerfile b/airbyte-integrations/connectors/source-mssql/Dockerfile index a079d48b35eb..853c017b29cb 100644 --- a/airbyte-integrations/connectors/source-mssql/Dockerfile +++ b/airbyte-integrations/connectors/source-mssql/Dockerfile @@ -16,5 +16,5 @@ ENV APPLICATION source-mssql COPY --from=build /airbyte /airbyte -LABEL io.airbyte.version=0.4.25 +LABEL io.airbyte.version=0.4.26 LABEL io.airbyte.name=airbyte/source-mssql diff --git a/airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlCdcHelper.java b/airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlCdcHelper.java index ce2732138ea6..bc75dfbca799 100644 --- a/airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlCdcHelper.java +++ b/airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlCdcHelper.java @@ -5,10 +5,10 @@ package io.airbyte.integrations.source.mssql; import com.fasterxml.jackson.databind.JsonNode; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.SyncMode; import io.debezium.annotation.VisibleForTesting; import java.util.Properties; import java.util.stream.Collectors; diff --git a/airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlCdcStateHandler.java b/airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlCdcStateHandler.java index e626f7bff2de..15ef22dbedd6 100644 --- a/airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlCdcStateHandler.java +++ b/airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlCdcStateHandler.java @@ -12,9 +12,9 @@ import io.airbyte.integrations.debezium.CdcStateHandler; import io.airbyte.integrations.source.relationaldb.models.CdcState; import io.airbyte.integrations.source.relationaldb.state.StateManager; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; import java.util.HashMap; import java.util.Map; import java.util.Optional; diff --git a/airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlCdcTargetPosition.java b/airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlCdcTargetPosition.java index 4657491283d1..514f878e1c3f 100644 --- a/airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlCdcTargetPosition.java +++ b/airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlCdcTargetPosition.java @@ -29,14 +29,20 @@ public MssqlCdcTargetPosition(final Lsn targetLsn) { @Override public boolean reachedTargetPosition(final JsonNode valueAsJson) { - final Lsn recordLsn = extractLsn(valueAsJson); + final SnapshotMetadata snapshotMetadata = SnapshotMetadata.valueOf(valueAsJson.get("source").get("snapshot").asText().toUpperCase()); - if (targetLsn.compareTo(recordLsn) > 0) { + if (SnapshotMetadata.TRUE == snapshotMetadata) { return false; + } else if (SnapshotMetadata.LAST == snapshotMetadata) { + LOGGER.info("Signalling close because Snapshot is complete"); + return true; } else { - final SnapshotMetadata snapshotMetadata = SnapshotMetadata.valueOf(valueAsJson.get("source").get("snapshot").asText().toUpperCase()); - // if not snapshot or is snapshot but last record in snapshot. - return SnapshotMetadata.TRUE != snapshotMetadata; + final Lsn recordLsn = extractLsn(valueAsJson); + boolean isEventLSNAfter = targetLsn.compareTo(recordLsn) <= 0; + if (isEventLSNAfter) { + LOGGER.info("Signalling close because record's LSN : " + recordLsn + " is after target LSN : " + targetLsn); + } + return isEventLSNAfter; } } 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 ee0e578b5d87..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,12 +34,12 @@ 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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStream; import io.airbyte.protocol.models.CommonField; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.SyncMode; +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.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.SyncMode; import java.io.File; import java.sql.Connection; import java.sql.JDBCType; 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 f892b5845cdb..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,14 +17,14 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.util.HashMap; import java.util.Objects; import org.apache.commons.lang3.RandomStringUtils; 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 839654e4c507..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,14 +14,14 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.util.List; import java.util.Map; import org.jooq.DSLContext; 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 351751aa4253..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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; 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 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/CdcMssqlSourceTest.java b/airbyte-integrations/connectors/source-mssql/src/test/java/io/airbyte/integrations/source/mssql/CdcMssqlSourceTest.java index dc516470c2dd..8dfdc4ef94e3 100644 --- a/airbyte-integrations/connectors/source-mssql/src/test/java/io/airbyte/integrations/source/mssql/CdcMssqlSourceTest.java +++ b/airbyte-integrations/connectors/source-mssql/src/test/java/io/airbyte/integrations/source/mssql/CdcMssqlSourceTest.java @@ -34,9 +34,9 @@ import io.airbyte.integrations.base.Source; import io.airbyte.integrations.debezium.CdcSourceTest; import io.airbyte.integrations.debezium.CdcTargetPosition; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStream; import io.debezium.connector.sqlserver.Lsn; import java.sql.SQLException; import java.util.List; diff --git a/airbyte-integrations/connectors/source-mssql/src/test/java/io/airbyte/integrations/source/mssql/MssqlJdbcSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-mssql/src/test/java/io/airbyte/integrations/source/mssql/MssqlJdbcSourceAcceptanceTest.java index f4f5cd2aeeef..364537668ccf 100644 --- a/airbyte-integrations/connectors/source-mssql/src/test/java/io/airbyte/integrations/source/mssql/MssqlJdbcSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mssql/src/test/java/io/airbyte/integrations/source/mssql/MssqlJdbcSourceAcceptanceTest.java @@ -19,7 +19,7 @@ import io.airbyte.db.jdbc.JdbcUtils; import io.airbyte.integrations.source.jdbc.AbstractJdbcSource; import io.airbyte.integrations.source.jdbc.test.JdbcSourceAcceptanceTest; -import io.airbyte.protocol.models.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import java.sql.JDBCType; import javax.sql.DataSource; import org.junit.jupiter.api.AfterAll; 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 47cc58d2f935..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,11 +16,11 @@ import io.airbyte.db.factory.DSLContextFactory; import io.airbyte.db.factory.DatabaseDriver; import io.airbyte.db.jdbc.JdbcUtils; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.CatalogHelpers; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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; import org.jooq.DSLContext; diff --git a/airbyte-integrations/connectors/source-mysql-strict-encrypt/Dockerfile b/airbyte-integrations/connectors/source-mysql-strict-encrypt/Dockerfile index c4ef1974c963..a0321888bad3 100644 --- a/airbyte-integrations/connectors/source-mysql-strict-encrypt/Dockerfile +++ b/airbyte-integrations/connectors/source-mysql-strict-encrypt/Dockerfile @@ -16,6 +16,6 @@ ENV APPLICATION source-mysql-strict-encrypt COPY --from=build /airbyte /airbyte -LABEL io.airbyte.version=1.0.15 +LABEL io.airbyte.version=1.0.18 LABEL io.airbyte.name=airbyte/source-mysql-strict-encrypt diff --git a/airbyte-integrations/connectors/source-mysql-strict-encrypt/src/main/java/io/airbyte/integrations/source/mysql_strict_encrypt/MySqlStrictEncryptSource.java b/airbyte-integrations/connectors/source-mysql-strict-encrypt/src/main/java/io/airbyte/integrations/source/mysql_strict_encrypt/MySqlStrictEncryptSource.java index 4038360f4eb8..31bf62120970 100644 --- a/airbyte-integrations/connectors/source-mysql-strict-encrypt/src/main/java/io/airbyte/integrations/source/mysql_strict_encrypt/MySqlStrictEncryptSource.java +++ b/airbyte-integrations/connectors/source-mysql-strict-encrypt/src/main/java/io/airbyte/integrations/source/mysql_strict_encrypt/MySqlStrictEncryptSource.java @@ -12,9 +12,9 @@ import io.airbyte.integrations.base.Source; import io.airbyte.integrations.base.spec_modification.SpecModifyingSource; import io.airbyte.integrations.source.mysql.MySqlSource; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.util.Set; import org.slf4j.Logger; import org.slf4j.LoggerFactory; 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 568afc8af48b..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,14 +18,14 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.util.HashMap; import org.jooq.DSLContext; import org.jooq.SQLDialect; 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 5ca04a2a40b2..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,16 +28,16 @@ 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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConnectorSpecification; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.ConnectorSpecification; +import io.airbyte.protocol.models.v0.SyncMode; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; diff --git a/airbyte-integrations/connectors/source-mysql-strict-encrypt/src/test/resources/expected_spec.json b/airbyte-integrations/connectors/source-mysql-strict-encrypt/src/test/resources/expected_spec.json index c2287b411315..045d36facafb 100644 --- a/airbyte-integrations/connectors/source-mysql-strict-encrypt/src/test/resources/expected_spec.json +++ b/airbyte-integrations/connectors/source-mysql-strict-encrypt/src/test/resources/expected_spec.json @@ -49,13 +49,13 @@ }, "ssl_mode": { "title": "SSL modes", - "description": "SSL connection modes.
  • preferred - Automatically attempt SSL connection. If the MySQL server does not support SSL, continue with a regular connection.
  • required - Always connect with SSL. If the MySQL server doesn’t support SSL, the connection will not be established. Certificate Authority (CA) and Hostname are not verified.
  • verify-ca - Always connect with SSL. Verifies CA, but allows connection even if Hostname does not match.
  • Verify Identity - Always connect with SSL. Verify both CA and Hostname.
  • Read more in the docs.", + "description": "SSL connection modes. Read more in the docs.", "type": "object", "order": 7, "oneOf": [ { "title": "preferred", - "description": "Preferred SSL mode.", + "description": "Automatically attempt SSL connection. If the MySQL server does not support SSL, continue with a regular connection.", "required": ["mode"], "properties": { "mode": { @@ -67,7 +67,7 @@ }, { "title": "required", - "description": "Require SSL mode.", + "description": "Always connect with SSL. If the MySQL server doesn’t support SSL, the connection will not be established. Certificate Authority (CA) and Hostname are not verified.", "required": ["mode"], "properties": { "mode": { @@ -79,7 +79,7 @@ }, { "title": "Verify CA", - "description": "Verify CA SSL mode.", + "description": "Always connect with SSL. Verifies CA, but allows connection even if Hostname does not match.", "required": ["mode", "ca_certificate"], "properties": { "mode": { @@ -122,7 +122,7 @@ }, { "title": "Verify Identity", - "description": "Verify-full SSL mode.", + "description": "Always connect with SSL. Verify both CA and Hostname.", "required": ["mode", "ca_certificate"], "properties": { "mode": { diff --git a/airbyte-integrations/connectors/source-mysql/Dockerfile b/airbyte-integrations/connectors/source-mysql/Dockerfile index cd6eada119a6..00e243fb16ef 100644 --- a/airbyte-integrations/connectors/source-mysql/Dockerfile +++ b/airbyte-integrations/connectors/source-mysql/Dockerfile @@ -16,6 +16,6 @@ ENV APPLICATION source-mysql COPY --from=build /airbyte /airbyte -LABEL io.airbyte.version=1.0.15 +LABEL io.airbyte.version=1.0.18 LABEL io.airbyte.name=airbyte/source-mysql diff --git a/airbyte-integrations/connectors/source-mysql/src/main/java/io/airbyte/integrations/source/mysql/MySqlCdcStateHandler.java b/airbyte-integrations/connectors/source-mysql/src/main/java/io/airbyte/integrations/source/mysql/MySqlCdcStateHandler.java index befefde6b7e4..445fd9bf3215 100644 --- a/airbyte-integrations/connectors/source-mysql/src/main/java/io/airbyte/integrations/source/mysql/MySqlCdcStateHandler.java +++ b/airbyte-integrations/connectors/source-mysql/src/main/java/io/airbyte/integrations/source/mysql/MySqlCdcStateHandler.java @@ -12,9 +12,9 @@ import io.airbyte.integrations.debezium.CdcStateHandler; import io.airbyte.integrations.source.relationaldb.models.CdcState; import io.airbyte.integrations.source.relationaldb.state.StateManager; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; import java.util.HashMap; import java.util.Map; import java.util.Optional; diff --git a/airbyte-integrations/connectors/source-mysql/src/main/java/io/airbyte/integrations/source/mysql/MySqlCdcTargetPosition.java b/airbyte-integrations/connectors/source-mysql/src/main/java/io/airbyte/integrations/source/mysql/MySqlCdcTargetPosition.java index 3bfea4985dbe..1a30c832fef1 100644 --- a/airbyte-integrations/connectors/source-mysql/src/main/java/io/airbyte/integrations/source/mysql/MySqlCdcTargetPosition.java +++ b/airbyte-integrations/connectors/source-mysql/src/main/java/io/airbyte/integrations/source/mysql/MySqlCdcTargetPosition.java @@ -68,20 +68,25 @@ public static MySqlCdcTargetPosition targetPosition(final JdbcDatabase database) @Override public boolean reachedTargetPosition(final JsonNode valueAsJson) { final String eventFileName = valueAsJson.get("source").get("file").asText(); - final int eventPosition = valueAsJson.get("source").get("pos").asInt(); + final SnapshotMetadata snapshotMetadata = SnapshotMetadata.valueOf(valueAsJson.get("source").get("snapshot").asText().toUpperCase()); - final boolean isSnapshot = SnapshotMetadata.TRUE == SnapshotMetadata.valueOf( - valueAsJson.get("source").get("snapshot").asText().toUpperCase()); - - if (isSnapshot || fileName.compareTo(eventFileName) > 0 - || (fileName.compareTo(eventFileName) == 0 && position >= eventPosition)) { + if (SnapshotMetadata.TRUE == snapshotMetadata) { return false; + } else if (SnapshotMetadata.LAST == snapshotMetadata) { + LOGGER.info("Signalling close because Snapshot is complete"); + return true; + } else { + final int eventPosition = valueAsJson.get("source").get("pos").asInt(); + final boolean isEventPositionAfter = + eventFileName.compareTo(fileName) > 0 || (eventFileName.compareTo(fileName) == 0 && eventPosition >= position); + if (isEventPositionAfter) { + LOGGER.info("Signalling close because record's binlog file : " + eventFileName + " , position : " + eventPosition + + " is after target file : " + + fileName + " , target position : " + position); + } + return isEventPositionAfter; } - LOGGER.info("Signalling close because record's binlog file : " + eventFileName + " , position : " + eventPosition - + " is after target file : " - + fileName + " , target position : " + position); - return true; } } 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 74ed8be555f3..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,17 +35,17 @@ 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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteGlobalState; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamState; import io.airbyte.protocol.models.CommonField; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteGlobalState; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +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.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.SyncMode; import java.time.Duration; import java.time.Instant; import java.util.ArrayList; diff --git a/airbyte-integrations/connectors/source-mysql/src/main/resources/spec.json b/airbyte-integrations/connectors/source-mysql/src/main/resources/spec.json index 40373023020a..a68ac01958a2 100644 --- a/airbyte-integrations/connectors/source-mysql/src/main/resources/spec.json +++ b/airbyte-integrations/connectors/source-mysql/src/main/resources/spec.json @@ -56,13 +56,13 @@ }, "ssl_mode": { "title": "SSL modes", - "description": "SSL connection modes.
  • preferred - Automatically attempt SSL connection. If the MySQL server does not support SSL, continue with a regular connection.
  • required - Always connect with SSL. If the MySQL server doesn’t support SSL, the connection will not be established. Certificate Authority (CA) and Hostname are not verified.
  • verify-ca - Always connect with SSL. Verifies CA, but allows connection even if Hostname does not match.
  • Verify Identity - Always connect with SSL. Verify both CA and Hostname.
  • Read more in the docs.", + "description": "SSL connection modes. Read more in the docs.", "type": "object", "order": 7, "oneOf": [ { "title": "preferred", - "description": "Preferred SSL mode.", + "description": "Automatically attempt SSL connection. If the MySQL server does not support SSL, continue with a regular connection.", "required": ["mode"], "properties": { "mode": { @@ -74,7 +74,7 @@ }, { "title": "required", - "description": "Require SSL mode.", + "description": "Always connect with SSL. If the MySQL server doesn’t support SSL, the connection will not be established. Certificate Authority (CA) and Hostname are not verified.", "required": ["mode"], "properties": { "mode": { @@ -86,7 +86,7 @@ }, { "title": "Verify CA", - "description": "Verify CA SSL mode.", + "description": "Always connect with SSL. Verifies CA, but allows connection even if Hostname does not match.", "required": ["mode", "ca_certificate"], "properties": { "mode": { @@ -129,7 +129,7 @@ }, { "title": "Verify Identity", - "description": "Verify-full SSL mode.", + "description": "Always connect with SSL. Verify both CA and Hostname.", "required": ["mode", "ca_certificate"], "properties": { "mode": { 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 87ffa50164a0..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,14 +12,14 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.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 3b5a43206a2f..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.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; 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 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 a270125900ae..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 @@ -5,7 +5,7 @@ package io.airbyte.integrations.io.airbyte.integration_tests.sources; import static io.airbyte.integrations.io.airbyte.integration_tests.sources.utils.TestConstants.INITIAL_CDC_WAITING_SECONDS; -import static io.airbyte.protocol.models.SyncMode.INCREMENTAL; +import static io.airbyte.protocol.models.v0.SyncMode.INCREMENTAL; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; @@ -23,17 +23,17 @@ 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.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.ConnectorSpecification; +import io.airbyte.protocol.models.v0.DestinationSyncMode; +import io.airbyte.protocol.models.v0.SyncMode; import java.util.List; import java.util.stream.Collectors; import org.jooq.DSLContext; @@ -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 af43c65d956d..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 @@ -5,7 +5,7 @@ package io.airbyte.integrations.io.airbyte.integration_tests.sources; import static io.airbyte.integrations.io.airbyte.integration_tests.sources.utils.TestConstants.INITIAL_CDC_WAITING_SECONDS; -import static io.airbyte.protocol.models.SyncMode.INCREMENTAL; +import static io.airbyte.protocol.models.v0.SyncMode.INCREMENTAL; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; @@ -22,17 +22,17 @@ 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.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.ConnectorSpecification; +import io.airbyte.protocol.models.v0.DestinationSyncMode; +import io.airbyte.protocol.models.v0.SyncMode; import java.util.List; import java.util.stream.Collectors; import org.jooq.DSLContext; 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 7c984d81ab1d..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 @@ -5,7 +5,7 @@ package io.airbyte.integrations.io.airbyte.integration_tests.sources; import static io.airbyte.integrations.io.airbyte.integration_tests.sources.utils.TestConstants.INITIAL_CDC_WAITING_SECONDS; -import static io.airbyte.protocol.models.SyncMode.INCREMENTAL; +import static io.airbyte.protocol.models.v0.SyncMode.INCREMENTAL; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; @@ -21,17 +21,17 @@ 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.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.ConnectorSpecification; +import io.airbyte.protocol.models.v0.DestinationSyncMode; +import io.airbyte.protocol.models.v0.SyncMode; import java.util.List; import java.util.stream.Collectors; import org.jooq.DSLContext; 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 d8bdc1476535..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,14 +16,14 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.util.HashMap; import org.jooq.DSLContext; import org.jooq.SQLDialect; diff --git a/airbyte-integrations/connectors/source-mysql/src/test-integration/resources/expected_spec.json b/airbyte-integrations/connectors/source-mysql/src/test-integration/resources/expected_spec.json index a1ab35b8c56c..7e0d15aeaa46 100644 --- a/airbyte-integrations/connectors/source-mysql/src/test-integration/resources/expected_spec.json +++ b/airbyte-integrations/connectors/source-mysql/src/test-integration/resources/expected_spec.json @@ -56,13 +56,13 @@ }, "ssl_mode": { "title": "SSL modes", - "description": "SSL connection modes.
  • preferred - Automatically attempt SSL connection. If the MySQL server does not support SSL, continue with a regular connection.
  • required - Always connect with SSL. If the MySQL server doesn’t support SSL, the connection will not be established. Certificate Authority (CA) and Hostname are not verified.
  • verify-ca - Always connect with SSL. Verifies CA, but allows connection even if Hostname does not match.
  • Verify Identity - Always connect with SSL. Verify both CA and Hostname.
  • Read more in the docs.", + "description": "SSL connection modes. Read more in the docs.", "type": "object", "order": 7, "oneOf": [ { "title": "preferred", - "description": "Preferred SSL mode.", + "description": "Automatically attempt SSL connection. If the MySQL server does not support SSL, continue with a regular connection.", "required": ["mode"], "properties": { "mode": { @@ -74,7 +74,7 @@ }, { "title": "required", - "description": "Require SSL mode.", + "description": "Always connect with SSL. If the MySQL server doesn’t support SSL, the connection will not be established. Certificate Authority (CA) and Hostname are not verified.", "required": ["mode"], "properties": { "mode": { @@ -86,7 +86,7 @@ }, { "title": "Verify CA", - "description": "Verify CA SSL mode.", + "description": "Always connect with SSL. Verifies CA, but allows connection even if Hostname does not match.", "required": ["mode", "ca_certificate"], "properties": { "mode": { @@ -129,7 +129,7 @@ }, { "title": "Verify Identity", - "description": "Verify-full SSL mode.", + "description": "Always connect with SSL. Verify both CA and Hostname.", "required": ["mode", "ca_certificate"], "properties": { "mode": { diff --git a/airbyte-integrations/connectors/source-mysql/src/test/java/io/airbyte/integrations/source/mysql/CdcMysqlSourceTest.java b/airbyte-integrations/connectors/source-mysql/src/test/java/io/airbyte/integrations/source/mysql/CdcMysqlSourceTest.java index 9ec0e5b076cd..c6ba1ba75609 100644 --- a/airbyte-integrations/connectors/source-mysql/src/test/java/io/airbyte/integrations/source/mysql/CdcMysqlSourceTest.java +++ b/airbyte-integrations/connectors/source-mysql/src/test/java/io/airbyte/integrations/source/mysql/CdcMysqlSourceTest.java @@ -32,12 +32,12 @@ import io.airbyte.integrations.base.Source; import io.airbyte.integrations.debezium.CdcSourceTest; import io.airbyte.integrations.debezium.CdcTargetPosition; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStream; +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.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStream; import java.sql.SQLException; import java.util.Collections; import java.util.List; 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 b3a304716a17..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,16 +22,16 @@ 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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConnectorSpecification; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.AirbyteMessage.Type; +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.v0.SyncMode; import java.sql.Connection; import java.sql.DriverManager; import java.util.ArrayList; diff --git a/airbyte-integrations/connectors/source-mysql/src/test/java/io/airbyte/integrations/source/mysql/MySqlSourceTests.java b/airbyte-integrations/connectors/source-mysql/src/test/java/io/airbyte/integrations/source/mysql/MySqlSourceTests.java index 758955002957..f68f874648dc 100644 --- a/airbyte-integrations/connectors/source-mysql/src/test/java/io/airbyte/integrations/source/mysql/MySqlSourceTests.java +++ b/airbyte-integrations/connectors/source-mysql/src/test/java/io/airbyte/integrations/source/mysql/MySqlSourceTests.java @@ -13,7 +13,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.string.Strings; import io.airbyte.db.jdbc.JdbcUtils; -import io.airbyte.protocol.models.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import java.sql.Connection; import java.sql.DriverManager; import java.util.Properties; diff --git a/airbyte-integrations/connectors/source-oracle-strict-encrypt/src/main/java/io/airbyte/integrations/source/oracle_strict_encrypt/OracleStrictEncryptSource.java b/airbyte-integrations/connectors/source-oracle-strict-encrypt/src/main/java/io/airbyte/integrations/source/oracle_strict_encrypt/OracleStrictEncryptSource.java index 6164967cdb7c..3656d51b3117 100644 --- a/airbyte-integrations/connectors/source-oracle-strict-encrypt/src/main/java/io/airbyte/integrations/source/oracle_strict_encrypt/OracleStrictEncryptSource.java +++ b/airbyte-integrations/connectors/source-oracle-strict-encrypt/src/main/java/io/airbyte/integrations/source/oracle_strict_encrypt/OracleStrictEncryptSource.java @@ -10,7 +10,7 @@ import io.airbyte.integrations.base.Source; import io.airbyte.integrations.base.spec_modification.SpecModifyingSource; import io.airbyte.integrations.source.oracle.OracleSource; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import org.slf4j.Logger; import org.slf4j.LoggerFactory; 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 d7f713671d6c..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,17 +23,17 @@ 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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteCatalog; +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.ConnectorSpecification; +import io.airbyte.protocol.models.v0.DestinationSyncMode; +import io.airbyte.protocol.models.v0.SyncMode; import java.math.BigDecimal; 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/OracleStrictEncryptSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-oracle-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/oracle_strict_encrypt/OracleStrictEncryptSourceAcceptanceTest.java index 8e36d522ad33..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,13 +17,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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.SyncMode; import java.util.HashMap; import java.util.List; import javax.sql.DataSource; 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 16eda8bdc340..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,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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.SyncMode; import java.util.HashMap; import java.util.List; import java.util.Objects; 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 89ce3406fd75..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,20 +22,20 @@ 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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage.AirbyteStateType; +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.v0.DestinationSyncMode; +import io.airbyte.protocol.models.v0.SyncMode; import java.math.BigDecimal; import java.sql.Connection; import java.sql.DriverManager; 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 498e5c329a37..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,13 +15,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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.SyncMode; import java.util.HashMap; import java.util.List; import javax.sql.DataSource; diff --git a/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/OracleSourceDatatypeTest.java b/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/OracleSourceDatatypeTest.java index 7d8541597a85..c80b0998f91d 100644 --- a/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/OracleSourceDatatypeTest.java +++ b/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/OracleSourceDatatypeTest.java @@ -146,7 +146,10 @@ protected void initTests() { .sourceType("NUMBER") .airbyteType(JsonSchemaType.NUMBER) .addInsertValues("null", "1", "123.45", "power(10, -130)", "9.99999999999999999999 * power(10, 125)") - .addExpectedValues(null, "1", "123.45", String.valueOf(Math.pow(10, -130)), String.valueOf(9.99999999999999999999 * Math.pow(10, 125))) + /* The 999990000… below is the plain string representation of 9.999 * power(10, 125) */ + /* because normalization expects a plain integer strings whereas `Math.pow(10, 125)` returns a scientific notation */ + .addExpectedValues(null, "1", "123.45", String.valueOf(Math.pow(10, -130)), + "999999999999999999999000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000") .build()); addDataTypeTestData( @@ -155,7 +158,7 @@ protected void initTests() { .airbyteType(JsonSchemaType.NUMBER) .fullSourceDataType("NUMBER(6,-2)") .addInsertValues("123.89") - .addExpectedValues("100.0") + .addExpectedValues("100") .build()); addDataTypeTestData( @@ -164,7 +167,7 @@ protected void initTests() { .airbyteType(JsonSchemaType.NUMBER) .fullSourceDataType("FLOAT(5)") .addInsertValues("1.34", "126.45") - .addExpectedValues("1.3", "130.0") + .addExpectedValues("1.3", "130") .build()); addDataTypeTestData( 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 35679e3e1905..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,15 +16,15 @@ import io.airbyte.db.factory.DatabaseDriver; import io.airbyte.db.jdbc.DefaultJdbcDatabase; import io.airbyte.db.jdbc.JdbcDatabase; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.math.BigDecimal; import java.nio.charset.StandardCharsets; import java.util.HashMap; diff --git a/airbyte-integrations/connectors/source-oracle/src/test/java/io/airbyte/integrations/source/oracle/OracleSpecTest.java b/airbyte-integrations/connectors/source-oracle/src/test/java/io/airbyte/integrations/source/oracle/OracleSpecTest.java index 33888094c0bb..28a64c00a27c 100644 --- a/airbyte-integrations/connectors/source-oracle/src/test/java/io/airbyte/integrations/source/oracle/OracleSpecTest.java +++ b/airbyte-integrations/connectors/source-oracle/src/test/java/io/airbyte/integrations/source/oracle/OracleSpecTest.java @@ -13,7 +13,7 @@ import io.airbyte.commons.io.IOs; import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.validation.json.JsonSchemaValidator; import java.io.File; import java.io.IOException; diff --git a/airbyte-integrations/connectors/source-pardot/Dockerfile b/airbyte-integrations/connectors/source-pardot/Dockerfile index f3d48734a32f..0ee99bc33f02 100644 --- a/airbyte-integrations/connectors/source-pardot/Dockerfile +++ b/airbyte-integrations/connectors/source-pardot/Dockerfile @@ -34,5 +34,5 @@ COPY source_pardot ./source_pardot ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.0 +LABEL io.airbyte.version=0.1.1 LABEL io.airbyte.name=airbyte/source-pardot diff --git a/airbyte-integrations/connectors/source-pardot/pardot.md b/airbyte-integrations/connectors/source-pardot/pardot.md index 72ae9ff15455..e877c48a103a 100644 --- a/airbyte-integrations/connectors/source-pardot/pardot.md +++ b/airbyte-integrations/connectors/source-pardot/pardot.md @@ -8,27 +8,27 @@ The Pardot supports full refresh syncs Several output streams are available from this source: -* [Campaigns](https://developer.salesforce.com/docs/marketing/pardot/guide/campaigns-v4.html) -* [EmailClicks](https://developer.salesforce.com/docs/marketing/pardot/guide/batch-email-clicks-v4.html) -* [ListMembership](https://developer.salesforce.com/docs/marketing/pardot/guide/list-memberships-v4.html) -* [Lists](https://developer.salesforce.com/docs/marketing/pardot/guide/lists-v4.html) -* [ProspectAccounts](https://developer.salesforce.com/docs/marketing/pardot/guide/prospect-accounts-v4.html) -* [Prospects](https://developer.salesforce.com/docs/marketing/pardot/guide/prospects-v4.html) -* [Users](https://developer.salesforce.com/docs/marketing/pardot/guide/users-v4.html) -* [VisitorActivities](https://developer.salesforce.com/docs/marketing/pardot/guide/visitor-activities-v4.html) -* [Visitors](https://developer.salesforce.com/docs/marketing/pardot/guide/visitors-v4.html) -* [Visits](https://developer.salesforce.com/docs/marketing/pardot/guide/visits-v4.html) +- [Campaigns](https://developer.salesforce.com/docs/marketing/pardot/guide/campaigns-v4.html) +- [EmailClicks](https://developer.salesforce.com/docs/marketing/pardot/guide/batch-email-clicks-v4.html) +- [ListMembership](https://developer.salesforce.com/docs/marketing/pardot/guide/list-memberships-v4.html) +- [Lists](https://developer.salesforce.com/docs/marketing/pardot/guide/lists-v4.html) +- [ProspectAccounts](https://developer.salesforce.com/docs/marketing/pardot/guide/prospect-accounts-v4.html) +- [Prospects](https://developer.salesforce.com/docs/marketing/pardot/guide/prospects-v4.html) +- [Users](https://developer.salesforce.com/docs/marketing/pardot/guide/users-v4.html) +- [VisitorActivities](https://developer.salesforce.com/docs/marketing/pardot/guide/visitor-activities-v4.html) +- [Visitors](https://developer.salesforce.com/docs/marketing/pardot/guide/visitors-v4.html) +- [Visits](https://developer.salesforce.com/docs/marketing/pardot/guide/visits-v4.html) If there are more endpoints you'd like Airbyte to support, please [create an issue.](https://github.com/airbytehq/airbyte/issues/new/choose) ### Features -| Feature | Supported? | -| :--- | :--- | -| Full Refresh Sync | Yes | -| Incremental Sync | No | -| SSL connection | No | -| Namespaces | No | +| Feature | Supported? | +| :---------------- | :--------- | +| Full Refresh Sync | Yes | +| Incremental Sync | No | +| SSL connection | No | +| Namespaces | No | ### Performance considerations @@ -38,26 +38,19 @@ The Pardot connector should not run into Pardot API limitations under normal usa ### Requirements -* Pardot Account -* Pardot Business Unit ID -* Client ID -* Client Secret -* Refresh Token -* Start Date -* Is Sandbox environment? +- Pardot Account +- Pardot Business Unit ID +- Client ID +- Client Secret +- Refresh Token +- Start Date +- Is Sandbox environment? ### Setup guide -* `pardot_business_unit_id`: Pardot Business ID, can be found at Setup > Pardot > Pardot Account Setup -* `client_id`: The Consumer Key that can be found when viewing your app in Salesforce -* `client_secret`: The Consumer Secret that can be found when viewing your app in Salesforce -* `refresh_token`: Salesforce Refresh Token used for Airbyte to access your Salesforce account. If you don't know what this is, follow [this guide](https://medium.com/@bpmmendis94/obtain-access-refresh-tokens-from-salesforce-rest-api-a324fe4ccd9b) to retrieve it. -* `start_date`: UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. Leave blank to skip this filter -* `is_sandbox`: Whether or not the the app is in a Salesforce sandbox. If you do not know what this, assume it is false. - -## Changelog - -| Version | Date | Pull Request | Subject | -| :--- | :--- | :--- | :--- | -| 0.1.0 | 2021-10-16 | [7091](https://github.com/airbytehq/airbyte/pull/7091) | 🎉 New Source: Pardot | - +- `pardot_business_unit_id`: Pardot Business ID, can be found at Setup > Pardot > Pardot Account Setup +- `client_id`: The Consumer Key that can be found when viewing your app in Salesforce +- `client_secret`: The Consumer Secret that can be found when viewing your app in Salesforce +- `refresh_token`: Salesforce Refresh Token used for Airbyte to access your Salesforce account. If you don't know what this is, follow [this guide](https://medium.com/@bpmmendis94/obtain-access-refresh-tokens-from-salesforce-rest-api-a324fe4ccd9b) to retrieve it. +- `start_date`: UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. Leave blank to skip this filter +- `is_sandbox`: Whether or not the the app is in a Salesforce sandbox. If you do not know what this, assume it is false. diff --git a/airbyte-integrations/connectors/source-pardot/source_pardot/source.py b/airbyte-integrations/connectors/source-pardot/source_pardot/source.py index afaa30be3e97..1dec8d9c0bc7 100644 --- a/airbyte-integrations/connectors/source-pardot/source_pardot/source.py +++ b/airbyte-integrations/connectors/source-pardot/source_pardot/source.py @@ -34,8 +34,6 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: auth = TokenAuthenticator(pardot.access_token) args = {"authenticator": auth, "config": config} - visitors = Visitors(**args) - return [ EmailClicks(**args), Campaigns(**args), @@ -45,6 +43,6 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: Prospects(**args), Users(**args), VisitorActivities(**args), - visitors, - Visits(parent_stream=visitors, **args), + Visitors(**args), + Visits(parent_stream=Visitors(**args), **args), ] diff --git a/airbyte-integrations/connectors/source-pardot/source_pardot/spec.json b/airbyte-integrations/connectors/source-pardot/source_pardot/spec.json index da48d19ec2f7..273e439d409a 100644 --- a/airbyte-integrations/connectors/source-pardot/source_pardot/spec.json +++ b/airbyte-integrations/connectors/source-pardot/source_pardot/spec.json @@ -1,5 +1,5 @@ { - "documentationUrl": "https://docsurl.com", + "documentationUrl": "https://docs.airbyte.com/integrations/sources/pardot", "connectionSpecification": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Pardot Spec", diff --git a/airbyte-integrations/connectors/source-pardot/source_pardot/stream.py b/airbyte-integrations/connectors/source-pardot/source_pardot/stream.py index 3d59ee30358f..0baaaf17cee6 100644 --- a/airbyte-integrations/connectors/source-pardot/source_pardot/stream.py +++ b/airbyte-integrations/connectors/source-pardot/source_pardot/stream.py @@ -159,7 +159,7 @@ class Visitors(PardotUpdatedAtReplicationStream): def stream_slices( self, sync_mode: SyncMode, cursor_field: List[str] = None, stream_state: Mapping[str, Any] = None ) -> Iterable[Optional[Mapping[str, Any]]]: - slices = super().stream_slices(sync_mode, cursor_field=cursor_field, stream_state=stream_state) + slices = super().stream_slices(sync_mode=sync_mode, cursor_field=cursor_field, stream_state=stream_state) return slices diff --git a/airbyte-integrations/connectors/source-pardot/unit_tests/test_source.py b/airbyte-integrations/connectors/source-pardot/unit_tests/test_source.py deleted file mode 100644 index 9e7c7931a02f..000000000000 --- a/airbyte-integrations/connectors/source-pardot/unit_tests/test_source.py +++ /dev/null @@ -1,13 +0,0 @@ -# -# Copyright (c) 2022 Airbyte, Inc., all rights reserved. -# - -from unittest.mock import MagicMock - -from source_pardot.source import SourcePardot - - -def test_check_connection(mocker, config): - source = SourcePardot() - logger_mock = MagicMock() - assert source.check_connection(logger_mock, config) == (True, None) 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-pinterest/Dockerfile b/airbyte-integrations/connectors/source-pinterest/Dockerfile index adc1f9a7b8a5..1f4efba5560f 100644 --- a/airbyte-integrations/connectors/source-pinterest/Dockerfile +++ b/airbyte-integrations/connectors/source-pinterest/Dockerfile @@ -34,5 +34,5 @@ COPY source_pinterest ./source_pinterest ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.9 +LABEL io.airbyte.version=0.2.1 LABEL io.airbyte.name=airbyte/source-pinterest diff --git a/airbyte-integrations/connectors/source-pinterest/acceptance-test-config.yml b/airbyte-integrations/connectors/source-pinterest/acceptance-test-config.yml index 6cce06b96ad6..0e7fe4962cb6 100644 --- a/airbyte-integrations/connectors/source-pinterest/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-pinterest/acceptance-test-config.yml @@ -1,56 +1,72 @@ # 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-pinterest:dev -tests: +acceptance_tests: spec: + tests: # TODO: remove backward compatibility checks once updated to version `>0.1.3` # because for OAuth2.0 implementation the specs are different - - spec_path: "source_pinterest/spec.json" - backward_compatibility_tests_config: - disable_for_version: "0.1.2" + - spec_path: "source_pinterest/spec.json" + backward_compatibility_tests_config: + disable_for_version: "0.1.2" connection: - - config_path: "secrets/config.json" - status: "succeed" - - config_path: "integration_tests/invalid_config.json" - status: "failed" - - config_path: "secrets/config_oauth.json" - status: "succeed" + tests: + - config_path: "secrets/config.json" + status: "succeed" + - config_path: "integration_tests/invalid_config.json" + status: "failed" + - config_path: "secrets/config_oauth.json" + status: "succeed" discovery: + tests: # TODO: remove backward compatibility checks once updated to version `>0.1.3` - - config_path: "secrets/config.json" - backward_compatibility_tests_config: - disable_for_version: "0.1.2" - - config_path: "secrets/config_oauth.json" - backward_compatibility_tests_config: - disable_for_version: "0.1.2" + - config_path: "secrets/config.json" + backward_compatibility_tests_config: + disable_for_version: "0.1.2" + - config_path: "secrets/config_oauth.json" + backward_compatibility_tests_config: + disable_for_version: "0.1.2" basic_read: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - # empty streams could be produced because of very low rate limits - empty_streams: [ - "ad_account_analytics", - "ad_accounts", - "ad_analytics", - "ad_group_analytics", - "ad_groups", - "ads", - "board_pins", - "board_section_pins", - "board_sections", - "boards", - "campaign_analytics", - "campaigns", - "user_account_analytics", - ] - - # INFO: `incremental` and `full_refresh` tests are commented out because of very small Rate Limits for Pinterest API - # They simply not going to pass with Trial Account, having 300 api calls in total. - # The basic_read test is totaly enough to verify key things of this connector. - # Once upgraded to Standard Plan - they could be uncomment back. + tests: + - config_path: "secrets/config.json" + # empty streams could be produced because of very low rate limits + configured_catalog_path: "integration_tests/configured_catalog.json" + empty_streams: + - name: ad_account_analytics + bypass_reason: "The stream could return 0 records, because of low rate-limits" + - name: ad_accounts + bypass_reason: "The stream could return 0 records, because of low rate-limits" + - name: ad_analytics + bypass_reason: "The stream could return 0 records, because of low rate-limits" + - name: ad_group_analytics + bypass_reason: "The stream could return 0 records, because of low rate-limits" + - name: ad_groups + bypass_reason: "The stream could return 0 records, because of low rate-limits" + - name: ads + bypass_reason: "The stream could return 0 records, because of low rate-limits" + - name: board_pins + bypass_reason: "The stream could return 0 records, because of low rate-limits" + - name: board_section_pins + bypass_reason: "The stream could return 0 records, because of low rate-limits" + - name: board_sections + bypass_reason: "The stream could return 0 records, because of low rate-limits" + - name: boards + bypass_reason: "The stream could return 0 records, because of low rate-limits" + - name: campaign_analytics + bypass_reason: "The stream could return 0 records, because of low rate-limits" + - name: campaigns + bypass_reason: "The stream could return 0 records, because of low rate-limits" + - name: user_account_analytics + bypass_reason: "The stream could return 0 records, because of low rate-limits" - # incremental: - # - config_path: "secrets/config.json" - # configured_catalog_path: "integration_tests/configured_catalog.json" - # full_refresh: - # - config_path: "secrets/config.json" - # configured_catalog_path: "integration_tests/configured_catalog.json" + # INFO: `incremental` and `full_refresh` tests are commented out because of very small Rate Limits for Pinterest API + # They simply not going to pass with Trial Account, having 300 api calls in total. + # The basic_read test is totaly enough to verify key things of this connector. + # Once upgraded to Standard Plan - they could be uncomment back. + + # incremental: + # - config_path: "secrets/config.json" + # configured_catalog_path: "integration_tests/configured_catalog.json" + # full_refresh: + # - config_path: "secrets/config.json" + # configured_catalog_path: "integration_tests/configured_catalog.json" diff --git a/airbyte-integrations/connectors/source-pinterest/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-pinterest/integration_tests/configured_catalog.json index 7735c281e2a6..39da41eca065 100644 --- a/airbyte-integrations/connectors/source-pinterest/integration_tests/configured_catalog.json +++ b/airbyte-integrations/connectors/source-pinterest/integration_tests/configured_catalog.json @@ -2,74 +2,84 @@ "streams": [ { "stream": { - "name": "boards", + "name": "ad_account_analytics", "json_schema": {}, - "supported_sync_modes": ["full_refresh"] + "supported_sync_modes": ["incremental"], + "source_defined_cursor": true, + "default_cursor_field": [] }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "sync_mode": "incremental", + "destination_sync_mode": "append" }, { "stream": { "name": "ad_accounts", "json_schema": {}, - "supported_sync_modes": ["full_refresh"] + "supported_sync_modes": ["full_refresh"], + "source_defined_cursor": true, + "default_cursor_field": [] }, "sync_mode": "full_refresh", "destination_sync_mode": "overwrite" }, { "stream": { - "name": "board_sections", + "name": "ad_analytics", "json_schema": {}, - "supported_sync_modes": ["full_refresh"] + "supported_sync_modes": ["incremental"], + "source_defined_cursor": true, + "default_cursor_field": [] }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "sync_mode": "incremental", + "destination_sync_mode": "append" }, { "stream": { - "name": "board_pins", + "name": "boards", "json_schema": {}, - "supported_sync_modes": ["full_refresh"] + "supported_sync_modes": ["full_refresh"], + "source_defined_cursor": true, + "default_cursor_field": [] }, "sync_mode": "full_refresh", "destination_sync_mode": "overwrite" }, { "stream": { - "name": "board_section_pins", + "name": "board_sections", "json_schema": {}, - "supported_sync_modes": ["full_refresh"] + "supported_sync_modes": ["full_refresh"], + "source_defined_cursor": true, + "default_cursor_field": [] }, "sync_mode": "full_refresh", "destination_sync_mode": "overwrite" }, { "stream": { - "name": "user_account_analytics", + "name": "board_pins", "json_schema": {}, - "supported_sync_modes": ["incremental"], + "supported_sync_modes": ["full_refresh"], "source_defined_cursor": true, "default_cursor_field": [] }, - "sync_mode": "incremental", - "destination_sync_mode": "append" + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" }, { "stream": { - "name": "ad_account_analytics", + "name": "board_section_pins", "json_schema": {}, - "supported_sync_modes": ["incremental"], + "supported_sync_modes": ["full_refresh"], "source_defined_cursor": true, "default_cursor_field": [] }, - "sync_mode": "incremental", - "destination_sync_mode": "append" + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" }, { "stream": { - "name": "campaigns", + "name": "user_account_analytics", "json_schema": {}, "supported_sync_modes": ["incremental"], "source_defined_cursor": true, @@ -80,7 +90,7 @@ }, { "stream": { - "name": "ad_groups", + "name": "campaigns", "json_schema": {}, "supported_sync_modes": ["incremental"], "source_defined_cursor": true, @@ -91,7 +101,7 @@ }, { "stream": { - "name": "ads", + "name": "ad_groups", "json_schema": {}, "supported_sync_modes": ["incremental"], "source_defined_cursor": true, @@ -102,7 +112,7 @@ }, { "stream": { - "name": "campaign_analytics", + "name": "ads", "json_schema": {}, "supported_sync_modes": ["incremental"], "source_defined_cursor": true, @@ -113,7 +123,7 @@ }, { "stream": { - "name": "ad_group_analytics", + "name": "campaign_analytics", "json_schema": {}, "supported_sync_modes": ["incremental"], "source_defined_cursor": true, diff --git a/airbyte-integrations/connectors/source-pinterest/source_pinterest/source.py b/airbyte-integrations/connectors/source-pinterest/source_pinterest/source.py index 5ac895977f9d..80688424bb52 100644 --- a/airbyte-integrations/connectors/source-pinterest/source_pinterest/source.py +++ b/airbyte-integrations/connectors/source-pinterest/source_pinterest/source.py @@ -15,6 +15,7 @@ from airbyte_cdk.sources.streams import Stream from airbyte_cdk.sources.streams.http import HttpStream, HttpSubStream from airbyte_cdk.sources.streams.http.auth import Oauth2Authenticator +from airbyte_cdk.sources.utils.transform import TransformConfig, TypeTransformer from .utils import analytics_columns, to_datetime_str @@ -29,6 +30,7 @@ class PinterestStream(HttpStream, ABC): data_fields = ["items"] raise_on_http_errors = True max_rate_limit_exceeded = False + transformer = TypeTransformer(TransformConfig.DefaultSchemaNormalization) def __init__(self, config: Mapping[str, Any]): super().__init__(authenticator=config["authenticator"]) @@ -128,10 +130,12 @@ def path(self, stream_slice: Mapping[str, Any] = None, **kwargs) -> str: class IncrementalPinterestStream(PinterestStream, ABC): def get_updated_state(self, current_stream_state: MutableMapping[str, Any], latest_record: Mapping[str, Any]) -> Mapping[str, Any]: - latest_state = latest_record.get(self.cursor_field, self.start_date.format("YYYY-MM-DD")) - current_state = current_stream_state.get(self.cursor_field, self.start_date.format("YYYY-MM-DD")) + default_value = self.start_date.format("YYYY-MM-DD") + latest_state = latest_record.get(self.cursor_field, default_value) + current_state = current_stream_state.get(self.cursor_field, default_value) + latest_state_is_numeric = isinstance(latest_state, int) or isinstance(latest_state, float) - if isinstance(latest_state, int) and isinstance(current_state, str): + if latest_state_is_numeric and isinstance(current_state, str): current_state = datetime.strptime(current_state, "%Y-%m-%d").timestamp() return {self.cursor_field: max(latest_state, current_state)} 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-strict-encrypt/Dockerfile b/airbyte-integrations/connectors/source-postgres-strict-encrypt/Dockerfile index 3da938aea111..d2c1a6dda415 100644 --- a/airbyte-integrations/connectors/source-postgres-strict-encrypt/Dockerfile +++ b/airbyte-integrations/connectors/source-postgres-strict-encrypt/Dockerfile @@ -16,5 +16,5 @@ ENV APPLICATION source-postgres-strict-encrypt COPY --from=build /airbyte /airbyte -LABEL io.airbyte.version=1.0.32 +LABEL io.airbyte.version=1.0.34 LABEL io.airbyte.name=airbyte/source-postgres-strict-encrypt diff --git a/airbyte-integrations/connectors/source-postgres-strict-encrypt/src/main/java/io/airbyte/integrations/source/postgres/PostgresSourceStrictEncrypt.java b/airbyte-integrations/connectors/source-postgres-strict-encrypt/src/main/java/io/airbyte/integrations/source/postgres/PostgresSourceStrictEncrypt.java index 17e0b11ceb6d..1904ff009e90 100644 --- a/airbyte-integrations/connectors/source-postgres-strict-encrypt/src/main/java/io/airbyte/integrations/source/postgres/PostgresSourceStrictEncrypt.java +++ b/airbyte-integrations/connectors/source-postgres-strict-encrypt/src/main/java/io/airbyte/integrations/source/postgres/PostgresSourceStrictEncrypt.java @@ -11,9 +11,9 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.Source; import io.airbyte.integrations.base.spec_modification.SpecModifyingSource; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.util.Set; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/source-postgres/Dockerfile b/airbyte-integrations/connectors/source-postgres/Dockerfile index 7032d938e5c3..1ec5edecc4c6 100644 --- a/airbyte-integrations/connectors/source-postgres/Dockerfile +++ b/airbyte-integrations/connectors/source-postgres/Dockerfile @@ -16,5 +16,5 @@ ENV APPLICATION source-postgres COPY --from=build /airbyte /airbyte -LABEL io.airbyte.version=1.0.32 +LABEL io.airbyte.version=1.0.34 LABEL io.airbyte.name=airbyte/source-postgres diff --git a/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresCdcCatalogHelper.java b/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresCdcCatalogHelper.java index 21f082a5ad08..13fa081f6c4c 100644 --- a/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresCdcCatalogHelper.java +++ b/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresCdcCatalogHelper.java @@ -11,9 +11,9 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.db.jdbc.JdbcDatabase; import io.airbyte.integrations.debezium.internals.DebeziumEventUtils; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.SyncMode; import java.sql.SQLException; import java.util.ArrayList; import java.util.Collections; diff --git a/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresCdcStateHandler.java b/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresCdcStateHandler.java index 988dc488603e..1b0c2589e5ce 100644 --- a/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresCdcStateHandler.java +++ b/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresCdcStateHandler.java @@ -9,9 +9,9 @@ import io.airbyte.integrations.debezium.CdcStateHandler; import io.airbyte.integrations.source.relationaldb.models.CdcState; import io.airbyte.integrations.source.relationaldb.state.StateManager; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; import java.util.Map; import java.util.Optional; import org.slf4j.Logger; diff --git a/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresCdcTargetPosition.java b/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresCdcTargetPosition.java index d69e0426ca1c..a9d7da006da0 100644 --- a/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresCdcTargetPosition.java +++ b/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresCdcTargetPosition.java @@ -56,14 +56,20 @@ static PostgresCdcTargetPosition targetPosition(final JdbcDatabase database) { @Override public boolean reachedTargetPosition(final JsonNode valueAsJson) { - final PgLsn eventLsn = extractLsn(valueAsJson); + final SnapshotMetadata snapshotMetadata = SnapshotMetadata.valueOf(valueAsJson.get("source").get("snapshot").asText().toUpperCase()); - if (targetLsn.compareTo(eventLsn) > 0) { + if (SnapshotMetadata.TRUE == snapshotMetadata) { return false; + } else if (SnapshotMetadata.LAST == snapshotMetadata) { + LOGGER.info("Signalling close because Snapshot is complete"); + return true; } else { - final SnapshotMetadata snapshotMetadata = SnapshotMetadata.valueOf(valueAsJson.get("source").get("snapshot").asText().toUpperCase()); - // if not snapshot or is snapshot but last record in snapshot. - return SnapshotMetadata.TRUE != snapshotMetadata; + final PgLsn eventLsn = extractLsn(valueAsJson); + boolean isEventLSNAfter = targetLsn.compareTo(eventLsn) <= 0; + if (isEventLSNAfter) { + LOGGER.info("Signalling close because record's LSN : " + eventLsn + " is after target LSN : " + targetLsn); + } + return isEventLSNAfter; } } 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 e57254a6e7d8..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,19 +42,19 @@ 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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteGlobalState; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.AirbyteStreamState; import io.airbyte.protocol.models.CommonField; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +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.AirbyteGlobalState; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage.AirbyteStateType; +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.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.net.URI; import java.net.URISyntaxException; import java.nio.file.Path; @@ -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/main/java/io/airbyte/integrations/source/postgres/PostgresSourceStrictEncrypt.java b/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresSourceStrictEncrypt.java index aa9ad53c58fb..bef94777f992 100644 --- a/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresSourceStrictEncrypt.java +++ b/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresSourceStrictEncrypt.java @@ -4,7 +4,7 @@ package io.airbyte.integrations.source.postgres; -import static io.airbyte.protocol.models.AirbyteConnectionStatus.Status; +import static io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.node.ArrayNode; @@ -14,8 +14,8 @@ import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.Source; import io.airbyte.integrations.base.spec_modification.SpecModifyingSource; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.util.Set; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/airbyte-integrations/connectors/source-postgres/src/main/resources/spec.json b/airbyte-integrations/connectors/source-postgres/src/main/resources/spec.json index 9e5a16a33181..c6e3dd00eb23 100644 --- a/airbyte-integrations/connectors/source-postgres/src/main/resources/spec.json +++ b/airbyte-integrations/connectors/source-postgres/src/main/resources/spec.json @@ -68,14 +68,14 @@ }, "ssl_mode": { "title": "SSL Modes", - "description": "SSL connection modes. \n
    • disable - Disables encryption of communication between Airbyte and source database
    • \n
    • allow - Enables encryption only when required by the source database
    • \n
    • prefer - allows unencrypted connection only if the source database does not support encryption
    • \n
    • require - Always require encryption. If the source database server does not support encryption, connection will fail
    • \n
    • verify-ca - Always require encryption and verifies that the source database server has a valid SSL certificate
    • \n
    • verify-full - This is the most secure mode. Always require encryption and verifies the identity of the source database server
    \n Read more in the docs.", + "description": "SSL connection modes. \n Read more in the docs.", "type": "object", "order": 7, "oneOf": [ { "title": "disable", "additionalProperties": true, - "description": "Disable SSL.", + "description": "Disables encryption of communication between Airbyte and source database.", "required": ["mode"], "properties": { "mode": { @@ -88,7 +88,7 @@ { "title": "allow", "additionalProperties": true, - "description": "Allow SSL mode.", + "description": "Enables encryption only when required by the source database.", "required": ["mode"], "properties": { "mode": { @@ -101,7 +101,7 @@ { "title": "prefer", "additionalProperties": true, - "description": "Prefer SSL mode.", + "description": "Allows unencrypted connection only if the source database does not support encryption.", "required": ["mode"], "properties": { "mode": { @@ -114,7 +114,7 @@ { "title": "require", "additionalProperties": true, - "description": "Require SSL mode.", + "description": "Always require encryption. If the source database server does not support encryption, connection will fail.", "required": ["mode"], "properties": { "mode": { @@ -127,7 +127,7 @@ { "title": "verify-ca", "additionalProperties": true, - "description": "Verify-ca SSL mode.", + "description": "Always require encryption and verifies that the source database server has a valid SSL certificate.", "required": ["mode", "ca_certificate"], "properties": { "mode": { @@ -171,7 +171,7 @@ { "title": "verify-full", "additionalProperties": true, - "description": "Verify-full SSL mode.", + "description": "This is the most secure mode. Always require encryption and verifies the identity of the source database server.", "required": ["mode", "ca_certificate"], "properties": { "mode": { 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 b41842a02ccc..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,14 +18,14 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.util.HashMap; import java.util.List; import org.jooq.DSLContext; 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 72f42eae6232..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,14 +18,14 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.util.HashMap; import java.util.List; import org.jooq.SQLDialect; 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 f737f0802dc3..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,16 +19,16 @@ 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.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.ConnectorSpecification; +import io.airbyte.protocol.models.v0.DestinationSyncMode; +import io.airbyte.protocol.models.v0.SyncMode; import java.util.HashMap; import java.util.List; import java.util.stream.Collectors; @@ -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 857f0ec84061..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.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; 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 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 f710fa3d3301..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,16 +20,16 @@ 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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteCatalog; +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.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.ConnectorSpecification; +import io.airbyte.protocol.models.v0.DestinationSyncMode; +import io.airbyte.protocol.models.v0.SyncMode; import java.sql.SQLException; import java.util.HashMap; import java.util.List; @@ -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 bc83ed375cd1..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,14 +20,14 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.util.HashMap; import java.util.List; import org.jooq.DSLContext; @@ -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-integration/resources/expected_spec.json b/airbyte-integrations/connectors/source-postgres/src/test-integration/resources/expected_spec.json index 7ee9abfc9e98..b8fc95b726a7 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test-integration/resources/expected_spec.json +++ b/airbyte-integrations/connectors/source-postgres/src/test-integration/resources/expected_spec.json @@ -68,14 +68,14 @@ }, "ssl_mode": { "title": "SSL Modes", - "description": "SSL connection modes. \n
    • disable - Disables encryption of communication between Airbyte and source database
    • \n
    • allow - Enables encryption only when required by the source database
    • \n
    • prefer - allows unencrypted connection only if the source database does not support encryption
    • \n
    • require - Always require encryption. If the source database server does not support encryption, connection will fail
    • \n
    • verify-ca - Always require encryption and verifies that the source database server has a valid SSL certificate
    • \n
    • verify-full - This is the most secure mode. Always require encryption and verifies the identity of the source database server
    \n Read more in the docs.", + "description": "SSL connection modes. \n Read more in the docs.", "type": "object", "order": 7, "oneOf": [ { "title": "disable", "additionalProperties": true, - "description": "Disable SSL.", + "description": "Disables encryption of communication between Airbyte and source database.", "required": ["mode"], "properties": { "mode": { @@ -88,7 +88,7 @@ { "title": "allow", "additionalProperties": true, - "description": "Allow SSL mode.", + "description": "Enables encryption only when required by the source database.", "required": ["mode"], "properties": { "mode": { @@ -101,7 +101,7 @@ { "title": "prefer", "additionalProperties": true, - "description": "Prefer SSL mode.", + "description": "Allows unencrypted connection only if the source database does not support encryption.", "required": ["mode"], "properties": { "mode": { @@ -114,7 +114,7 @@ { "title": "require", "additionalProperties": true, - "description": "Require SSL mode.", + "description": "Always require encryption. If the source database server does not support encryption, connection will fail.", "required": ["mode"], "properties": { "mode": { @@ -127,7 +127,7 @@ { "title": "verify-ca", "additionalProperties": true, - "description": "Verify-ca SSL mode.", + "description": "Always require encryption and verifies that the source database server has a valid SSL certificate.", "required": ["mode", "ca_certificate"], "properties": { "mode": { @@ -171,7 +171,7 @@ { "title": "verify-full", "additionalProperties": true, - "description": "Verify-full SSL mode.", + "description": "This is the most secure mode. Always require encryption and verifies the identity of the source database server.", "required": ["mode", "ca_certificate"], "properties": { "mode": { diff --git a/airbyte-integrations/connectors/source-postgres/src/test-integration/resources/expected_strict_encrypt_spec.json b/airbyte-integrations/connectors/source-postgres/src/test-integration/resources/expected_strict_encrypt_spec.json index 78f0de73bf00..9733ecb52716 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test-integration/resources/expected_strict_encrypt_spec.json +++ b/airbyte-integrations/connectors/source-postgres/src/test-integration/resources/expected_strict_encrypt_spec.json @@ -61,14 +61,14 @@ }, "ssl_mode": { "title": "SSL Modes", - "description": "SSL connection modes. \n
    • disable - Disables encryption of communication between Airbyte and source database
    • \n
    • allow - Enables encryption only when required by the source database
    • \n
    • prefer - allows unencrypted connection only if the source database does not support encryption
    • \n
    • require - Always require encryption. If the source database server does not support encryption, connection will fail
    • \n
    • verify-ca - Always require encryption and verifies that the source database server has a valid SSL certificate
    • \n
    • verify-full - This is the most secure mode. Always require encryption and verifies the identity of the source database server
    \n Read more in the docs.", + "description": "SSL connection modes. \n Read more in the docs.", "type": "object", "order": 7, "oneOf": [ { "title": "allow", "additionalProperties": true, - "description": "Allow SSL mode.", + "description": "Enables encryption only when required by the source database.", "required": ["mode"], "properties": { "mode": { @@ -81,7 +81,7 @@ { "title": "prefer", "additionalProperties": true, - "description": "Prefer SSL mode.", + "description": "Allows unencrypted connection only if the source database does not support encryption.", "required": ["mode"], "properties": { "mode": { @@ -94,7 +94,7 @@ { "title": "require", "additionalProperties": true, - "description": "Require SSL mode.", + "description": "Always require encryption. If the source database server does not support encryption, connection will fail.", "required": ["mode"], "properties": { "mode": { @@ -107,7 +107,7 @@ { "title": "verify-ca", "additionalProperties": true, - "description": "Verify-ca SSL mode.", + "description": "Always require encryption and verifies that the source database server has a valid SSL certificate.", "required": ["mode", "ca_certificate"], "properties": { "mode": { @@ -151,7 +151,7 @@ { "title": "verify-full", "additionalProperties": true, - "description": "Verify-full SSL mode.", + "description": "This is the most secure mode. Always require encryption and verifies the identity of the source database server.", "required": ["mode", "ca_certificate"], "properties": { "mode": { 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 1d10a6f7af08..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,17 +36,17 @@ import io.airbyte.integrations.base.Source; import io.airbyte.integrations.debezium.CdcSourceTest; import io.airbyte.integrations.debezium.CdcTargetPosition; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +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.SyncMode; import io.airbyte.test.utils.PostgreSQLContainerHelper; import io.debezium.engine.ChangeEvent; import java.sql.SQLException; diff --git a/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresCdcCatalogHelperTest.java b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresCdcCatalogHelperTest.java index e4659a14f5d3..7bcb61da68a7 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresCdcCatalogHelperTest.java +++ b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresCdcCatalogHelperTest.java @@ -10,8 +10,8 @@ import com.fasterxml.jackson.databind.JsonNode; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.SyncMode; import java.util.Collections; import java.util.List; import java.util.Map; diff --git a/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresCdcGetPublicizedTablesTest.java b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresCdcGetPublicizedTablesTest.java index 90c64b9cc942..f6069b095bff 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresCdcGetPublicizedTablesTest.java +++ b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresCdcGetPublicizedTablesTest.java @@ -18,7 +18,7 @@ import io.airbyte.db.jdbc.DefaultJdbcDatabase; import io.airbyte.db.jdbc.JdbcDatabase; import io.airbyte.db.jdbc.JdbcUtils; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import io.airbyte.test.utils.PostgreSQLContainerHelper; import java.sql.SQLException; import java.util.List; 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 42d6d5317206..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,16 +24,16 @@ 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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.AirbyteRecordMessage; +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.v0.SyncMode; import io.airbyte.test.utils.PostgreSQLContainerHelper; import java.sql.SQLException; import java.util.ArrayList; 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 c94252092caf..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,15 +24,15 @@ import io.airbyte.db.factory.DSLContextFactory; import io.airbyte.db.factory.DatabaseDriver; import io.airbyte.db.jdbc.JdbcUtils; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import io.airbyte.test.utils.PostgreSQLContainerHelper; import java.math.BigDecimal; import java.util.List; diff --git a/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresSourceStrictEncryptTest.java b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresSourceStrictEncryptTest.java index a93c866ad318..2469ef6b5949 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresSourceStrictEncryptTest.java +++ b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresSourceStrictEncryptTest.java @@ -14,7 +14,7 @@ import io.airbyte.db.jdbc.JdbcUtils; import io.airbyte.integrations.base.ssh.SshBastionContainer; import io.airbyte.integrations.base.ssh.SshTunnel; -import io.airbyte.protocol.models.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import java.util.List; import java.util.Map; import java.util.Objects; 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 ef6d2d354889..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,16 +27,16 @@ import io.airbyte.db.factory.DSLContextFactory; import io.airbyte.db.factory.DatabaseDriver; import io.airbyte.db.jdbc.JdbcUtils; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.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.v0.SyncMode; import io.airbyte.test.utils.PostgreSQLContainerHelper; import java.math.BigDecimal; import java.sql.SQLException; @@ -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-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresSpecTest.java b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresSpecTest.java index 2de04fa66f84..7ceb90d1757e 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresSpecTest.java +++ b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresSpecTest.java @@ -14,7 +14,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; import io.airbyte.db.jdbc.JdbcUtils; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.validation.json.JsonSchemaValidator; import java.io.File; import java.io.IOException; diff --git a/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/utils/PostgresUnitTestsUtil.java b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/utils/PostgresUnitTestsUtil.java index e9d1076748ac..bdc9d0f12e5f 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/utils/PostgresUnitTestsUtil.java +++ b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/utils/PostgresUnitTestsUtil.java @@ -5,9 +5,9 @@ package io.airbyte.integrations.source.postgres.utils; import io.airbyte.commons.json.Jsons; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage; +import io.airbyte.protocol.models.v0.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import java.util.HashMap; import java.util.Map; diff --git a/airbyte-integrations/connectors/source-postgres/src/test/resources/expected_spec.json b/airbyte-integrations/connectors/source-postgres/src/test/resources/expected_spec.json index 78f0de73bf00..9733ecb52716 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test/resources/expected_spec.json +++ b/airbyte-integrations/connectors/source-postgres/src/test/resources/expected_spec.json @@ -61,14 +61,14 @@ }, "ssl_mode": { "title": "SSL Modes", - "description": "SSL connection modes. \n
    • disable - Disables encryption of communication between Airbyte and source database
    • \n
    • allow - Enables encryption only when required by the source database
    • \n
    • prefer - allows unencrypted connection only if the source database does not support encryption
    • \n
    • require - Always require encryption. If the source database server does not support encryption, connection will fail
    • \n
    • verify-ca - Always require encryption and verifies that the source database server has a valid SSL certificate
    • \n
    • verify-full - This is the most secure mode. Always require encryption and verifies the identity of the source database server
    \n Read more in the docs.", + "description": "SSL connection modes. \n Read more in the docs.", "type": "object", "order": 7, "oneOf": [ { "title": "allow", "additionalProperties": true, - "description": "Allow SSL mode.", + "description": "Enables encryption only when required by the source database.", "required": ["mode"], "properties": { "mode": { @@ -81,7 +81,7 @@ { "title": "prefer", "additionalProperties": true, - "description": "Prefer SSL mode.", + "description": "Allows unencrypted connection only if the source database does not support encryption.", "required": ["mode"], "properties": { "mode": { @@ -94,7 +94,7 @@ { "title": "require", "additionalProperties": true, - "description": "Require SSL mode.", + "description": "Always require encryption. If the source database server does not support encryption, connection will fail.", "required": ["mode"], "properties": { "mode": { @@ -107,7 +107,7 @@ { "title": "verify-ca", "additionalProperties": true, - "description": "Verify-ca SSL mode.", + "description": "Always require encryption and verifies that the source database server has a valid SSL certificate.", "required": ["mode", "ca_certificate"], "properties": { "mode": { @@ -151,7 +151,7 @@ { "title": "verify-full", "additionalProperties": true, - "description": "Verify-full SSL mode.", + "description": "This is the most secure mode. Always require encryption and verifies the identity of the source database server.", "required": ["mode", "ca_certificate"], "properties": { "mode": { 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 cd3876cdfcf8..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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; 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 java.nio.file.Path; import java.sql.SQLException; import java.util.HashMap; diff --git a/airbyte-integrations/connectors/source-redshift/src/test/java/io/airbyte/integrations/source/redshift/RedshiftSpecTest.java b/airbyte-integrations/connectors/source-redshift/src/test/java/io/airbyte/integrations/source/redshift/RedshiftSpecTest.java index d5f3235e8fa2..717a7bc01022 100644 --- a/airbyte-integrations/connectors/source-redshift/src/test/java/io/airbyte/integrations/source/redshift/RedshiftSpecTest.java +++ b/airbyte-integrations/connectors/source-redshift/src/test/java/io/airbyte/integrations/source/redshift/RedshiftSpecTest.java @@ -13,7 +13,7 @@ import io.airbyte.commons.io.IOs; import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.validation.json.JsonSchemaValidator; import java.io.File; import java.io.IOException; 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 595e55da2c80..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,24 +30,24 @@ 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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.CatalogHelpers; import io.airbyte.protocol.models.CommonField; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.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.SyncMode; +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.AirbyteMessage.Type; +import io.airbyte.protocol.models.v0.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage.AirbyteStateType; +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.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.SyncMode; import java.sql.SQLException; import java.time.Instant; import java.util.ArrayList; @@ -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 { @@ -719,9 +724,9 @@ protected List deserializeInitialState(final JsonNode initi return typedState.map((state) -> { switch (state.getStateType()) { case GLOBAL: - return List.of(state.getGlobal()); + return List.of(convertStateMessage(state.getGlobal())); case STREAM: - return state.getStateMessages(); + return state.getStateMessages().stream().map(this::convertStateMessage).toList(); case LEGACY: default: return List.of(new AirbyteStateMessage().withType(AirbyteStateType.LEGACY) @@ -730,6 +735,10 @@ protected List deserializeInitialState(final JsonNode initi }).orElse(generateEmptyInitialState(config)); } + protected AirbyteStateMessage convertStateMessage(final io.airbyte.protocol.models.AirbyteStateMessage state) { + return Jsons.object(Jsons.jsonNode(state), AirbyteStateMessage.class); + } + /** * Generates an empty, initial state for use by the connector. * diff --git a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/CdcStateManager.java b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/CdcStateManager.java index cca8d5da5c8c..025c7ecc5fe5 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/CdcStateManager.java +++ b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/CdcStateManager.java @@ -6,7 +6,7 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.source.relationaldb.models.CdcState; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import java.util.Collections; import java.util.Set; import org.slf4j.Logger; 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 ba1417d7c03f..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.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; 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 java.util.Iterator; import java.util.Objects; import java.util.Optional; @@ -132,7 +132,7 @@ protected AirbyteMessage computeNext() { if (stateEmissionFrequency > 0 && !Objects.equals(currentMaxCursor, initialCursor) && messageIterator.hasNext()) { // Only emit an intermediate state when it is not the first or last record message, // because the last state message will be taken care of in a different branch. - intermediateStateMessage = createStateMessage(false); + intermediateStateMessage = createStateMessage(false, totalRecordCount); } currentMaxCursor = cursorCandidate; currentMaxCursorRecordCount = 1L; @@ -154,7 +154,7 @@ protected AirbyteMessage computeNext() { return optionalIntermediateMessage.orElse(endOfData()); } } else if (!hasEmittedFinalState) { - return createStateMessage(true); + return createStateMessage(true, totalRecordCount); } else { return endOfData(); } @@ -186,20 +186,23 @@ protected final Optional getIntermediateMessage() { * read up so far * * @param isFinalState marker for if the final state of the iterator has been reached + * @param totalRecordCount count of read messages * @return AirbyteMessage which includes information on state of records read so far */ - public AirbyteMessage createStateMessage(final boolean isFinalState) { + public AirbyteMessage createStateMessage(final boolean isFinalState, int totalRecordCount) { final AirbyteStateMessage stateMessage = stateManager.updateAndEmit(pair, currentMaxCursor, currentMaxCursorRecordCount); final Optional cursorInfo = stateManager.getCursorInfo(pair); - LOGGER.info("State report for stream {} - original: {} = {} (count {}) -> latest: {} = {} (count {})", - pair, - cursorInfo.map(CursorInfo::getOriginalCursorField).orElse(null), - cursorInfo.map(CursorInfo::getOriginalCursor).orElse(null), - cursorInfo.map(CursorInfo::getOriginalCursorRecordCount).orElse(null), - cursorInfo.map(CursorInfo::getCursorField).orElse(null), - cursorInfo.map(CursorInfo::getCursor).orElse(null), - cursorInfo.map(CursorInfo::getCursorRecordCount).orElse(null)); - + // logging once every 100 messages to reduce log verbosity + if (totalRecordCount % 100 == 0) { + LOGGER.info("State report for stream {} - original: {} = {} (count {}) -> latest: {} = {} (count {})", + pair, + cursorInfo.map(CursorInfo::getOriginalCursorField).orElse(null), + cursorInfo.map(CursorInfo::getOriginalCursor).orElse(null), + cursorInfo.map(CursorInfo::getOriginalCursorRecordCount).orElse(null), + cursorInfo.map(CursorInfo::getCursorField).orElse(null), + cursorInfo.map(CursorInfo::getCursor).orElse(null), + cursorInfo.map(CursorInfo::getCursorRecordCount).orElse(null)); + } if (isFinalState) { hasEmittedFinalState = true; if (stateManager.getCursor(pair).isEmpty()) { diff --git a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/AbstractStateManager.java b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/AbstractStateManager.java index a71ab96c341d..db93effe4678 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/AbstractStateManager.java +++ b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/AbstractStateManager.java @@ -5,9 +5,9 @@ package io.airbyte.integrations.source.relationaldb.state; import io.airbyte.integrations.source.relationaldb.CursorInfo; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.Collection; import java.util.List; import java.util.Map; diff --git a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/CursorManager.java b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/CursorManager.java index 3539fc9219b4..42b4f8bdd2d7 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/CursorManager.java +++ b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/CursorManager.java @@ -6,9 +6,9 @@ import com.google.common.annotations.VisibleForTesting; import io.airbyte.integrations.source.relationaldb.CursorInfo; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.util.Collection; import java.util.HashMap; import java.util.List; diff --git a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/GlobalStateManager.java b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/GlobalStateManager.java index 548c17179751..b595b7111440 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/GlobalStateManager.java +++ b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/GlobalStateManager.java @@ -14,13 +14,13 @@ import io.airbyte.integrations.source.relationaldb.models.CdcState; import io.airbyte.integrations.source.relationaldb.models.DbState; import io.airbyte.integrations.source.relationaldb.models.DbStreamState; -import io.airbyte.protocol.models.AirbyteGlobalState; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.AirbyteStreamState; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.StreamDescriptor; +import io.airbyte.protocol.models.v0.AirbyteGlobalState; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage.AirbyteStateType; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteStreamState; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.StreamDescriptor; import java.util.Collection; import java.util.Collections; import java.util.List; diff --git a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/LegacyStateManager.java b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/LegacyStateManager.java index 669a07fdb72d..fdbb90fa1f6e 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/LegacyStateManager.java +++ b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/LegacyStateManager.java @@ -8,10 +8,10 @@ import io.airbyte.integrations.source.relationaldb.CdcStateManager; import io.airbyte.integrations.source.relationaldb.models.DbState; import io.airbyte.integrations.source.relationaldb.models.DbStreamState; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage.AirbyteStateType; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.List; import java.util.Objects; import java.util.Optional; diff --git a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/StateGeneratorUtils.java b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/StateGeneratorUtils.java index 493eafbffccf..00300bb6b396 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/StateGeneratorUtils.java +++ b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/StateGeneratorUtils.java @@ -9,12 +9,12 @@ import io.airbyte.integrations.source.relationaldb.CursorInfo; import io.airbyte.integrations.source.relationaldb.models.DbState; import io.airbyte.integrations.source.relationaldb.models.DbStreamState; -import io.airbyte.protocol.models.AirbyteGlobalState; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.AirbyteStreamState; -import io.airbyte.protocol.models.StreamDescriptor; +import io.airbyte.protocol.models.v0.AirbyteGlobalState; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage.AirbyteStateType; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteStreamState; +import io.airbyte.protocol.models.v0.StreamDescriptor; import java.util.Collections; import java.util.List; import java.util.Map; diff --git a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/StateManager.java b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/StateManager.java index 07593cfe923d..860325610c30 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/StateManager.java +++ b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/StateManager.java @@ -7,8 +7,8 @@ import com.google.common.base.Preconditions; import io.airbyte.integrations.source.relationaldb.CdcStateManager; import io.airbyte.integrations.source.relationaldb.CursorInfo; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import java.util.Map; import java.util.Optional; import org.slf4j.Logger; diff --git a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/StateManagerFactory.java b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/StateManagerFactory.java index 9778921fee0f..3478311d6155 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/StateManagerFactory.java +++ b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/StateManagerFactory.java @@ -6,9 +6,9 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.source.relationaldb.models.DbState; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage.AirbyteStateType; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.ArrayList; import java.util.List; import org.slf4j.Logger; diff --git a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/StreamStateManager.java b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/StreamStateManager.java index f4169006b62a..1a59a645f209 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/StreamStateManager.java +++ b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/state/StreamStateManager.java @@ -12,11 +12,11 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.source.relationaldb.CdcStateManager; import io.airbyte.integrations.source.relationaldb.CursorInfo; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.AirbyteStreamState; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage.AirbyteStateType; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteStreamState; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.util.List; import java.util.Map; import java.util.Optional; diff --git a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/AbstractDbSourceTest.java b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/AbstractDbSourceTest.java index 1bf9c01aef6a..9798e95186bc 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/AbstractDbSourceTest.java +++ b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/AbstractDbSourceTest.java @@ -12,8 +12,8 @@ import io.airbyte.commons.features.EnvVariableFeatureFlags; import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage.AirbyteStateType; import java.io.IOException; import java.util.List; import org.junit.jupiter.api.Test; 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 88058b4ab5fa..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.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteMessage.Type; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; 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 java.sql.SQLException; import java.util.Collections; import java.util.Iterator; diff --git a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/CursorManagerTest.java b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/CursorManagerTest.java index f3e7f62df0f5..99b8d0c37b11 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/CursorManagerTest.java +++ b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/CursorManagerTest.java @@ -17,7 +17,7 @@ import io.airbyte.integrations.source.relationaldb.CursorInfo; import io.airbyte.integrations.source.relationaldb.models.DbStreamState; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import java.util.Collections; import java.util.Optional; import java.util.function.Function; diff --git a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/GlobalStateManagerTest.java b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/GlobalStateManagerTest.java index 5124df49ab91..bc6d5a3d6809 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/GlobalStateManagerTest.java +++ b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/GlobalStateManagerTest.java @@ -20,15 +20,15 @@ import io.airbyte.integrations.source.relationaldb.models.CdcState; import io.airbyte.integrations.source.relationaldb.models.DbState; import io.airbyte.integrations.source.relationaldb.models.DbStreamState; -import io.airbyte.protocol.models.AirbyteGlobalState; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.AirbyteStreamState; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.StreamDescriptor; +import io.airbyte.protocol.models.v0.AirbyteGlobalState; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage.AirbyteStateType; +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.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.StreamDescriptor; import java.util.Collections; import java.util.Comparator; import java.util.List; diff --git a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/LegacyStateManagerTest.java b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/LegacyStateManagerTest.java index 9dd279a7edab..c92016ddaed8 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/LegacyStateManagerTest.java +++ b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/LegacyStateManagerTest.java @@ -21,11 +21,11 @@ import io.airbyte.integrations.source.relationaldb.models.CdcState; import io.airbyte.integrations.source.relationaldb.models.DbState; import io.airbyte.integrations.source.relationaldb.models.DbStreamState; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage.AirbyteStateType; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.util.Comparator; import java.util.List; import java.util.Map; diff --git a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/StateGeneratorUtilsTest.java b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/StateGeneratorUtilsTest.java index 9ac94775c928..a602dcfe3d52 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/StateGeneratorUtilsTest.java +++ b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/StateGeneratorUtilsTest.java @@ -7,7 +7,7 @@ import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; -import io.airbyte.protocol.models.StreamDescriptor; +import io.airbyte.protocol.models.v0.StreamDescriptor; import org.junit.jupiter.api.Test; /** diff --git a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/StateManagerFactoryTest.java b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/StateManagerFactoryTest.java index 6f911e360ffd..5b239c2a9b53 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/StateManagerFactoryTest.java +++ b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/StateManagerFactoryTest.java @@ -11,12 +11,12 @@ import io.airbyte.integrations.source.relationaldb.models.CdcState; import io.airbyte.integrations.source.relationaldb.models.DbState; import io.airbyte.integrations.source.relationaldb.models.DbStreamState; -import io.airbyte.protocol.models.AirbyteGlobalState; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.AirbyteStreamState; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.StreamDescriptor; +import io.airbyte.protocol.models.v0.AirbyteGlobalState; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage.AirbyteStateType; +import io.airbyte.protocol.models.v0.AirbyteStreamState; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.StreamDescriptor; import java.util.List; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/StateTestConstants.java b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/StateTestConstants.java index 50d224759231..d8a7ec3052c2 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/StateTestConstants.java +++ b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/StateTestConstants.java @@ -5,10 +5,10 @@ package io.airbyte.integrations.source.relationaldb.state; import io.airbyte.integrations.source.relationaldb.models.DbStreamState; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; +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.v0.ConfiguredAirbyteStream; import java.util.Collections; import java.util.List; import java.util.Optional; diff --git a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/StreamStateManagerTest.java b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/StreamStateManagerTest.java index 1afd609c77fb..9b8a34b07ff6 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/StreamStateManagerTest.java +++ b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/state/StreamStateManagerTest.java @@ -22,15 +22,15 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.source.relationaldb.models.DbState; import io.airbyte.integrations.source.relationaldb.models.DbStreamState; -import io.airbyte.protocol.models.AirbyteStateMessage; -import io.airbyte.protocol.models.AirbyteStateMessage.AirbyteStateType; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.AirbyteStreamState; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.StreamDescriptor; -import io.airbyte.protocol.models.SyncMode; +import io.airbyte.protocol.models.v0.AirbyteStateMessage; +import io.airbyte.protocol.models.v0.AirbyteStateMessage.AirbyteStateType; +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.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.StreamDescriptor; +import io.airbyte.protocol.models.v0.SyncMode; import java.util.ArrayList; import java.util.Comparator; import java.util.List; diff --git a/airbyte-integrations/connectors/source-retently/Dockerfile b/airbyte-integrations/connectors/source-retently/Dockerfile index 7ccaa4606ff3..7544772929e5 100644 --- a/airbyte-integrations/connectors/source-retently/Dockerfile +++ b/airbyte-integrations/connectors/source-retently/Dockerfile @@ -34,5 +34,5 @@ COPY source_retently ./source_retently ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.2 +LABEL io.airbyte.version=0.1.3 LABEL io.airbyte.name=airbyte/source-retently 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 8d19736aadcc..dcaeaf54b78e 100644 --- a/airbyte-integrations/connectors/source-retently/integration_tests/configured_catalog.json +++ b/airbyte-integrations/connectors/source-retently/integration_tests/configured_catalog.json @@ -1,5 +1,29 @@ { "streams": [ + { + "stream": { + "name": "campaigns", + "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", + "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": "customers", @@ -12,6 +36,42 @@ "sync_mode": "full_refresh", "destination_sync_mode": "overwrite" }, + { + "stream": { + "name": "nps", + "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": "companies", @@ -26,7 +86,7 @@ }, { "stream": { - "name": "reports", + "name": "templates", "json_schema": { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object" 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 new file mode 100644 index 000000000000..8079b5a96e54 --- /dev/null +++ b/airbyte-integrations/connectors/source-retently/source_retently/schemas/campaigns.json @@ -0,0 +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" + } + } +} diff --git a/airbyte-integrations/connectors/source-retently/source_retently/schemas/feedback.json b/airbyte-integrations/connectors/source-retently/source_retently/schemas/feedback.json new file mode 100644 index 000000000000..298ea540872b --- /dev/null +++ b/airbyte-integrations/connectors/source-retently/source_retently/schemas/feedback.json @@ -0,0 +1,48 @@ +{ + "type": "object", + "properties": { + "id": { "type": "string" }, + "customerId": { "type": "string" }, + "email": { "type": "string" }, + "firstName": { "type": "string" }, + "lastName": { "type": "string" }, + "companyName": { "type": "string" }, + "jobTitle": { "type": "string" }, + "country": { "type": "string" }, + "state": { "type": "string" }, + "city": { "type": "string" }, + "tags": { + "type": "array", + "items": { "type": "string" } + }, + "customProps": { + "type": "array", + "items": { "type": "object" } + }, + "campaignId": { "type": "string" }, + "campaignName": { "type": "string" }, + "createdDate": { "type": "string" }, + "score": { "type": "number" }, + "comment": { "type": "string" }, + "checkbox": { "type": "boolean" }, + "additionalQuestions": { + "type": "array", + "items": { "type": "object" } + }, + "feedbackTags": { + "type": "array", + "items": { "type": "string" } + }, + "notes": { + "type": "array", + "items": { "type": "object" } + }, + "status": { "type": "string" }, + "assigned": { "type": "string" }, + "ratingCategory": { "type": "string" }, + "resolved": { "type": "boolean" }, + "channel": { "type": "string" }, + "metricsType": { "type": "string" }, + "isBogus": { "type": "boolean" } + } +} diff --git a/airbyte-integrations/connectors/source-retently/source_retently/schemas/nps.json b/airbyte-integrations/connectors/source-retently/source_retently/schemas/nps.json new file mode 100644 index 000000000000..1a0616ec7db4 --- /dev/null +++ b/airbyte-integrations/connectors/source-retently/source_retently/schemas/nps.json @@ -0,0 +1,12 @@ +{ + "score": { "type": "integer" }, + "scoreSum": { "type": "integer" }, + "metricsType": { "type": "string" }, + "promoters": { "type": "integer" }, + "passives": { "type": "integer" }, + "detractors": { "type": "integer" }, + "promotersCount": { "type": "integer" }, + "passivesCount": { "type": "integer" }, + "detractorsCount": { "type": "integer" }, + "totalResponses": { "type": "integer" } +} 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 ea9b3d5962e8..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,7 +37,9 @@ def get_authenticator(config): def check_connection(self, logger, config) -> Tuple[bool, any]: try: auth = self.get_authenticator(config) - stream = Companies(auth) + + # NOTE: not all retently instances have companies + stream = Customers(auth) records = stream.read_records(sync_mode=SyncMode.full_refresh) next(records) return True, None @@ -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)] + + 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,16 +74,13 @@ 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") - if data: - stream_data = data.get(self.json_path) if self.json_path else data - if stream_data: - for d in stream_data: - yield d + stream_data = data.get(self.json_path) if self.json_path else data + for d in stream_data: + yield d def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: json = response.json().get("data", dict()) @@ -90,35 +99,134 @@ 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 + def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: + return None + +class Nps(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 + ) -> str: + return "nps/score" # does not support pagination 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, + stream_state: Mapping[str, Any], + stream_slice: Mapping[str, Any] = None, + next_page_token: Mapping[str, Any] = None, + ) -> Iterable[Mapping]: + data = response.json().get("data") + yield data + +class Campaigns(RetentlyStream): + json_path = "campaigns" + + def path( + self, stream_state: Mapping[str, Any] = None, stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None + ) -> str: + return "campaigns" + + 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, + ) -> Iterable[Mapping]: + data = response.json() + stream_data = data.get(self.json_path) if self.json_path else data + for d in stream_data: + yield d + +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 + ) -> 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 a509dc6c58db..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", @@ -15,13 +15,11 @@ "type": "object", "title": "Authenticate via Retently (OAuth)", "required": ["client_id", "client_secret", "refresh_token"], - "additionalProperties": false, + "additionalProperties": true, "properties": { "auth_type": { "type": "string", "const": "Client", - "enum": ["Client"], - "default": "Client", "order": 0 }, "client_id": { @@ -47,13 +45,11 @@ "type": "object", "title": "Authenticate with API Token", "required": ["api_key"], - "additionalProperties": false, + "additionalProperties": true, "properties": { "auth_type": { "type": "string", "const": "Token", - "enum": ["Token"], - "default": "Token", "order": 0 }, "api_key": { @@ -75,7 +71,7 @@ "oauth_config_specification": { "complete_oauth_output_specification": { "type": "object", - "additionalProperties": false, + "additionalProperties": true, "properties": { "refresh_token": { "type": "string", @@ -85,7 +81,7 @@ }, "complete_oauth_server_input_specification": { "type": "object", - "additionalProperties": false, + "additionalProperties": true, "properties": { "client_id": { "type": "string" @@ -97,7 +93,7 @@ }, "complete_oauth_server_output_specification": { "type": "object", - "additionalProperties": false, + "additionalProperties": true, "properties": { "client_id": { "type": "string", 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 67b822eab1e0..2a41a774598f 100644 --- a/airbyte-integrations/connectors/source-retently/unit_tests/test_source.py +++ b/airbyte-integrations/connectors/source-retently/unit_tests/test_source.py @@ -11,8 +11,8 @@ def setup_responses(): responses.add( responses.GET, - "https://app.retently.com/api/v2/companies", - json={"data": {"companies": [{}]}}, + "https://app.retently.com/api/v2/nps/customers", + json={"data": {"subscribers": [{}]}}, ) @@ -28,5 +28,5 @@ def test_streams(mocker): source = SourceRetently() config_mock = MagicMock() streams = source.streams(config_mock) - expected_streams_number = 3 + 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-s3/Dockerfile b/airbyte-integrations/connectors/source-s3/Dockerfile index c38be4e387ef..e97e475cc4a2 100644 --- a/airbyte-integrations/connectors/source-s3/Dockerfile +++ b/airbyte-integrations/connectors/source-s3/Dockerfile @@ -17,5 +17,5 @@ COPY source_s3 ./source_s3 ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.26 +LABEL io.airbyte.version=0.1.27 LABEL io.airbyte.name=airbyte/source-s3 diff --git a/airbyte-integrations/connectors/source-s3/acceptance-test-config.yml b/airbyte-integrations/connectors/source-s3/acceptance-test-config.yml index c85b3712cc75..e652a72ea4b8 100644 --- a/airbyte-integrations/connectors/source-s3/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-s3/acceptance-test-config.yml @@ -4,6 +4,8 @@ connector_image: airbyte/source-s3:dev tests: spec: - spec_path: "integration_tests/spec.json" + backward_compatibility_tests_config: + disable_for_version: "0.1.26" connection: # for CSV format - config_path: "secrets/config.json" diff --git a/airbyte-integrations/connectors/source-s3/integration_tests/config_minio.json b/airbyte-integrations/connectors/source-s3/integration_tests/config_minio.json index 1a0863be9c8b..6198d09c452e 100644 --- a/airbyte-integrations/connectors/source-s3/integration_tests/config_minio.json +++ b/airbyte-integrations/connectors/source-s3/integration_tests/config_minio.json @@ -6,10 +6,13 @@ "aws_access_key_id": "123456", "aws_secret_access_key": "123456key", "path_prefix": "", - "endpoint": "http://10.0.229.255:9000" + "endpoint": "http://10.0.210.197:9000" }, "format": { - "filetype": "csv" + "filetype": "csv", + "delimiter": ",", + "quote_char": "'", + "encoding": "utf8" }, "path_pattern": "*.csv", "schema": "{}" diff --git a/airbyte-integrations/connectors/source-s3/integration_tests/config_minio.template.json b/airbyte-integrations/connectors/source-s3/integration_tests/config_minio.template.json index c551bfeb6685..574f5fb000e5 100644 --- a/airbyte-integrations/connectors/source-s3/integration_tests/config_minio.template.json +++ b/airbyte-integrations/connectors/source-s3/integration_tests/config_minio.template.json @@ -9,7 +9,10 @@ "endpoint": "http://:9000" }, "format": { - "filetype": "csv" + "filetype": "csv", + "delimiter": ",", + "quote_char": "'", + "encoding": "utf8" }, "path_pattern": "*.csv", "schema": "{}" diff --git a/airbyte-integrations/connectors/source-s3/integration_tests/spec.json b/airbyte-integrations/connectors/source-s3/integration_tests/spec.json index 417c48058501..2fcd27e2bcf9 100644 --- a/airbyte-integrations/connectors/source-s3/integration_tests/spec.json +++ b/airbyte-integrations/connectors/source-s3/integration_tests/spec.json @@ -110,6 +110,8 @@ "title": "Block Size", "description": "The chunk size in bytes to process at a time in memory from each file. If your data is particularly wide and failing during schema detection, increasing this should solve it. Beware of raising this too high as you could hit OOM errors.", "default": 10000, + "minimum": 1, + "maximum": 2147483647, "order": 9, "type": "integer" } diff --git a/airbyte-integrations/connectors/source-s3/source_s3/source_files_abstract/formats/abstract_file_parser.py b/airbyte-integrations/connectors/source-s3/source_s3/source_files_abstract/formats/abstract_file_parser.py index 44579b5a0999..84dc292e96b0 100644 --- a/airbyte-integrations/connectors/source-s3/source_s3/source_files_abstract/formats/abstract_file_parser.py +++ b/airbyte-integrations/connectors/source-s3/source_s3/source_files_abstract/formats/abstract_file_parser.py @@ -108,3 +108,6 @@ def json_schema_to_pyarrow_schema(cls, schema: Mapping[str, Any], reverse: bool :return: converted schema dict """ return {column: cls.json_type_to_pyarrow_type(json_type, reverse=reverse) for column, json_type in schema.items()} + + def _validate_config(self, config: Mapping[str, Any]): + pass diff --git a/airbyte-integrations/connectors/source-s3/source_s3/source_files_abstract/formats/csv_parser.py b/airbyte-integrations/connectors/source-s3/source_s3/source_files_abstract/formats/csv_parser.py index 9b832653b932..adb87b467220 100644 --- a/airbyte-integrations/connectors/source-s3/source_s3/source_files_abstract/formats/csv_parser.py +++ b/airbyte-integrations/connectors/source-s3/source_s3/source_files_abstract/formats/csv_parser.py @@ -2,6 +2,7 @@ # Copyright (c) 2022 Airbyte, Inc., all rights reserved. # +import codecs import csv import json import tempfile @@ -50,6 +51,23 @@ def format(self) -> CsvFormat: self.format_model = CsvFormat.parse_obj(self._format) return self.format_model + def _validate_field_len(self, config: Mapping[str, Any], field_name: str): + if len(config.get("format", {}).get(field_name)) != 1: + raise ValueError(f"{field_name} should contain 1 character only") + + def _validate_config(self, config: Mapping[str, Any]): + if config.get("format", {}).get("filetype") == "csv": + self._validate_field_len(config, "delimiter") + if config.get("format", {}).get("delimiter") in ("\r", "\n"): + raise ValueError("Delimiter cannot be \r or \n") + + self._validate_field_len(config, "quote_char") + + if config.get("format", {}).get("escape_char"): + self._validate_field_len(config, "escape_char") + + codecs.lookup(config.get("format", {}).get("encoding")) + def _read_options(self) -> Mapping[str, str]: """ https://arrow.apache.org/docs/python/generated/pyarrow.csv.ReadOptions.html diff --git a/airbyte-integrations/connectors/source-s3/source_s3/source_files_abstract/formats/csv_spec.py b/airbyte-integrations/connectors/source-s3/source_s3/source_files_abstract/formats/csv_spec.py index 34da5af3e6df..f2c82d7a86c0 100644 --- a/airbyte-integrations/connectors/source-s3/source_s3/source_files_abstract/formats/csv_spec.py +++ b/airbyte-integrations/connectors/source-s3/source_s3/source_files_abstract/formats/csv_spec.py @@ -73,6 +73,8 @@ class Config: ) block_size: int = Field( default=10000, + ge=1, + le=2_147_483_647, # int32_t max description="The chunk size in bytes to process at a time in memory from each file. If your data is particularly wide and failing during schema detection, increasing this should solve it. Beware of raising this too high as you could hit OOM errors.", order=9, ) diff --git a/airbyte-integrations/connectors/source-s3/source_s3/source_files_abstract/source.py b/airbyte-integrations/connectors/source-s3/source_s3/source_files_abstract/source.py index 10aa6d094fdf..6d4a453f23bd 100644 --- a/airbyte-integrations/connectors/source-s3/source_s3/source_files_abstract/source.py +++ b/airbyte-integrations/connectors/source-s3/source_s3/source_files_abstract/source.py @@ -2,7 +2,6 @@ # Copyright (c) 2022 Airbyte, Inc., all rights reserved. # - from abc import ABC, abstractmethod from traceback import format_exc from typing import Any, List, Mapping, Optional, Tuple @@ -59,7 +58,9 @@ def check_connection(self, logger: AirbyteLogger, config: Mapping[str, Any]) -> The error object will be cast to string to display the problem to the user. """ try: - for file_info in self.stream_class(**config).filepath_iterator(): + stream = self.stream_class(**config) + stream.fileformatparser_class(stream._format)._validate_config(config) + for file_info in stream.filepath_iterator(): # TODO: will need to split config.get("path_pattern") up by stream once supporting multiple streams # test that matching on the pattern doesn't error globmatch(file_info.key, config.get("path_pattern"), flags=GLOBSTAR | SPLIT) diff --git a/airbyte-integrations/connectors/source-s3/unit_tests/test_source.py b/airbyte-integrations/connectors/source-s3/unit_tests/test_source.py index f556412f77b0..680d303e0a36 100644 --- a/airbyte-integrations/connectors/source-s3/unit_tests/test_source.py +++ b/airbyte-integrations/connectors/source-s3/unit_tests/test_source.py @@ -38,13 +38,57 @@ def test_check_connection_exception(config): assert error_msg +@pytest.mark.parametrize( + "delimiter, quote_char, escape_char, encoding, error_type", + [ + ("string", "'", None, "utf8", ValueError), + ("\n", "'", None, "utf8", ValueError), + (",", ";,", None, "utf8", ValueError), + (",", "'", "escape", "utf8", ValueError), + (",", "'", None, "utf888", LookupError) + ], + ids=[ + "long_delimiter", + "forbidden_delimiter_symbol", + "long_quote_char", + "long_escape_char", + "unknown_encoding" + ], +) +def test_check_connection_csv_validation_exception(delimiter, quote_char, escape_char, encoding, error_type): + config = { + "dataset": "test", + "provider": { + "storage": "S3", + "bucket": "test-source-s3", + "aws_access_key_id": "key_id", + "aws_secret_access_key": "access_key", + "path_prefix": "" + }, + "path_pattern": "simple_test*.csv", + "schema": "{}", + "format": { + "filetype": "csv", + "delimiter": delimiter, + "quote_char": quote_char, + "escape_char": escape_char, + "encoding": encoding, + } + } + ok, error_msg = SourceS3().check_connection(logger, config=config) + + assert not ok + assert error_msg + assert isinstance(error_msg, error_type) + + def test_check_connection(config): instance = SourceS3() with patch.object(instance.stream_class, "filepath_iterator", MagicMock()): ok, error_msg = instance.check_connection(logger, config=config) - assert ok - assert not error_msg + assert not ok + assert error_msg def test_streams(config): diff --git a/airbyte-integrations/connectors/source-scaffold-java-jdbc/src/test-integration/java/io/airbyte/integrations/source/scaffold_java_jdbc/ScaffoldJavaJdbcSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-scaffold-java-jdbc/src/test-integration/java/io/airbyte/integrations/source/scaffold_java_jdbc/ScaffoldJavaJdbcSourceAcceptanceTest.java index 6115593b6d63..177a69463040 100644 --- a/airbyte-integrations/connectors/source-scaffold-java-jdbc/src/test-integration/java/io/airbyte/integrations/source/scaffold_java_jdbc/ScaffoldJavaJdbcSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-scaffold-java-jdbc/src/test-integration/java/io/airbyte/integrations/source/scaffold_java_jdbc/ScaffoldJavaJdbcSourceAcceptanceTest.java @@ -9,8 +9,8 @@ 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.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConnectorSpecification; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConnectorSpecification; import java.util.HashMap; public class ScaffoldJavaJdbcSourceAcceptanceTest extends SourceAcceptanceTest { diff --git a/airbyte-integrations/connectors/source-sftp/src/main/java/io/airbyte/integrations/source/sftp/SftpSource.java b/airbyte-integrations/connectors/source-sftp/src/main/java/io/airbyte/integrations/source/sftp/SftpSource.java index fd67766fa778..8d2d70f7825a 100644 --- a/airbyte-integrations/connectors/source-sftp/src/main/java/io/airbyte/integrations/source/sftp/SftpSource.java +++ b/airbyte-integrations/connectors/source-sftp/src/main/java/io/airbyte/integrations/source/sftp/SftpSource.java @@ -11,14 +11,14 @@ import io.airbyte.integrations.BaseConnector; import io.airbyte.integrations.base.IntegrationRunner; import io.airbyte.integrations.base.Source; -import io.airbyte.protocol.models.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.AirbyteStream; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.SyncMode; +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.AirbyteRecordMessage; +import io.airbyte.protocol.models.v0.AirbyteStream; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; +import io.airbyte.protocol.models.v0.SyncMode; import java.time.Instant; import java.util.ArrayList; import java.util.List; 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 3e322fce0491..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,13 +11,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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.SyncMode; import java.util.Collections; import java.util.HashMap; import org.testcontainers.containers.BindMode; 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-snapchat-marketing/Dockerfile b/airbyte-integrations/connectors/source-snapchat-marketing/Dockerfile index cfabef5f0468..33c8bb7fa56f 100644 --- a/airbyte-integrations/connectors/source-snapchat-marketing/Dockerfile +++ b/airbyte-integrations/connectors/source-snapchat-marketing/Dockerfile @@ -25,5 +25,5 @@ COPY source_snapchat_marketing ./source_snapchat_marketing ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.8 +LABEL io.airbyte.version=0.1.10 LABEL io.airbyte.name=airbyte/source-snapchat-marketing diff --git a/airbyte-integrations/connectors/source-snapchat-marketing/source_snapchat_marketing/source.py b/airbyte-integrations/connectors/source-snapchat-marketing/source_snapchat_marketing/source.py index 30ffd651ea1d..118807c4dd37 100644 --- a/airbyte-integrations/connectors/source-snapchat-marketing/source_snapchat_marketing/source.py +++ b/airbyte-integrations/connectors/source-snapchat-marketing/source_snapchat_marketing/source.py @@ -97,7 +97,6 @@ "earned_reach", ] - logger = logging.getLogger("airbyte") @@ -476,7 +475,7 @@ def update_state_after_last_record(self, record): self.number_of_last_records += 1 # Update state if 'last' records for all dependant entities have been read if self.number_of_parent_ids == self.number_of_last_records: - self.state = record_end_date + self.state = {self.cursor_field: record_end_date} @property def state(self): @@ -484,7 +483,7 @@ def state(self): @state.setter def state(self, value): - self._state[self.cursor_field] = value + self._state = value def parse_response( self, @@ -498,7 +497,7 @@ def parse_response( # Update state for each date slice (start_date), it ensures that previous date slices have been read # and can be skipped in next incremental sync - self.state = stream_slice[self.cursor_field] + self.state = {self.cursor_field: stream_slice[self.cursor_field]} for record in super().parse_response( response=response, stream_state=stream_state, stream_slice=stream_slice, next_page_token=next_page_token diff --git a/airbyte-integrations/connectors/source-snowflake/Dockerfile b/airbyte-integrations/connectors/source-snowflake/Dockerfile index b38b022ea00e..975edf0edf0c 100644 --- a/airbyte-integrations/connectors/source-snowflake/Dockerfile +++ b/airbyte-integrations/connectors/source-snowflake/Dockerfile @@ -16,5 +16,5 @@ ENV APPLICATION source-snowflake COPY --from=build /airbyte /airbyte -LABEL io.airbyte.version=0.1.26 +LABEL io.airbyte.version=0.1.27 LABEL io.airbyte.name=airbyte/source-snowflake 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 c0c066cc662f..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,15 +21,15 @@ 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.AirbyteCatalog; -import io.airbyte.protocol.models.AirbyteConnectionStatus; -import io.airbyte.protocol.models.AirbyteConnectionStatus.Status; -import io.airbyte.protocol.models.AirbyteMessage; -import io.airbyte.protocol.models.AirbyteRecordMessage; -import io.airbyte.protocol.models.CatalogHelpers; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.math.BigDecimal; import java.nio.file.Path; import java.sql.JDBCType; 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 05228207a2d2..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,14 +20,14 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.nio.file.Path; import java.util.HashMap; import java.util.Map; 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 b3085dc0f035..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 @@ -197,6 +197,14 @@ protected void initTests() { .addInsertValues("'NaN'", "'inf'", "'-inf'") .addExpectedValues("NaN", "Infinity", "-Infinity") .build()); + addDataTypeTestData( + TestDataHolder.builder() + .sourceType("NUMBER") + .airbyteType(JsonSchemaType.INTEGER) + .fullSourceDataType("NUMBER(38,0)") + .addInsertValues("9", "990", "9990", "999000", "999000000", "999000000000") + .addExpectedValues("9", "990", "9990", "999000", "999000000", "999000000000") + .build()); // Data Types for Text Strings addDataTypeTestData( 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 old mode 100755 new mode 100644 index 48a75e35c22b..1b6ee282ac3b --- 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,14 +16,14 @@ 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.CatalogHelpers; -import io.airbyte.protocol.models.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.ConnectorSpecification; -import io.airbyte.protocol.models.DestinationSyncMode; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; -import io.airbyte.protocol.models.SyncMode; +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.v0.SyncMode; import java.util.HashMap; import org.jooq.DSLContext; import org.jooq.SQLDialect; diff --git a/airbyte-integrations/connectors/source-tidb/src/test/java/io/airbyte/integrations/source/tidb/TiDBSourceTests.java b/airbyte-integrations/connectors/source-tidb/src/test/java/io/airbyte/integrations/source/tidb/TiDBSourceTests.java old mode 100755 new mode 100644 index d6c61dd9643b..4145179129d5 --- a/airbyte-integrations/connectors/source-tidb/src/test/java/io/airbyte/integrations/source/tidb/TiDBSourceTests.java +++ b/airbyte-integrations/connectors/source-tidb/src/test/java/io/airbyte/integrations/source/tidb/TiDBSourceTests.java @@ -10,7 +10,7 @@ import com.google.common.collect.ImmutableMap; import io.airbyte.commons.json.Jsons; import io.airbyte.db.jdbc.JdbcUtils; -import io.airbyte.protocol.models.AirbyteConnectionStatus; +import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import org.junit.jupiter.api.Test; import org.testcontainers.containers.GenericContainer; import org.testcontainers.utility.DockerImageName; 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-twilio/README.md b/airbyte-integrations/connectors/source-twilio/README.md index 0c7e77d42e8c..8590af3a1385 100644 --- a/airbyte-integrations/connectors/source-twilio/README.md +++ b/airbyte-integrations/connectors/source-twilio/README.md @@ -99,7 +99,8 @@ Customize `acceptance-test-config.yml` file to configure tests. See [Source Acce 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 +docker build . --no-cache -t airbyte/source-twilio:dev \ +&& python -m pytest integration_tests -p integration_tests.acceptance ``` To run your integration tests with docker diff --git a/airbyte-integrations/connectors/source-twilio/acceptance-test-config.yml b/airbyte-integrations/connectors/source-twilio/acceptance-test-config.yml index 8be1f83ce8bc..88bceea249d8 100644 --- a/airbyte-integrations/connectors/source-twilio/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-twilio/acceptance-test-config.yml @@ -19,12 +19,20 @@ acceptance_tests: expect_records: path: "integration_tests/expected_records.txt" empty_streams: + # TODO: SAT should be able to exclude expected records validation on the stream > field level + # to avoid exposures such as `auth_token` + # reference: https://github.com/airbytehq/airbyte/pull/20430 + - name: "accounts" + bypass_reason: "expected records could not be provided without field bypassing, skipping for now. Read #TODO above." + # - name: "alerts" bypass_reason: "alerts are transient - they emerge and disappear from time to time" - name: "dependent_phone_numbers" bypass_reason: "stream not filled yet" - name: "conference_participants" bypass_reason: "stream not filled yet" + - name: "keys" + bypass_reason: "stream not filled yet" - name: "available_phone_numbers_local" bypass_reason: "very volatile data" - name: "available_phone_numbers_mobile" @@ -40,14 +48,17 @@ acceptance_tests: configured_catalog_path: "integration_tests/incremental_catalog.json" future_state: future_state_path: "integration_tests/abnormal_state.json" + timeout_seconds: 3600 - config_path: "secrets/config_with_lookback.json" configured_catalog_path: "integration_tests/incremental_catalog.json" future_state: future_state_path: "integration_tests/abnormal_state.json" threshold_days: 30 + timeout_seconds: 3600 full_refresh: tests: - config_path: "secrets/config.json" # `constant_records_catalog.json` does not contain the available phone numbers streams, # as they may change on each request configured_catalog_path: "integration_tests/constant_records_catalog.json" + timeout_seconds: 3600 diff --git a/airbyte-integrations/connectors/source-twilio/integration_tests/constant_records_catalog.json b/airbyte-integrations/connectors/source-twilio/integration_tests/constant_records_catalog.json index 724bef534596..dd216974ab2c 100644 --- a/airbyte-integrations/connectors/source-twilio/integration_tests/constant_records_catalog.json +++ b/airbyte-integrations/connectors/source-twilio/integration_tests/constant_records_catalog.json @@ -1,14 +1,5 @@ { "streams": [ - { - "stream": { - "name": "accounts", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"] - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, { "stream": { "name": "addresses", diff --git a/airbyte-integrations/connectors/source-twilio/integration_tests/expected_records.txt b/airbyte-integrations/connectors/source-twilio/integration_tests/expected_records.txt index e90e7af2ffb1..251769f851a2 100644 --- a/airbyte-integrations/connectors/source-twilio/integration_tests/expected_records.txt +++ b/airbyte-integrations/connectors/source-twilio/integration_tests/expected_records.txt @@ -140,7 +140,6 @@ {"stream": "available_phone_number_countries", "data": {"country_code": "AU", "country": "Australia", "uri": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/AvailablePhoneNumbers/AU.json", "beta": false, "subresource_uris": {"local": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/AvailablePhoneNumbers/AU/Local.json", "toll_free": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/AvailablePhoneNumbers/AU/TollFree.json", "mobile": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/AvailablePhoneNumbers/AU/Mobile.json"}}, "emitted_at": 1664560271163} {"stream": "available_phone_number_countries", "data": {"country_code": "AR", "country": "Argentina", "uri": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/AvailablePhoneNumbers/AR.json", "beta": false, "subresource_uris": {"local": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/AvailablePhoneNumbers/AR/Local.json", "toll_free": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/AvailablePhoneNumbers/AR/TollFree.json"}}, "emitted_at": 1664560271163} {"stream": "incoming_phone_numbers", "data": {"sid": "PNe40bd7f3ac343b32fd51275d2d5b3dcc", "account_sid": "ACdade166c12e160e9ed0a6088226718fb", "friendly_name": "2FA Number - PLEASE DO NOT TOUCH. Use another number for anythin", "phone_number": "+12056561170", "voice_url": "https://handler.twilio.com/twiml/EH7af811843f38093d724a5c2e80b3eabe", "voice_method": "POST", "voice_fallback_url": "", "voice_fallback_method": "POST", "voice_caller_id_lookup": false, "date_created": "2020-12-11T04:28:40Z", "date_updated": "2022-09-23T14:47:41Z", "sms_url": "https://webhooks.twilio.com/v1/Accounts/ACdade166c12e160e9ed0a6088226718fb/Flows/FWbd726b7110b21294a9f27a47f4ab0080", "sms_method": "POST", "sms_fallback_url": "", "sms_fallback_method": "POST", "address_requirements": "none", "beta": false, "capabilities": {"voice": true, "sms": true, "mms": true}, "status_callback": "", "status_callback_method": "POST", "api_version": "2010-04-01", "voice_application_sid": "", "sms_application_sid": "", "origin": "twilio", "trunk_sid": null, "emergency_status": "Active", "emergency_address_sid": null, "emergency_address_status": "unregistered", "address_sid": null, "identity_sid": null, "bundle_sid": null, "uri": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/IncomingPhoneNumbers/PNe40bd7f3ac343b32fd51275d2d5b3dcc.json", "status": "in-use"}, "emitted_at": 1655893245291} -{"stream": "keys", "data": {"date_updated": "2021-02-01T07:30:21Z", "date_created": "2021-02-01T07:30:21Z", "friendly_name": "Studio API Key", "sid": "SK60085e9cfc3d94aa1b987b25c78067a9"}, "emitted_at": 1655893247168} {"stream": "calls", "data": {"date_updated": "2022-06-17T22:28:34Z", "price_unit": "USD", "parent_call_sid": null, "caller_name": null, "duration": 61, "from": "+15312726629", "to": "+12056561170", "annotation": null, "answered_by": null, "sid": "CAe71d3c7533543b5c81b1be3fc5affa2b", "queue_time": 0, "price": -0.017, "api_version": "2010-04-01", "status": "completed", "direction": "inbound", "start_time": "2022-06-17T22:27:33Z", "date_created": "2022-06-17T22:27:32Z", "from_formatted": "(531) 272-6629", "group_sid": null, "trunk_sid": "", "forwarded_from": "+12056561170", "uri": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAe71d3c7533543b5c81b1be3fc5affa2b.json", "account_sid": "ACdade166c12e160e9ed0a6088226718fb", "end_time": "2022-06-17T22:28:34Z", "to_formatted": "(205) 656-1170", "phone_number_sid": "PNe40bd7f3ac343b32fd51275d2d5b3dcc", "subresource_uris": {"feedback": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAe71d3c7533543b5c81b1be3fc5affa2b/Feedback.json", "notifications": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAe71d3c7533543b5c81b1be3fc5affa2b/Notifications.json", "recordings": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAe71d3c7533543b5c81b1be3fc5affa2b/Recordings.json", "streams": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAe71d3c7533543b5c81b1be3fc5affa2b/Streams.json", "payments": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAe71d3c7533543b5c81b1be3fc5affa2b/Payments.json", "siprec": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAe71d3c7533543b5c81b1be3fc5affa2b/Siprec.json", "events": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAe71d3c7533543b5c81b1be3fc5affa2b/Events.json", "feedback_summaries": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/FeedbackSummary.json", "user_defined_messages": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAe71d3c7533543b5c81b1be3fc5affa2b/UserDefinedMessages.json", "user_defined_message_subscriptions": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAe71d3c7533543b5c81b1be3fc5affa2b/UserDefinedMessageSubscriptions.json"}}, "emitted_at": 1655893249727} {"stream": "calls", "data": {"date_updated": "2022-06-17T13:36:17Z", "price_unit": "USD", "parent_call_sid": null, "caller_name": null, "duration": 96, "from": "+17372040136", "to": "+12056561170", "annotation": null, "answered_by": null, "sid": "CA0a47223735162e1a7df2738327bda2ab", "queue_time": 0, "price": -0.017, "api_version": "2010-04-01", "status": "completed", "direction": "inbound", "start_time": "2022-06-17T13:34:41Z", "date_created": "2022-06-17T13:34:41Z", "from_formatted": "(737) 204-0136", "group_sid": null, "trunk_sid": "", "forwarded_from": "+12056561170", "uri": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CA0a47223735162e1a7df2738327bda2ab.json", "account_sid": "ACdade166c12e160e9ed0a6088226718fb", "end_time": "2022-06-17T13:36:17Z", "to_formatted": "(205) 656-1170", "phone_number_sid": "PNe40bd7f3ac343b32fd51275d2d5b3dcc", "subresource_uris": {"feedback": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CA0a47223735162e1a7df2738327bda2ab/Feedback.json", "notifications": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CA0a47223735162e1a7df2738327bda2ab/Notifications.json", "recordings": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CA0a47223735162e1a7df2738327bda2ab/Recordings.json", "streams": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CA0a47223735162e1a7df2738327bda2ab/Streams.json", "payments": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CA0a47223735162e1a7df2738327bda2ab/Payments.json", "siprec": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CA0a47223735162e1a7df2738327bda2ab/Siprec.json", "events": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CA0a47223735162e1a7df2738327bda2ab/Events.json", "feedback_summaries": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/FeedbackSummary.json", "user_defined_messages": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CA0a47223735162e1a7df2738327bda2ab/UserDefinedMessages.json", "user_defined_message_subscriptions": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CA0a47223735162e1a7df2738327bda2ab/UserDefinedMessageSubscriptions.json"}}, "emitted_at": 1655893249739} {"stream": "calls", "data": {"date_updated": "2022-06-16T20:02:43Z", "price_unit": "USD", "parent_call_sid": null, "caller_name": null, "duration": 124, "from": "+17372040136", "to": "+12056561170", "annotation": null, "answered_by": null, "sid": "CAace5c8813c499253bbbff29ad0da0ccb", "queue_time": 0, "price": -0.0255, "api_version": "2010-04-01", "status": "completed", "direction": "inbound", "start_time": "2022-06-16T20:00:39Z", "date_created": "2022-06-16T20:00:39Z", "from_formatted": "(737) 204-0136", "group_sid": null, "trunk_sid": "", "forwarded_from": "+12056561170", "uri": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAace5c8813c499253bbbff29ad0da0ccb.json", "account_sid": "ACdade166c12e160e9ed0a6088226718fb", "end_time": "2022-06-16T20:02:43Z", "to_formatted": "(205) 656-1170", "phone_number_sid": "PNe40bd7f3ac343b32fd51275d2d5b3dcc", "subresource_uris": {"feedback": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAace5c8813c499253bbbff29ad0da0ccb/Feedback.json", "notifications": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAace5c8813c499253bbbff29ad0da0ccb/Notifications.json", "recordings": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAace5c8813c499253bbbff29ad0da0ccb/Recordings.json", "streams": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAace5c8813c499253bbbff29ad0da0ccb/Streams.json", "payments": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAace5c8813c499253bbbff29ad0da0ccb/Payments.json", "siprec": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAace5c8813c499253bbbff29ad0da0ccb/Siprec.json", "events": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAace5c8813c499253bbbff29ad0da0ccb/Events.json", "feedback_summaries": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/FeedbackSummary.json", "user_defined_messages": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAace5c8813c499253bbbff29ad0da0ccb/UserDefinedMessages.json", "user_defined_message_subscriptions": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls/CAace5c8813c499253bbbff29ad0da0ccb/UserDefinedMessageSubscriptions.json"}}, "emitted_at": 1655893249745} @@ -524,5 +523,3 @@ {"stream": "usage_triggers", "data": {"sid": "UT33bd2bf238d94863a609133da897d676", "account_sid": "ACdade166c12e160e9ed0a6088226718fb", "date_created": "2020-11-25T10:02:19Z", "date_updated": "2020-11-25T10:02:19Z", "date_fired": null, "friendly_name": null, "usage_category": "sms", "trigger_by": "usage", "recurring": "", "trigger_value": 1000.0, "current_value": 130.0, "callback_url": "http://www.example.com/", "callback_method": "POST", "usage_record_uri": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Usage/Records.json?Category=sms", "uri": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Usage/Triggers/UT33bd2bf238d94863a609133da897d676.json", "api_version": "2010-04-01"}, "emitted_at": 1655893322691} {"stream": "usage_triggers", "data": {"sid": "UT3c3c157dcaf347829d5a0f75e97b572e", "account_sid": "ACdade166c12e160e9ed0a6088226718fb", "date_created": "2020-11-25T10:02:34Z", "date_updated": "2020-11-25T10:02:34Z", "date_fired": null, "friendly_name": null, "usage_category": "sms", "trigger_by": "usage", "recurring": "", "trigger_value": 999.0, "current_value": 130.0, "callback_url": "http://www.example.com/", "callback_method": "POST", "usage_record_uri": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Usage/Records.json?Category=sms", "uri": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Usage/Triggers/UT3c3c157dcaf347829d5a0f75e97b572e.json", "api_version": "2010-04-01"}, "emitted_at": 1655893322698} {"stream": "usage_triggers", "data": {"sid": "UT7170996eff504647ac9f215222ee296f", "account_sid": "ACdade166c12e160e9ed0a6088226718fb", "date_created": "2020-11-25T10:02:41Z", "date_updated": "2020-11-25T10:02:41Z", "date_fired": null, "friendly_name": null, "usage_category": "sms", "trigger_by": "usage", "recurring": "", "trigger_value": 943.0, "current_value": 130.0, "callback_url": "http://www.example.com/", "callback_method": "POST", "usage_record_uri": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Usage/Records.json?Category=sms", "uri": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Usage/Triggers/UT7170996eff504647ac9f215222ee296f.json", "api_version": "2010-04-01"}, "emitted_at": 1655893322701} -{"stream": "accounts", "data": {"status": "active", "date_updated": "2022-07-06T23:12:05Z", "auth_token": "8fe66dc0a454921da51492e4563121d6", "friendly_name": "My first Twilio project", "owner_account_sid": "ACdade166c12e160e9ed0a6088226718fb", "uri": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb.json", "sid": "ACdade166c12e160e9ed0a6088226718fb", "date_created": "2020-11-17T04:08:53Z", "type": "Full", "subresource_uris": {"addresses": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Addresses.json", "conferences": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Conferences.json", "signing_keys": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/SigningKeys.json", "transcriptions": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Transcriptions.json", "connect_apps": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/ConnectApps.json", "sip": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/SIP.json", "authorized_connect_apps": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/AuthorizedConnectApps.json", "usage": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Usage.json", "keys": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Keys.json", "applications": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Applications.json", "recordings": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Recordings.json", "short_codes": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/SMS/ShortCodes.json", "calls": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Calls.json", "notifications": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Notifications.json", "incoming_phone_numbers": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/IncomingPhoneNumbers.json", "queues": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Queues.json", "messages": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Messages.json", "outgoing_caller_ids": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/OutgoingCallerIds.json", "available_phone_numbers": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/AvailablePhoneNumbers.json", "balance": "/2010-04-01/Accounts/ACdade166c12e160e9ed0a6088226718fb/Balance.json"}}, "emitted_at": 1669128692054} -{"stream": "accounts", "data": {"status": "active", "date_updated": "2021-02-05T20:18:45Z", "auth_token": "0b7ffb8fa15e8918dee42f5d53c6da7e", "friendly_name": "SubAccount Created at 2020-11-25 01:36 AM", "owner_account_sid": "ACdade166c12e160e9ed0a6088226718fb", "uri": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee.json", "sid": "AC4cac489c46197c9ebc91c840120a4dee", "date_created": "2020-11-25T09:36:42Z", "type": "Full", "subresource_uris": {"addresses": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/Addresses.json", "conferences": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/Conferences.json", "signing_keys": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/SigningKeys.json", "transcriptions": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/Transcriptions.json", "connect_apps": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/ConnectApps.json", "sip": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/SIP.json", "authorized_connect_apps": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/AuthorizedConnectApps.json", "usage": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/Usage.json", "keys": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/Keys.json", "applications": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/Applications.json", "recordings": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/Recordings.json", "short_codes": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/SMS/ShortCodes.json", "calls": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/Calls.json", "notifications": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/Notifications.json", "incoming_phone_numbers": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/IncomingPhoneNumbers.json", "queues": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/Queues.json", "messages": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/Messages.json", "outgoing_caller_ids": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/OutgoingCallerIds.json", "available_phone_numbers": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/AvailablePhoneNumbers.json", "balance": "/2010-04-01/Accounts/AC4cac489c46197c9ebc91c840120a4dee/Balance.json"}}, "emitted_at": 1669128692067} diff --git a/airbyte-integrations/connectors/source-twilio/setup.py b/airbyte-integrations/connectors/source-twilio/setup.py index eb51656ac179..ad8d3ad102c4 100644 --- a/airbyte-integrations/connectors/source-twilio/setup.py +++ b/airbyte-integrations/connectors/source-twilio/setup.py @@ -7,8 +7,8 @@ MAIN_REQUIREMENTS = [ "airbyte-cdk", - "pendulum~=2.1", - "requests~=2.25", + "pendulum", + "requests", ] TEST_REQUIREMENTS = ["pytest~=6.1", "pytest-mock", "requests_mock", "freezegun"] diff --git a/airbyte-integrations/connectors/source-woocommerce/.dockerignore b/airbyte-integrations/connectors/source-woocommerce/.dockerignore index 9a6ab7d1183c..2b098e9b3203 100644 --- a/airbyte-integrations/connectors/source-woocommerce/.dockerignore +++ b/airbyte-integrations/connectors/source-woocommerce/.dockerignore @@ -1,6 +1,5 @@ * !Dockerfile -!Dockerfile.test !main.py !source_woocommerce !setup.py diff --git a/airbyte-integrations/connectors/source-woocommerce/Dockerfile b/airbyte-integrations/connectors/source-woocommerce/Dockerfile index 1d8c09a77bd8..d0b8c2b91359 100644 --- a/airbyte-integrations/connectors/source-woocommerce/Dockerfile +++ b/airbyte-integrations/connectors/source-woocommerce/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_woocommerce ./source_woocommerce + +# 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_woocommerce ./source_woocommerce ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.2 +LABEL io.airbyte.version=0.2.0 LABEL io.airbyte.name=airbyte/source-woocommerce diff --git a/airbyte-integrations/connectors/source-woocommerce/README.md b/airbyte-integrations/connectors/source-woocommerce/README.md index 1f07e5a5437e..2252aa7c689e 100644 --- a/airbyte-integrations/connectors/source-woocommerce/README.md +++ b/airbyte-integrations/connectors/source-woocommerce/README.md @@ -1,34 +1,10 @@ # Woocommerce Source -This is the repository for the Woocommerce source connector, written in Python. +This is the repository for the Woocommerce configuration based source connector. For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.io/integrations/sources/woocommerce). ## 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/woocommerce) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_woocommerce/spec.json` file. +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_woocommerce/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 woocommerce 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-woocommerce:dev discov docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-woocommerce: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-woocommerce/__init__.py b/airbyte-integrations/connectors/source-woocommerce/__init__.py new file mode 100644 index 000000000000..1100c1c58cf5 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/__init__.py @@ -0,0 +1,3 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# diff --git a/airbyte-integrations/connectors/source-woocommerce/acceptance-test-config.yml b/airbyte-integrations/connectors/source-woocommerce/acceptance-test-config.yml index 3fba9ce508e7..63f5e87248d4 100644 --- a/airbyte-integrations/connectors/source-woocommerce/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-woocommerce/acceptance-test-config.yml @@ -1,24 +1,39 @@ -# See [Source Acceptance Tests](https://docs.airbyte.com/contributing-to-airbyte/building-new-connector/source-acceptance-tests.md) +# 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-woocommerce:dev -tests: +acceptance_tests: spec: - - spec_path: "source_woocommerce/spec.json" + tests: + - spec_path: "source_woocommerce/spec.yaml" 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" + timeout_seconds: 300 discovery: - - config_path: "secrets/config.json" + tests: + - config_path: "secrets/config.json" + backward_compatibility_tests_config: + disable_for_version: "0.1.2" basic_read: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - empty_streams: [] - incremental: # TODO if your connector does not implement incremental sync, remove this block - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - future_state_path: "integration_tests/abnormal_state.json" + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + timeout_seconds: 3600 + expect_records: + path: "integration_tests/expected_records.txt" + extra_fields: no + exact_order: no + extra_records: no + 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: - - 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" \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-woocommerce/acceptance-test-docker.sh b/airbyte-integrations/connectors/source-woocommerce/acceptance-test-docker.sh old mode 100644 new mode 100755 index 1425ff74f151..c51577d10690 --- a/airbyte-integrations/connectors/source-woocommerce/acceptance-test-docker.sh +++ b/airbyte-integrations/connectors/source-woocommerce/acceptance-test-docker.sh @@ -1,7 +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-woocommerce/integration_tests/__init__.py b/airbyte-integrations/connectors/source-woocommerce/integration_tests/__init__.py index e69de29bb2d1..1100c1c58cf5 100644 --- a/airbyte-integrations/connectors/source-woocommerce/integration_tests/__init__.py +++ b/airbyte-integrations/connectors/source-woocommerce/integration_tests/__init__.py @@ -0,0 +1,3 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# diff --git a/airbyte-integrations/connectors/source-woocommerce/integration_tests/abnormal_state.json b/airbyte-integrations/connectors/source-woocommerce/integration_tests/abnormal_state.json index 5e665f64dd8e..77a471581804 100644 --- a/airbyte-integrations/connectors/source-woocommerce/integration_tests/abnormal_state.json +++ b/airbyte-integrations/connectors/source-woocommerce/integration_tests/abnormal_state.json @@ -1,11 +1,46 @@ -{ - "customers": { - "date_created": "2030-07-30T22:16:46" +[ + { + "type": "STREAM", + "stream": { + "stream_state": { + "date_modified_gmt": "2100-01-01T00:00:00" + }, + "stream_descriptor": { + "name": "coupons" + } + } }, - "orders": { - "date_modified": "2050-07-30T22:16:46" + { + "type": "STREAM", + "stream": { + "stream_state": { + "date_modified_gmt": "2100-01-01T00:00:00" + }, + "stream_descriptor": { + "name": "orders" + } + } }, - "coupons": { - "date_modified": "2060-07-30T22:16:46" + { + "type": "STREAM", + "stream": { + "stream_state": { + "date_modified_gmt": "2100-01-01T00:00:00" + }, + "stream_descriptor": { + "name": "products" + } + } + }, + { + "type": "STREAM", + "stream": { + "stream_state": { + "date_created_gmt": "2100-01-01T00:00:00" + }, + "stream_descriptor": { + "name": "product_reviews" + } + } } -} +] diff --git a/airbyte-integrations/connectors/source-woocommerce/integration_tests/catalog.json b/airbyte-integrations/connectors/source-woocommerce/integration_tests/catalog.json deleted file mode 100644 index bc7ce8804a76..000000000000 --- a/airbyte-integrations/connectors/source-woocommerce/integration_tests/catalog.json +++ /dev/null @@ -1,905 +0,0 @@ -{ - "streams": [ - { - "name": "customers", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "type": ["null", "integer"] - }, - "date_created": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_created_gmt": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_modified": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_modified_gmt": { - "type": ["null", "string"], - "format": "date-time" - }, - "email": { - "type": ["null", "string"] - }, - "first_name": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "role": { - "type": ["null", "string"] - }, - "username": { - "type": ["null", "string"] - }, - "billing": { - "type": ["null", "object"], - "properties": { - "first_name": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "company": { - "type": ["null", "string"] - }, - "address_1": { - "type": ["null", "string"] - }, - "address_2": { - "type": ["null", "string"] - }, - "city": { - "type": ["null", "string"] - }, - "state": { - "type": ["null", "string"] - }, - "postcode": { - "type": ["null", "string"] - }, - "country": { - "type": ["null", "string"] - }, - "email": { - "type": ["null", "string"] - }, - "phone": { - "type": ["null", "string"] - } - } - }, - "shipping": { - "type": ["null", "object"], - "properties": { - "first_name": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "company": { - "type": ["null", "string"] - }, - "address_1": { - "type": ["null", "string"] - }, - "address_2": { - "type": ["null", "string"] - }, - "city": { - "type": ["null", "string"] - }, - "state": { - "type": ["null", "string"] - }, - "postcode": { - "type": ["null", "string"] - }, - "country": { - "type": ["null", "string"] - } - } - }, - "is_paying_customer": { - "type": ["null", "boolean"] - }, - "avatar_url": { - "type": ["null", "string"] - }, - "meta_data": { - "type": ["null", "array"] - }, - "shop_url": { - "type": ["null", "string"] - }, - "_links": { - "type": ["null", "object"], - "properties": { - "self": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "href": { - "type": ["null", "string"] - } - } - } - }, - "collection": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "href": { - "type": ["null", "string"] - } - } - } - } - } - } - } - } - }, - { - "name": "coupons", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "type": ["null", "integer"] - }, - "code": { - "type": ["null", "string"] - }, - "amount": { - "type": ["null", "string"] - }, - "date_created": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_created_gmt": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_modified": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_modified_gmt": { - "type": ["null", "string"], - "format": "date-time" - }, - "discount_type": { - "type": ["null", "string"] - }, - "description": { - "type": ["null", "string"] - }, - "date_expires": { - "type": ["null", "string"] - }, - "date_expires_gmt": { - "type": ["null", "string"] - }, - "usage_count": { - "type": ["null", "integer"] - }, - "individual_use": { - "type": ["null", "boolean"] - }, - "product_ids": { - "type": ["null", "array"] - }, - "excluded_product_ids": { - "type": ["null", "array"] - }, - "usage_limit": { - "type": ["null", "integer"] - }, - "usage_limit_per_user": { - "type": ["null", "integer"] - }, - "limit_usage_to_x_items": { - "type": ["null", "integer"] - }, - "free_shipping": { - "type": ["null", "boolean"] - }, - "product_categories": { - "type": ["null", "array"] - }, - "excluded_product_categories": { - "type": ["null", "array"] - }, - "exclude_sale_items": { - "type": ["null", "boolean"] - }, - "minimum_amount": { - "type": ["null", "string"] - }, - "maximum_amount": { - "type": ["null", "string"] - }, - "email_restrictions": { - "type": ["null", "array"] - }, - "used_by": { - "type": ["null", "array"] - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": {} - } - } - }, - "shop_url": { - "type": ["null", "string"] - }, - "_links": { - "type": ["null", "object"], - "properties": { - "self": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "href": { - "type": ["null", "string"] - } - } - } - }, - "collection": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "href": { - "type": ["null", "string"] - } - } - } - } - } - } - } - } - }, - { - "name": "orders", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "type": ["null", "integer"] - }, - "parent_id": { - "type": ["null", "integer"] - }, - "number": { - "type": ["null", "string"] - }, - "order_key": { - "type": ["null", "string"] - }, - "created_via": { - "type": ["null", "string"] - }, - "version": { - "type": ["null", "string"] - }, - "status": { - "type": ["null", "string"] - }, - "currency": { - "type": ["null", "string"] - }, - "date_created": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_created_gmt": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_modified": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_modified_gmt": { - "type": ["null", "string"], - "format": "date-time" - }, - "discount_total": { - "type": ["null", "string"] - }, - "discount_tax": { - "type": ["null", "string"] - }, - "shipping_total": { - "type": ["null", "string"] - }, - "shipping_tax": { - "type": ["null", "string"] - }, - "cart_tax": { - "type": ["null", "string"] - }, - "total": { - "type": ["null", "string"] - }, - "total_tax": { - "type": ["null", "string"] - }, - "prices_include_tax": { - "type": ["null", "boolean"] - }, - "customer_id": { - "type": ["null", "integer"] - }, - "customer_ip_address": { - "type": ["null", "string"] - }, - "customer_user_agent": { - "type": ["null", "string"] - }, - "customer_note": { - "type": ["null", "string"] - }, - "billing": { - "type": ["null", "object"], - "properties": { - "first_name": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "company": { - "type": ["null", "string"] - }, - "address_1": { - "type": ["null", "string"] - }, - "address_2": { - "type": ["null", "string"] - }, - "city": { - "type": ["null", "string"] - }, - "state": { - "type": ["null", "string"] - }, - "postcode": { - "type": ["null", "string"] - }, - "country": { - "type": ["null", "string"] - }, - "email": { - "type": ["null", "string"] - }, - "phone": { - "type": ["null", "string"] - } - } - }, - "shipping": { - "type": ["null", "object"], - "properties": { - "first_name": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "company": { - "type": ["null", "string"] - }, - "address_1": { - "type": ["null", "string"] - }, - "address_2": { - "type": ["null", "string"] - }, - "city": { - "type": ["null", "string"] - }, - "state": { - "type": ["null", "string"] - }, - "postcode": { - "type": ["null", "string"] - }, - "country": { - "type": ["null", "string"] - } - } - }, - "payment_method": { - "type": ["null", "string"] - }, - "payment_method_title": { - "type": ["null", "string"] - }, - "transaction_id": { - "type": ["null", "string"] - }, - "date_paid": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_paid_gmt": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_completed": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_completed_gmt": { - "type": ["null", "string"], - "format": "date-time" - }, - "cart_hash": { - "type": ["null", "string"] - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - }, - "line_items": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "name": { - "type": ["null", "string"] - }, - "product_id": { - "type": ["null", "integer"] - }, - "variation_id": { - "type": ["null", "integer"] - }, - "quantity": { - "type": ["null", "number"] - }, - "tax_class": { - "type": ["null", "string"] - }, - "subtotal": { - "type": ["null", "string"] - }, - "subtotal_tax": { - "type": ["null", "string"] - }, - "total": { - "type": ["null", "string"] - }, - "total_tax": { - "type": ["null", "string"] - }, - "taxes": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "rate_code": { - "type": ["null", "string"] - }, - "rate_id": { - "type": ["null", "string"] - }, - "label": { - "type": ["null", "string"] - }, - "compound": { - "type": ["null", "boolean"] - }, - "tax_total": { - "type": ["null", "string"] - }, - "shipping_tax_total": { - "type": ["null", "string"] - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - } - } - } - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - }, - "sku": { - "type": ["null", "string"] - }, - "price": { - "type": ["null", "number"] - } - } - } - }, - "tax_lines": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "rate_code": { - "type": ["null", "string"] - }, - "rate_id": { - "type": ["null", "string"] - }, - "label": { - "type": ["null", "string"] - }, - "compound": { - "type": ["null", "boolean"] - }, - "tax_total": { - "type": ["null", "string"] - }, - "shipping_tax_total": { - "type": ["null", "string"] - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - } - } - } - }, - "shipping_lines": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "method_title": { - "type": ["null", "string"] - }, - "method_id": { - "type": ["null", "string"] - }, - "total": { - "type": ["null", "string"] - }, - "total_tax": { - "type": ["null", "string"] - }, - "taxes": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "rate_code": { - "type": ["null", "string"] - }, - "rate_id": { - "type": ["null", "string"] - }, - "label": { - "type": ["null", "string"] - }, - "compound": { - "type": ["null", "boolean"] - }, - "tax_total": { - "type": ["null", "string"] - }, - "shipping_tax_total": { - "type": ["null", "string"] - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - } - } - } - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - } - } - } - }, - "fee_lines": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "name": { - "type": ["null", "string"] - }, - "tax_class": { - "type": ["null", "string"] - }, - "tax_status": { - "type": ["null", "string"] - }, - "total": { - "type": ["null", "string"] - }, - "total_tax": { - "type": ["null", "string"] - }, - "taxes": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "rate_code": { - "type": ["null", "string"] - }, - "rate_id": { - "type": ["null", "string"] - }, - "label": { - "type": ["null", "string"] - }, - "compound": { - "type": ["null", "boolean"] - }, - "tax_total": { - "type": ["null", "string"] - }, - "shipping_tax_total": { - "type": ["null", "string"] - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - } - } - } - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - } - } - } - }, - "coupon_lines": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "code": { - "type": ["null", "string"] - }, - "discount": { - "type": ["null", "string"] - }, - "discount_tax": { - "type": ["null", "string"] - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": {} - } - } - } - } - } - }, - "refunds": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "reason": { - "type": ["null", "string"] - }, - "total": { - "type": ["null", "string"] - } - } - } - }, - "set_paid": { - "type": ["null", "boolean"] - }, - "shop_url": { - "type": ["null", "string"] - }, - "_links": { - "type": ["null", "object"], - "properties": { - "self": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "href": { - "type": ["null", "string"] - } - } - } - }, - "collection": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "href": { - "type": ["null", "string"] - } - } - } - } - } - } - } - } - } - ] -} diff --git a/airbyte-integrations/connectors/source-woocommerce/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-woocommerce/integration_tests/configured_catalog.json index 819cb5dc81f6..4a715b7ff302 100644 --- a/airbyte-integrations/connectors/source-woocommerce/integration_tests/configured_catalog.json +++ b/airbyte-integrations/connectors/source-woocommerce/integration_tests/configured_catalog.json @@ -2,941 +2,190 @@ "streams": [ { "stream": { - "name": "customers", - "json_schema": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "date_created": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_created_gmt": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_modified": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_modified_gmt": { - "type": ["null", "string"], - "format": "date-time" - }, - "email": { - "type": ["null", "string"] - }, - "first_name": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "role": { - "type": ["null", "string"] - }, - "username": { - "type": ["null", "string"] - }, - "billing": { - "type": ["null", "object"], - "properties": { - "first_name": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "company": { - "type": ["null", "string"] - }, - "address_1": { - "type": ["null", "string"] - }, - "address_2": { - "type": ["null", "string"] - }, - "city": { - "type": ["null", "string"] - }, - "state": { - "type": ["null", "string"] - }, - "postcode": { - "type": ["null", "string"] - }, - "country": { - "type": ["null", "string"] - }, - "email": { - "type": ["null", "string"] - }, - "phone": { - "type": ["null", "string"] - } - } - }, - "shipping": { - "type": ["null", "object"], - "properties": { - "first_name": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "company": { - "type": ["null", "string"] - }, - "address_1": { - "type": ["null", "string"] - }, - "address_2": { - "type": ["null", "string"] - }, - "city": { - "type": ["null", "string"] - }, - "state": { - "type": ["null", "string"] - }, - "postcode": { - "type": ["null", "string"] - }, - "country": { - "type": ["null", "string"] - } - } - }, - "is_paying_customer": { - "type": ["null", "boolean"] - }, - "avatar_url": { - "type": ["null", "string"] - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - }, - "shop_url": { - "type": ["null", "string"] - }, - "_links": { - "type": ["null", "object"], - "properties": { - "self": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "href": { - "type": ["null", "string"] - } - } - } - }, - "collection": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "href": { - "type": ["null", "string"] - } - } - } - } - } - } - } - }, - "supported_sync_modes": ["incremental", "full_refresh"], - "source_defined_cursor": true, - "default_cursor_field": ["date_created"] + "name": "coupons", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"] }, "sync_mode": "incremental", - "cursor_field": ["date_created"], "destination_sync_mode": "append" }, + { + "stream": { + "name": "customers", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "order_notes", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, { "stream": { "name": "orders", - "json_schema": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "parent_id": { - "type": ["null", "integer"] - }, - "number": { - "type": ["null", "string"] - }, - "order_key": { - "type": ["null", "string"] - }, - "created_via": { - "type": ["null", "string"] - }, - "version": { - "type": ["null", "string"] - }, - "status": { - "type": ["null", "string"] - }, - "currency": { - "type": ["null", "string"] - }, - "date_created": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_created_gmt": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_modified": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_modified_gmt": { - "type": ["null", "string"], - "format": "date-time" - }, - "discount_total": { - "type": ["null", "string"] - }, - "discount_tax": { - "type": ["null", "string"] - }, - "shipping_total": { - "type": ["null", "string"] - }, - "shipping_tax": { - "type": ["null", "string"] - }, - "cart_tax": { - "type": ["null", "string"] - }, - "total": { - "type": ["null", "string"] - }, - "total_tax": { - "type": ["null", "string"] - }, - "prices_include_tax": { - "type": ["null", "boolean"] - }, - "customer_id": { - "type": ["null", "integer"] - }, - "customer_ip_address": { - "type": ["null", "string"] - }, - "customer_user_agent": { - "type": ["null", "string"] - }, - "customer_note": { - "type": ["null", "string"] - }, - "billing": { - "type": ["null", "object"], - "properties": { - "first_name": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "company": { - "type": ["null", "string"] - }, - "address_1": { - "type": ["null", "string"] - }, - "address_2": { - "type": ["null", "string"] - }, - "city": { - "type": ["null", "string"] - }, - "state": { - "type": ["null", "string"] - }, - "postcode": { - "type": ["null", "string"] - }, - "country": { - "type": ["null", "string"] - }, - "email": { - "type": ["null", "string"] - }, - "phone": { - "type": ["null", "string"] - } - } - }, - "shipping": { - "type": ["null", "object"], - "properties": { - "first_name": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "company": { - "type": ["null", "string"] - }, - "address_1": { - "type": ["null", "string"] - }, - "address_2": { - "type": ["null", "string"] - }, - "city": { - "type": ["null", "string"] - }, - "state": { - "type": ["null", "string"] - }, - "postcode": { - "type": ["null", "string"] - }, - "country": { - "type": ["null", "string"] - } - } - }, - "payment_method": { - "type": ["null", "string"] - }, - "payment_method_title": { - "type": ["null", "string"] - }, - "transaction_id": { - "type": ["null", "string"] - }, - "date_paid": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_paid_gmt": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_completed": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_completed_gmt": { - "type": ["null", "string"], - "format": "date-time" - }, - "cart_hash": { - "type": ["null", "string"] - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - }, - "shop_url": { - "type": ["null", "string"] - }, - "line_items": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "name": { - "type": ["null", "string"] - }, - "product_id": { - "type": ["null", "integer"] - }, - "variation_id": { - "type": ["null", "integer"] - }, - "quantity": { - "type": ["null", "number"] - }, - "tax_class": { - "type": ["null", "string"] - }, - "subtotal": { - "type": ["null", "string"] - }, - "subtotal_tax": { - "type": ["null", "string"] - }, - "total": { - "type": ["null", "string"] - }, - "total_tax": { - "type": ["null", "string"] - }, - "taxes": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "rate_code": { - "type": ["null", "string"] - }, - "rate_id": { - "type": ["null", "string"] - }, - "label": { - "type": ["null", "string"] - }, - "compound": { - "type": ["null", "boolean"] - }, - "tax_total": { - "type": ["null", "string"] - }, - "shipping_tax_total": { - "type": ["null", "string"] - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - } - } - } - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - }, - "sku": { - "type": ["null", "string"] - }, - "price": { - "type": ["null", "number"] - } - } - } - }, - "tax_lines": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "rate_code": { - "type": ["null", "string"] - }, - "rate_id": { - "type": ["null", "string"] - }, - "label": { - "type": ["null", "string"] - }, - "compound": { - "type": ["null", "boolean"] - }, - "tax_total": { - "type": ["null", "string"] - }, - "shipping_tax_total": { - "type": ["null", "string"] - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - } - } - } - }, - "shipping_lines": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "method_title": { - "type": ["null", "string"] - }, - "method_id": { - "type": ["null", "string"] - }, - "total": { - "type": ["null", "string"] - }, - "total_tax": { - "type": ["null", "string"] - }, - "taxes": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "rate_code": { - "type": ["null", "string"] - }, - "rate_id": { - "type": ["null", "string"] - }, - "label": { - "type": ["null", "string"] - }, - "compound": { - "type": ["null", "boolean"] - }, - "tax_total": { - "type": ["null", "string"] - }, - "shipping_tax_total": { - "type": ["null", "string"] - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - } - } - } - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - } - } - } - }, - "fee_lines": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "name": { - "type": ["null", "string"] - }, - "tax_class": { - "type": ["null", "string"] - }, - "tax_status": { - "type": ["null", "string"] - }, - "total": { - "type": ["null", "string"] - }, - "total_tax": { - "type": ["null", "string"] - }, - "taxes": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "rate_code": { - "type": ["null", "string"] - }, - "rate_id": { - "type": ["null", "string"] - }, - "label": { - "type": ["null", "string"] - }, - "compound": { - "type": ["null", "boolean"] - }, - "tax_total": { - "type": ["null", "string"] - }, - "shipping_tax_total": { - "type": ["null", "string"] - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - } - } - } - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - } - } - } - }, - "coupon_lines": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "code": { - "type": ["null", "string"] - }, - "discount": { - "type": ["null", "string"] - }, - "discount_tax": { - "type": ["null", "string"] - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - } - } - } - }, - "refunds": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "reason": { - "type": ["null", "string"] - }, - "total": { - "type": ["null", "string"] - } - } - } - }, - "set_paid": { - "type": ["null", "boolean"] - }, - "_links": { - "type": ["null", "object"], - "properties": { - "self": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "href": { - "type": ["null", "string"] - } - } - } - }, - "collection": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "href": { - "type": ["null", "string"] - } - } - } - } - } - } - } - }, - "supported_sync_modes": ["incremental", "full_refresh"], - "source_defined_cursor": true, - "default_cursor_field": ["date_modified"] + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"] }, "sync_mode": "incremental", - "cursor_field": ["date_modified"], "destination_sync_mode": "append" }, { "stream": { - "name": "coupons", - "json_schema": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "code": { - "type": ["null", "string"] - }, - "amount": { - "type": ["null", "string"] - }, - "date_created": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_created_gmt": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_modified": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_modified_gmt": { - "type": ["null", "string"], - "format": "date-time" - }, - "discount_type": { - "type": ["null", "string"] - }, - "description": { - "type": ["null", "string"] - }, - "date_expires": { - "type": ["null", "string"] - }, - "date_expires_gmt": { - "type": ["null", "string"] - }, - "usage_count": { - "type": ["null", "integer"] - }, - "individual_use": { - "type": ["null", "boolean"] - }, - "product_ids": { - "type": ["null", "array"] - }, - "excluded_product_ids": { - "type": ["null", "array"] - }, - "usage_limit": { - "type": ["null", "integer"] - }, - "usage_limit_per_user": { - "type": ["null", "integer"] - }, - "limit_usage_to_x_items": { - "type": ["null", "integer"] - }, - "free_shipping": { - "type": ["null", "boolean"] - }, - "product_categories": { - "type": ["null", "array"] - }, - "excluded_product_categories": { - "type": ["null", "array"] - }, - "exclude_sale_items": { - "type": ["null", "boolean"] - }, - "minimum_amount": { - "type": ["null", "string"] - }, - "maximum_amount": { - "type": ["null", "string"] - }, - "email_restrictions": { - "type": ["null", "array"] - }, - "used_by": { - "type": ["null", "array"] - }, - "meta_data": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "key": { - "type": ["null", "string"] - }, - "value": {} - } - } - }, - "shop_url": { - "type": ["null", "string"] - }, - "_links": { - "type": ["null", "object"], - "properties": { - "self": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "href": { - "type": ["null", "string"] - } - } - } - }, - "collection": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "href": { - "type": ["null", "string"] - } - } - } - } - } - } - } - }, - "supported_sync_modes": ["incremental", "full_refresh"], - "source_defined_cursor": true, - "default_cursor_field": ["date_modified"] + "name": "payment_gateways", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "product_attribute_terms", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "product_attributes", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "product_categories", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "product_reviews", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"] }, "sync_mode": "incremental", - "cursor_field": ["date_modified"], "destination_sync_mode": "append" + }, + { + "stream": { + "name": "product_shipping_classes", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "product_tags", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, { + "stream": { + "name": "product_variations", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, { + "stream": { + "name": "products", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"] + }, + "sync_mode": "incremental", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "refunds", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "shipping_methods", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "shipping_zone_locations", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "shipping_zone_methods", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "shipping_zones", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "system_status_tools", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "tax_classes", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "tax_rates", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" } ] } diff --git a/airbyte-integrations/connectors/source-woocommerce/integration_tests/expected_records.txt b/airbyte-integrations/connectors/source-woocommerce/integration_tests/expected_records.txt new file mode 100644 index 000000000000..c0cbbaa8e80a --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/integration_tests/expected_records.txt @@ -0,0 +1,67 @@ +{"stream":"coupons","data":{"id":44,"code":"test10off","amount":"10.00","status":"publish","date_created":"2022-11-30T20:17:38","date_created_gmt":"2022-11-30T20:17:38","date_modified":"2022-11-30T20:17:38","date_modified_gmt":"2022-11-30T20:17:38","discount_type":"percent","description":"10% OFF","date_expires":null,"date_expires_gmt":null,"usage_count":1,"individual_use":false,"product_ids":[],"excluded_product_ids":[],"usage_limit":null,"usage_limit_per_user":null,"limit_usage_to_x_items":null,"free_shipping":false,"product_categories":[],"excluded_product_categories":[],"exclude_sale_items":false,"minimum_amount":"0.00","maximum_amount":"0.00","email_restrictions":[],"used_by":["210684523"],"meta_data":[],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/coupons/44"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/coupons"}]}},"emitted_at":1671056260289} +{"stream":"customers","data":{"id":210684524,"date_created":"2022-11-30T20:40:42","date_created_gmt":"2022-11-30T20:40:42","date_modified":"2022-11-30T20:40:43","date_modified_gmt":"2022-11-30T20:40:43","email":"john.doe@example.com","first_name":"John","last_name":"Doe","role":"customer","username":"john.doe","billing":{"first_name":"John","last_name":"Doe","company":"","address_1":"969 Market","address_2":"","city":"San Francisco","postcode":"94103","country":"US","state":"CA","email":"john.doe@example.com","phone":"(555) 555-5555"},"shipping":{"first_name":"John","last_name":"Doe","company":"","address_1":"969 Market","address_2":"","city":"San Francisco","postcode":"94103","country":"US","state":"CA","phone":""},"is_paying_customer":false,"avatar_url":"https://secure.gravatar.com/avatar/8eb1b522f60d11fa897de1dc6351b7e8?s=96&d=identicon&r=g","meta_data":[{"id":65,"key":"_wcs_subscription_ids_cache","value":[]}],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/customers/210684524"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/customers"}]}},"emitted_at":1671056261444} +{"stream":"order_notes","data":{"id":3,"author":"airbytetesting","date_created":"2022-11-30T20:18:29","date_created_gmt":"2022-11-30T20:18:29","note":"Added line items: test_product_1 (test_prod_1)","customer_note":false,"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/orders/45/notes/3"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/orders/45/notes"}],"up":[{"href":"https://airbyte.store/wp-json/wc/v3/orders/45"}]}},"emitted_at":1671056263076} +{"stream":"orders","data":{"id":45,"parent_id":0,"status":"pending","currency":"USD","version":"7.1.0","prices_include_tax":false,"date_created":"2022-11-30T20:17:50","date_modified":"2022-11-30T20:19:01","discount_total":"0.00","discount_tax":"0.00","shipping_total":"0.00","shipping_tax":"0.00","cart_tax":"0.00","total":"90.00","total_tax":"0.00","customer_id":210684523,"order_key":"wc_order_QxkrRLu9BwBQE","billing":{"first_name":"","last_name":"","company":"","address_1":"","address_2":"","city":"","state":"","postcode":"","country":"","email":"integration-test@airbyte.io","phone":""},"shipping":{"first_name":"","last_name":"","company":"","address_1":"","address_2":"","city":"","state":"","postcode":"","country":"","phone":""},"payment_method":"","payment_method_title":"","transaction_id":"","customer_ip_address":"","customer_user_agent":"","created_via":"admin","customer_note":"","date_completed":null,"date_paid":null,"cart_hash":"","number":"45","meta_data":[{"id":193,"key":"coupon_amount","value":""}],"line_items":[{"id":2,"name":"test_product_1","product_id":40,"variation_id":0,"quantity":1,"tax_class":"","subtotal":"90.00","subtotal_tax":"0.00","total":"90.00","total_tax":"0.00","taxes":[],"meta_data":[],"sku":"test_prod_1","price":90,"image":{"id":"","src":""},"parent_name":null}],"tax_lines":[],"shipping_lines":[],"fee_lines":[],"coupon_lines":[{"id":1,"code":"test10off","discount":"0","discount_tax":"0","meta_data":[{"id":3,"key":"coupon_data","value":{"id":44,"code":"test10off","amount":"10","status":"publish","date_created":{"date":"2022-11-30 20:17:38.000000","timezone_type":3,"timezone":"UTC"},"date_modified":{"date":"2022-11-30 20:17:38.000000","timezone_type":3,"timezone":"UTC"},"date_expires":null,"discount_type":"percent","description":"10% OFF","usage_count":0,"individual_use":false,"product_ids":[],"excluded_product_ids":[],"usage_limit":0,"usage_limit_per_user":0,"limit_usage_to_x_items":null,"free_shipping":false,"product_categories":[],"excluded_product_categories":[],"exclude_sale_items":false,"minimum_amount":"","maximum_amount":"","email_restrictions":[],"virtual":false,"meta_data":[]},"display_key":"coupon_data","display_value":{"id":44,"code":"test10off","amount":"10","status":"publish","date_created":{"date":"2022-11-30 20:17:38.000000","timezone_type":3,"timezone":"UTC"},"date_modified":{"date":"2022-11-30 20:17:38.000000","timezone_type":3,"timezone":"UTC"},"date_expires":null,"discount_type":"percent","description":"10% OFF","usage_count":0,"individual_use":false,"product_ids":[],"excluded_product_ids":[],"usage_limit":0,"usage_limit_per_user":0,"limit_usage_to_x_items":null,"free_shipping":false,"product_categories":[],"excluded_product_categories":[],"exclude_sale_items":false,"minimum_amount":"","maximum_amount":"","email_restrictions":[],"virtual":false,"meta_data":[]}}]}],"refunds":[{"id":60,"reason":"bonus","total":"-10.00"}],"payment_url":"https://airbyte.store/checkout/order-pay/45/?pay_for_order=true&key=wc_order_QxkrRLu9BwBQE","is_editable":true,"needs_payment":true,"needs_processing":true,"date_created_gmt":"2022-11-30T20:17:50","date_modified_gmt":"2022-11-30T20:19:01","date_completed_gmt":null,"date_paid_gmt":null,"currency_symbol":"$","_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/orders/45"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/orders"}],"customer":[{"href":"https://airbyte.store/wp-json/wc/v3/customers/210684523"}]}},"emitted_at":1671056264573} +{"stream":"payment_gateways","data":{"id":"woocommerce_payments","title":"Credit card / debit card","description":"Enter your card details","order":-1,"enabled":false,"method_title":"WooCommerce Payments","method_description":"Payments made simple, with no monthly fees – designed exclusively for WooCommerce stores. Accept credit cards, debit cards, and other popular payment methods.

    \n\t\t\tBy using WooCommerce Payments you agree to be bound by our Terms of Service and acknowledge that you have read our Privacy Policy","method_supports":["products","refunds","multiple_subscriptions","subscription_cancellation","subscription_payment_method_change_admin","subscription_payment_method_change_customer","subscription_payment_method_change","subscription_reactivation","subscription_suspension","subscriptions","gateway_scheduled_payments","tokenization","add_payment_method"],"settings":{"account_statement_descriptor":{"id":"account_statement_descriptor","label":"Customer bank statement","description":"Edit the way your store name appears on your customers’ bank statements (read more about requirements here).","type":"account_statement_descriptor","value":"","default":"","tip":"Edit the way your store name appears on your customers’ bank statements (read more about requirements here).","placeholder":""},"manual_capture":{"id":"manual_capture","label":"Issue an authorization on checkout, and capture later.","description":"Charge must be captured within 7 days of authorization, otherwise the authorization and order will be canceled.","type":"checkbox","value":"no","default":"no","tip":"Charge must be captured within 7 days of authorization, otherwise the authorization and order will be canceled.","placeholder":""},"saved_cards":{"id":"saved_cards","label":"Enable payment via saved cards","description":"If enabled, users will be able to pay with a saved card during checkout. Card details are saved on our platform, not on your store.","type":"checkbox","value":"yes","default":"yes","tip":"If enabled, users will be able to pay with a saved card during checkout. Card details are saved on our platform, not on your store.","placeholder":""},"test_mode":{"id":"test_mode","label":"Enable test mode","description":"Simulate transactions using test card numbers.","type":"checkbox","value":"no","default":"no","tip":"Simulate transactions using test card numbers.","placeholder":""},"enable_logging":{"id":"enable_logging","label":"When enabled debug notes will be added to the log.","description":"","type":"checkbox","value":"no","default":"no","tip":"","placeholder":""},"payment_request_details":{"id":"payment_request_details","label":"Payment request buttons","description":"","type":"title","value":"","default":"","tip":"","placeholder":""},"payment_request":{"id":"payment_request","label":"Enable payment request buttons (Apple Pay, Google Pay, and more).
    By using Apple Pay, you agree to Stripe and Apple's Terms of Service.","description":"If enabled, users will be able to pay using Apple Pay, Google Pay or the Payment Request API if supported by the browser.","type":"checkbox","value":"yes","default":"no","tip":"If enabled, users will be able to pay using Apple Pay, Google Pay or the Payment Request API if supported by the browser.","placeholder":""},"payment_request_button_type":{"id":"payment_request_button_type","label":"Button type","description":"Select the button type you would like to show.","type":"select","value":"buy","default":"buy","tip":"Select the button type you would like to show.","placeholder":"","options":{"default":"Only icon","buy":"Buy","donate":"Donate","book":"Book"}},"payment_request_button_theme":{"id":"payment_request_button_theme","label":"Button theme","description":"Select the button theme you would like to show.","type":"select","value":"dark","default":"dark","tip":"Select the button theme you would like to show.","placeholder":"","options":{"dark":"Dark","light":"Light","light-outline":"Light-Outline"}},"payment_request_button_height":{"id":"payment_request_button_height","label":"Button height","description":"Enter the height you would like the button to be in pixels. Width will always be 100%.","type":"text","value":"44","default":"44","tip":"Enter the height you would like the button to be in pixels. Width will always be 100%.","placeholder":""},"payment_request_button_label":{"id":"payment_request_button_label","label":"Custom button label","description":"Enter the custom text you would like the button to have.","type":"text","value":"Buy now","default":"Buy now","tip":"Enter the custom text you would like the button to have.","placeholder":""},"payment_request_button_locations":{"id":"payment_request_button_locations","label":"Button locations","description":"Select where you would like to display the button.","type":"multiselect","value":["product","cart","checkout"],"default":["product","cart","checkout"],"tip":"Select where you would like to display the button.","placeholder":"","options":{"product":"Product","cart":"Cart","checkout":"Checkout"}},"upe_enabled_payment_method_ids":{"id":"upe_enabled_payment_method_ids","label":"Payments accepted on checkout","description":"","type":"multiselect","value":["card"],"default":["card"],"tip":"","placeholder":""},"payment_request_button_size":{"id":"payment_request_button_size","label":"Size of the button displayed for Express Checkouts","description":"Select the size of the button.","type":"select","value":"default","default":"default","tip":"Select the size of the button.","placeholder":"","options":{"default":"Default","medium":"Medium","large":"Large"}}},"needs_setup":true,"post_install_scripts":[],"settings_url":"https://airbyte.store/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments","connection_url":"","setup_help_text":"Next we’ll ask you to share a few details about your business to create your account.","required_settings_keys":[],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/payment_gateways/woocommerce_payments"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/payment_gateways"}]}},"emitted_at":1671056265650} +{"stream":"payment_gateways","data":{"id":"bacs","title":"Direct bank transfer","description":"Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order will not be shipped until the funds have cleared in our account.","order":"","enabled":false,"method_title":"Direct bank transfer","method_description":"Take payments in person via BACS. More commonly known as direct bank/wire transfer.","method_supports":["products"],"settings":{"title":{"id":"title","label":"Title","description":"This controls the title which the user sees during checkout.","type":"safe_text","value":"Direct bank transfer","default":"Direct bank transfer","tip":"This controls the title which the user sees during checkout.","placeholder":""},"instructions":{"id":"instructions","label":"Instructions","description":"Instructions that will be added to the thank you page and emails.","type":"textarea","value":"","default":"","tip":"Instructions that will be added to the thank you page and emails.","placeholder":""},"accounts":{"id":"accounts","value":[]}},"needs_setup":false,"post_install_scripts":[],"settings_url":"https://airbyte.store/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=bacs","connection_url":null,"setup_help_text":null,"required_settings_keys":[],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/payment_gateways/bacs"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/payment_gateways"}]}},"emitted_at":1671056265652} +{"stream":"payment_gateways","data":{"id":"cheque","title":"Check payments","description":"Pay for this order by check.","order":"","enabled":false,"method_title":"Check payments","method_description":"Take payments in person via checks. This offline gateway can also be useful to test purchases.","method_supports":["products"],"settings":{"title":{"id":"title","label":"Title","description":"This controls the title which the user sees during checkout.","type":"safe_text","value":"Check payments","default":"Check payments","tip":"This controls the title which the user sees during checkout.","placeholder":""},"instructions":{"id":"instructions","label":"Instructions","description":"Instructions that will be added to the thank you page and emails.","type":"textarea","value":"Make your check payable to...","default":"","tip":"Instructions that will be added to the thank you page and emails.","placeholder":""}},"needs_setup":false,"post_install_scripts":[],"settings_url":"https://airbyte.store/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=cheque","connection_url":null,"setup_help_text":null,"required_settings_keys":[],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/payment_gateways/cheque"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/payment_gateways"}]}},"emitted_at":1671056265653} +{"stream":"payment_gateways","data":{"id":"cod","title":"Cash on delivery","description":"Pay with cash upon delivery.","order":"","enabled":false,"method_title":"Cash on delivery","method_description":"Have your customers pay with cash (or by other means) upon delivery.","method_supports":["products"],"settings":{"title":{"id":"title","label":"Title","description":"Payment method description that the customer will see on your checkout.","type":"safe_text","value":"Cash on delivery","default":"Cash on delivery","tip":"Payment method description that the customer will see on your checkout.","placeholder":""},"instructions":{"id":"instructions","label":"Instructions","description":"Instructions that will be added to the thank you page.","type":"textarea","value":"Pay with cash upon delivery.","default":"Pay with cash upon delivery.","tip":"Instructions that will be added to the thank you page.","placeholder":""},"enable_for_methods":{"id":"enable_for_methods","label":"Enable for shipping methods","description":"If COD is only available for certain methods, set it up here. Leave blank to enable for all methods.","type":"multiselect","value":"","default":"","tip":"If COD is only available for certain methods, set it up here. Leave blank to enable for all methods.","placeholder":"","options":{"Flat rate":{"flat_rate":"Any "Flat rate" method"},"Free shipping":{"free_shipping":"Any "Free shipping" method"},"Local pickup":{"local_pickup":"Any "Local pickup" method","local_pickup:1":"California ZIP 90210 – Local pickup (#1)"}}},"enable_for_virtual":{"id":"enable_for_virtual","label":"Accept COD if the order is virtual","description":"","type":"checkbox","value":"yes","default":"yes","tip":"","placeholder":""}},"needs_setup":false,"post_install_scripts":[],"settings_url":"https://airbyte.store/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=cod","connection_url":null,"setup_help_text":null,"required_settings_keys":[],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/payment_gateways/cod"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/payment_gateways"}]}},"emitted_at":1671056265654} +{"stream":"product_attribute_terms","data":{"id":1385,"name":"7","slug":"7","description":"size 7","menu_order":0,"count":1,"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/attributes/1/terms/1385"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/attributes/1/terms"}]}},"emitted_at":1671056267133} +{"stream":"product_attribute_terms","data":{"id":1386,"name":"8","slug":"8","description":"size 8","menu_order":0,"count":1,"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/attributes/1/terms/1386"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/attributes/1/terms"}]}},"emitted_at":1671056267134} +{"stream":"product_attribute_terms","data":{"id":1387,"name":"6","slug":"6","description":"size 6","menu_order":0,"count":1,"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/attributes/1/terms/1387"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/attributes/1/terms"}]}},"emitted_at":1671056267134} +{"stream":"product_attributes","data":{"id":1,"name":"size","slug":"pa_size","type":"select","order_by":"menu_order","has_archives":false,"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/attributes/1"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/attributes"}]}},"emitted_at":1671056267733} +{"stream":"product_categories","data":{"id":1374,"name":"Uncategorized","slug":"uncategorized","parent":0,"description":"","display":"default","image":null,"menu_order":0,"count":0,"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/categories/1374"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/categories"}]}},"emitted_at":1671056268340} +{"stream":"product_categories","data":{"id":1378,"name":"sale_products","slug":"sale_products","parent":0,"description":"","display":"default","image":null,"menu_order":0,"count":2,"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/categories/1378"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/categories"}]}},"emitted_at":1671056268341} +{"stream":"product_categories","data":{"id":1381,"name":"purchasable_products","slug":"purchasable_products","parent":0,"description":"Purchasable","display":"products","image":null,"menu_order":0,"count":0,"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/categories/1381"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/categories"}]}},"emitted_at":1671056268342} +{"stream":"product_reviews","data":{"id":1,"date_created":"2022-11-30T20:05:50","date_created_gmt":"2022-11-30T20:05:50","product_id":40,"product_name":"test_product_1","product_permalink":"https://airbyte.store/product/test_product_1/","status":"approved","reviewer":"airbytetesting","reviewer_email":"integration-test@airbyte.io","review":"

    test_review

    \n","rating":5,"verified":false,"reviewer_avatar_urls":{"24":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=24&d=identicon&r=g","48":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=48&d=identicon&r=g","96":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=96&d=identicon&r=g"},"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/reviews/1"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/reviews"}],"up":[{"href":"https://airbyte.store/wp-json/wc/v3/products/40"}],"reviewer":[{"embeddable":true,"href":"https://airbyte.store/wp-json/wp/v2/users/210684523"}]}},"emitted_at":1671056269385} +{"stream":"product_reviews","data":{"id":2,"date_created":"2022-11-30T20:06:01","date_created_gmt":"2022-11-30T20:06:01","product_id":40,"product_name":"test_product_1","product_permalink":"https://airbyte.store/product/test_product_1/","status":"approved","reviewer":"airbytetesting","reviewer_email":"integration-test@airbyte.io","review":"

    test_review 2

    \n","rating":4,"verified":false,"reviewer_avatar_urls":{"24":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=24&d=identicon&r=g","48":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=48&d=identicon&r=g","96":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=96&d=identicon&r=g"},"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/reviews/2"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/reviews"}],"up":[{"href":"https://airbyte.store/wp-json/wc/v3/products/40"}],"reviewer":[{"embeddable":true,"href":"https://airbyte.store/wp-json/wp/v2/users/210684523"}]}},"emitted_at":1671056269387} +{"stream":"product_shipping_classes","data":{"id":1388,"name":"test_ship_class","slug":"test_ship_class","description":"","count":2,"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/shipping_classes/1388"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/shipping_classes"}]}},"emitted_at":1671056270524} +{"stream":"product_tags","data":{"id":1379,"name":"sample_tag","slug":"sample_tag","description":"","count":2,"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/tags/1379"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/tags"}]}},"emitted_at":1671056271109} +{"stream":"product_tags","data":{"id":1380,"name":"saleable","slug":"saleable","description":"","count":2,"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/tags/1380"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/tags"}]}},"emitted_at":1671056271118} +{"stream":"product_tags","data":{"id":1382,"name":"clothes","slug":"clothes","description":"Clothes","count":0,"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/tags/1382"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/tags"}]}},"emitted_at":1671056271120} +{"stream":"product_tags","data":{"id":1383,"name":"sports","slug":"sports","description":"","count":0,"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/tags/1383"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/tags"}]}},"emitted_at":1671056271127} +{"stream":"product_tags","data":{"id":1384,"name":"food","slug":"food","description":"food","count":0,"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/tags/1384"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/tags"}]}},"emitted_at":1671056271128} +{"stream":"product_variations","data":{"id":51,"date_created":"2022-11-30T20:56:17","date_created_gmt":"2022-11-30T20:56:17","date_modified":"2022-11-30T20:56:17","date_modified_gmt":"2022-11-30T20:56:17","description":"","permalink":"https://airbyte.store/product/test_product_2/?attribute_color=white&attribute_pa_size=6","sku":"test_prod_1-1","price":"","regular_price":"","sale_price":"","date_on_sale_from":null,"date_on_sale_from_gmt":null,"date_on_sale_to":null,"date_on_sale_to_gmt":null,"on_sale":false,"status":"publish","purchasable":false,"virtual":false,"downloadable":false,"downloads":[],"download_limit":-1,"download_expiry":-1,"tax_status":"taxable","tax_class":"","manage_stock":"parent","stock_quantity":33,"stock_status":"instock","backorders":"no","backorders_allowed":false,"backordered":false,"low_stock_amount":null,"weight":"10","dimensions":{"length":"10","width":"10","height":"10"},"shipping_class":"test_ship_class","shipping_class_id":1388,"image":null,"attributes":[{"id":0,"name":"color","option":"white"},{"id":1,"name":"size","option":"6"}],"menu_order":1,"meta_data":[{"id":314,"key":"_created_via","value":"ajax-unknown"},{"id":333,"key":"_subscription_period","value":"month"},{"id":334,"key":"_subscription_period_interval","value":"1"},{"id":335,"key":"_subscription_length","value":"0"},{"id":336,"key":"_subscription_trial_period","value":"month"}],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations/51"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations"}],"up":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46"}]}},"emitted_at":1671056274266} +{"stream":"product_variations","data":{"id":52,"date_created":"2022-11-30T20:56:17","date_created_gmt":"2022-11-30T20:56:17","date_modified":"2022-11-30T20:56:17","date_modified_gmt":"2022-11-30T20:56:17","description":"","permalink":"https://airbyte.store/product/test_product_2/?attribute_color=white&attribute_pa_size=7","sku":"test_prod_1-1","price":"","regular_price":"","sale_price":"","date_on_sale_from":null,"date_on_sale_from_gmt":null,"date_on_sale_to":null,"date_on_sale_to_gmt":null,"on_sale":false,"status":"publish","purchasable":false,"virtual":false,"downloadable":false,"downloads":[],"download_limit":-1,"download_expiry":-1,"tax_status":"taxable","tax_class":"","manage_stock":"parent","stock_quantity":33,"stock_status":"instock","backorders":"no","backorders_allowed":false,"backordered":false,"low_stock_amount":null,"weight":"10","dimensions":{"length":"10","width":"10","height":"10"},"shipping_class":"test_ship_class","shipping_class_id":1388,"image":null,"attributes":[{"id":0,"name":"color","option":"white"},{"id":1,"name":"size","option":"7"}],"menu_order":2,"meta_data":[{"id":337,"key":"_created_via","value":"ajax-unknown"},{"id":356,"key":"_subscription_period","value":"month"},{"id":357,"key":"_subscription_period_interval","value":"1"},{"id":358,"key":"_subscription_length","value":"0"},{"id":359,"key":"_subscription_trial_period","value":"month"}],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations/52"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations"}],"up":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46"}]}},"emitted_at":1671056274270} +{"stream":"product_variations","data":{"id":53,"date_created":"2022-11-30T20:56:17","date_created_gmt":"2022-11-30T20:56:17","date_modified":"2022-11-30T20:56:17","date_modified_gmt":"2022-11-30T20:56:17","description":"","permalink":"https://airbyte.store/product/test_product_2/?attribute_color=white&attribute_pa_size=8","sku":"test_prod_1-1","price":"","regular_price":"","sale_price":"","date_on_sale_from":null,"date_on_sale_from_gmt":null,"date_on_sale_to":null,"date_on_sale_to_gmt":null,"on_sale":false,"status":"publish","purchasable":false,"virtual":false,"downloadable":false,"downloads":[],"download_limit":-1,"download_expiry":-1,"tax_status":"taxable","tax_class":"","manage_stock":"parent","stock_quantity":33,"stock_status":"instock","backorders":"no","backorders_allowed":false,"backordered":false,"low_stock_amount":null,"weight":"10","dimensions":{"length":"10","width":"10","height":"10"},"shipping_class":"test_ship_class","shipping_class_id":1388,"image":null,"attributes":[{"id":0,"name":"color","option":"white"},{"id":1,"name":"size","option":"8"}],"menu_order":3,"meta_data":[{"id":360,"key":"_created_via","value":"ajax-unknown"},{"id":379,"key":"_subscription_period","value":"month"},{"id":380,"key":"_subscription_period_interval","value":"1"},{"id":381,"key":"_subscription_length","value":"0"},{"id":382,"key":"_subscription_trial_period","value":"month"}],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations/53"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations"}],"up":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46"}]}},"emitted_at":1671056274272} +{"stream":"product_variations","data":{"id":54,"date_created":"2022-11-30T20:56:17","date_created_gmt":"2022-11-30T20:56:17","date_modified":"2022-11-30T20:56:17","date_modified_gmt":"2022-11-30T20:56:17","description":"","permalink":"https://airbyte.store/product/test_product_2/?attribute_color=red&attribute_pa_size=6","sku":"test_prod_1-1","price":"","regular_price":"","sale_price":"","date_on_sale_from":null,"date_on_sale_from_gmt":null,"date_on_sale_to":null,"date_on_sale_to_gmt":null,"on_sale":false,"status":"publish","purchasable":false,"virtual":false,"downloadable":false,"downloads":[],"download_limit":-1,"download_expiry":-1,"tax_status":"taxable","tax_class":"","manage_stock":"parent","stock_quantity":33,"stock_status":"instock","backorders":"no","backorders_allowed":false,"backordered":false,"low_stock_amount":null,"weight":"10","dimensions":{"length":"10","width":"10","height":"10"},"shipping_class":"test_ship_class","shipping_class_id":1388,"image":null,"attributes":[{"id":0,"name":"color","option":"red"},{"id":1,"name":"size","option":"6"}],"menu_order":4,"meta_data":[{"id":383,"key":"_created_via","value":"ajax-unknown"},{"id":402,"key":"_subscription_period","value":"month"},{"id":403,"key":"_subscription_period_interval","value":"1"},{"id":404,"key":"_subscription_length","value":"0"},{"id":405,"key":"_subscription_trial_period","value":"month"}],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations/54"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations"}],"up":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46"}]}},"emitted_at":1671056274274} +{"stream":"product_variations","data":{"id":55,"date_created":"2022-11-30T20:56:17","date_created_gmt":"2022-11-30T20:56:17","date_modified":"2022-11-30T20:56:17","date_modified_gmt":"2022-11-30T20:56:17","description":"","permalink":"https://airbyte.store/product/test_product_2/?attribute_color=red&attribute_pa_size=7","sku":"test_prod_1-1","price":"","regular_price":"","sale_price":"","date_on_sale_from":null,"date_on_sale_from_gmt":null,"date_on_sale_to":null,"date_on_sale_to_gmt":null,"on_sale":false,"status":"publish","purchasable":false,"virtual":false,"downloadable":false,"downloads":[],"download_limit":-1,"download_expiry":-1,"tax_status":"taxable","tax_class":"","manage_stock":"parent","stock_quantity":33,"stock_status":"instock","backorders":"no","backorders_allowed":false,"backordered":false,"low_stock_amount":null,"weight":"10","dimensions":{"length":"10","width":"10","height":"10"},"shipping_class":"test_ship_class","shipping_class_id":1388,"image":null,"attributes":[{"id":0,"name":"color","option":"red"},{"id":1,"name":"size","option":"7"}],"menu_order":5,"meta_data":[{"id":406,"key":"_created_via","value":"ajax-unknown"},{"id":425,"key":"_subscription_period","value":"month"},{"id":426,"key":"_subscription_period_interval","value":"1"},{"id":427,"key":"_subscription_length","value":"0"},{"id":428,"key":"_subscription_trial_period","value":"month"}],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations/55"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations"}],"up":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46"}]}},"emitted_at":1671056274276} +{"stream":"product_variations","data":{"id":56,"date_created":"2022-11-30T20:56:17","date_created_gmt":"2022-11-30T20:56:17","date_modified":"2022-11-30T20:56:17","date_modified_gmt":"2022-11-30T20:56:17","description":"","permalink":"https://airbyte.store/product/test_product_2/?attribute_color=red&attribute_pa_size=8","sku":"test_prod_1-1","price":"","regular_price":"","sale_price":"","date_on_sale_from":null,"date_on_sale_from_gmt":null,"date_on_sale_to":null,"date_on_sale_to_gmt":null,"on_sale":false,"status":"publish","purchasable":false,"virtual":false,"downloadable":false,"downloads":[],"download_limit":-1,"download_expiry":-1,"tax_status":"taxable","tax_class":"","manage_stock":"parent","stock_quantity":33,"stock_status":"instock","backorders":"no","backorders_allowed":false,"backordered":false,"low_stock_amount":null,"weight":"10","dimensions":{"length":"10","width":"10","height":"10"},"shipping_class":"test_ship_class","shipping_class_id":1388,"image":null,"attributes":[{"id":0,"name":"color","option":"red"},{"id":1,"name":"size","option":"8"}],"menu_order":6,"meta_data":[{"id":429,"key":"_created_via","value":"ajax-unknown"},{"id":448,"key":"_subscription_period","value":"month"},{"id":449,"key":"_subscription_period_interval","value":"1"},{"id":450,"key":"_subscription_length","value":"0"},{"id":451,"key":"_subscription_trial_period","value":"month"}],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations/56"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations"}],"up":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46"}]}},"emitted_at":1671056274278} +{"stream":"product_variations","data":{"id":57,"date_created":"2022-11-30T20:56:17","date_created_gmt":"2022-11-30T20:56:17","date_modified":"2022-11-30T20:56:17","date_modified_gmt":"2022-11-30T20:56:17","description":"","permalink":"https://airbyte.store/product/test_product_2/?attribute_color=black&attribute_pa_size=6","sku":"test_prod_1-1","price":"","regular_price":"","sale_price":"","date_on_sale_from":null,"date_on_sale_from_gmt":null,"date_on_sale_to":null,"date_on_sale_to_gmt":null,"on_sale":false,"status":"publish","purchasable":false,"virtual":false,"downloadable":false,"downloads":[],"download_limit":-1,"download_expiry":-1,"tax_status":"taxable","tax_class":"","manage_stock":"parent","stock_quantity":33,"stock_status":"instock","backorders":"no","backorders_allowed":false,"backordered":false,"low_stock_amount":null,"weight":"10","dimensions":{"length":"10","width":"10","height":"10"},"shipping_class":"test_ship_class","shipping_class_id":1388,"image":null,"attributes":[{"id":0,"name":"color","option":"black"},{"id":1,"name":"size","option":"6"}],"menu_order":7,"meta_data":[{"id":452,"key":"_created_via","value":"ajax-unknown"},{"id":471,"key":"_subscription_period","value":"month"},{"id":472,"key":"_subscription_period_interval","value":"1"},{"id":473,"key":"_subscription_length","value":"0"},{"id":474,"key":"_subscription_trial_period","value":"month"}],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations/57"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations"}],"up":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46"}]}},"emitted_at":1671056274279} +{"stream":"product_variations","data":{"id":58,"date_created":"2022-11-30T20:56:17","date_created_gmt":"2022-11-30T20:56:17","date_modified":"2022-11-30T20:56:17","date_modified_gmt":"2022-11-30T20:56:17","description":"","permalink":"https://airbyte.store/product/test_product_2/?attribute_color=black&attribute_pa_size=7","sku":"test_prod_1-1","price":"","regular_price":"","sale_price":"","date_on_sale_from":null,"date_on_sale_from_gmt":null,"date_on_sale_to":null,"date_on_sale_to_gmt":null,"on_sale":false,"status":"publish","purchasable":false,"virtual":false,"downloadable":false,"downloads":[],"download_limit":-1,"download_expiry":-1,"tax_status":"taxable","tax_class":"","manage_stock":"parent","stock_quantity":33,"stock_status":"instock","backorders":"no","backorders_allowed":false,"backordered":false,"low_stock_amount":null,"weight":"10","dimensions":{"length":"10","width":"10","height":"10"},"shipping_class":"test_ship_class","shipping_class_id":1388,"image":null,"attributes":[{"id":0,"name":"color","option":"black"},{"id":1,"name":"size","option":"7"}],"menu_order":8,"meta_data":[{"id":475,"key":"_created_via","value":"ajax-unknown"},{"id":494,"key":"_subscription_period","value":"month"},{"id":495,"key":"_subscription_period_interval","value":"1"},{"id":496,"key":"_subscription_length","value":"0"},{"id":497,"key":"_subscription_trial_period","value":"month"}],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations/58"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations"}],"up":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46"}]}},"emitted_at":1671056274281} +{"stream":"product_variations","data":{"id":59,"date_created":"2022-11-30T20:56:17","date_created_gmt":"2022-11-30T20:56:17","date_modified":"2022-11-30T20:56:17","date_modified_gmt":"2022-11-30T20:56:17","description":"","permalink":"https://airbyte.store/product/test_product_2/?attribute_color=black&attribute_pa_size=8","sku":"test_prod_1-1","price":"","regular_price":"","sale_price":"","date_on_sale_from":null,"date_on_sale_from_gmt":null,"date_on_sale_to":null,"date_on_sale_to_gmt":null,"on_sale":false,"status":"publish","purchasable":false,"virtual":false,"downloadable":false,"downloads":[],"download_limit":-1,"download_expiry":-1,"tax_status":"taxable","tax_class":"","manage_stock":"parent","stock_quantity":33,"stock_status":"instock","backorders":"no","backorders_allowed":false,"backordered":false,"low_stock_amount":null,"weight":"10","dimensions":{"length":"10","width":"10","height":"10"},"shipping_class":"test_ship_class","shipping_class_id":1388,"image":null,"attributes":[{"id":0,"name":"color","option":"black"},{"id":1,"name":"size","option":"8"}],"menu_order":9,"meta_data":[{"id":498,"key":"_created_via","value":"ajax-unknown"},{"id":517,"key":"_subscription_period","value":"month"},{"id":518,"key":"_subscription_period_interval","value":"1"},{"id":519,"key":"_subscription_length","value":"0"},{"id":520,"key":"_subscription_trial_period","value":"month"}],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations/59"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46/variations"}],"up":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46"}]}},"emitted_at":1671056274283} +{"stream":"products","data":{"id":26,"name":"Connector source Facebook Marketing","slug":"album","permalink":"https://airbyte.store/product/album/","date_created":"2022-11-23T08:21:10","date_created_gmt":"2022-11-23T08:21:10","date_modified":"2022-11-23T08:27:43","date_modified_gmt":"2022-11-23T08:27:43","type":"simple","status":"publish","featured":false,"catalog_visibility":"visible","description":"

    Album reviewed and chosen by Woo.

    \n","short_description":"","sku":"","price":"0.01","regular_price":"0.02","sale_price":"0.01","date_on_sale_from":null,"date_on_sale_from_gmt":null,"date_on_sale_to":null,"date_on_sale_to_gmt":null,"on_sale":true,"purchasable":true,"total_sales":0,"virtual":false,"downloadable":false,"downloads":[],"download_limit":-1,"download_expiry":-1,"external_url":"","button_text":"","tax_status":"taxable","tax_class":"","manage_stock":false,"stock_quantity":null,"backorders":"no","backorders_allowed":false,"backordered":false,"low_stock_amount":null,"sold_individually":false,"weight":"","dimensions":{"length":"","width":"","height":""},"shipping_required":true,"shipping_taxable":true,"shipping_class":"","shipping_class_id":0,"reviews_allowed":true,"average_rating":"0.00","rating_count":0,"upsell_ids":[],"cross_sell_ids":[],"parent_id":0,"purchase_note":"","categories":[],"tags":[],"images":[{"id":27,"date_created":"2022-11-23T08:26:11","date_created_gmt":"2022-11-23T08:26:11","date_modified":"2022-11-23T08:26:33","date_modified_gmt":"2022-11-23T08:26:33","src":"https://i0.wp.com/airbyte.store/wp-content/uploads/2022/11/FB.png?fit=1312%2C542&ssl=1","name":"Facebook Marketing source","alt":""}],"attributes":[],"default_attributes":[],"variations":[],"grouped_products":[],"menu_order":0,"price_html":"$0.02 $0.01","related_ids":[],"meta_data":[{"id":62,"key":"_created_via","value":"unknown"},{"id":63,"key":"_wpas_done_all","value":"1"},{"id":80,"key":"_last_editor_used_jetpack","value":"classic-editor"}],"stock_status":"instock","has_options":false,"jetpack_publicize_connections":[],"jetpack_likes_enabled":true,"jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":28,"url":"https://airbyte.store/product/connector-source-google-ads/","url_meta":{"origin":26,"position":0},"title":"Connector source Google Ads","date":"November 23, 2022","format":false,"excerpt":"","rel":"","context":"Similar post","img":{"alt_text":"","src":"https://i0.wp.com/airbyte.store/wp-content/uploads/2022/11/GA.png?fit=1200%2C483&ssl=1&resize=350%2C200","width":350,"height":200},"classes":[]}],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/26"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products"}]}},"emitted_at":1671056276333} +{"stream":"products","data":{"id":28,"name":"Connector source Google Ads","slug":"connector-source-google-ads","permalink":"https://airbyte.store/product/connector-source-google-ads/","date_created":"2022-11-23T08:30:31","date_created_gmt":"2022-11-23T08:30:31","date_modified":"2022-11-23T08:30:31","date_modified_gmt":"2022-11-23T08:30:31","type":"simple","status":"publish","featured":false,"catalog_visibility":"visible","description":"","short_description":"","sku":"","price":"0.01","regular_price":"0.02","sale_price":"0.01","date_on_sale_from":null,"date_on_sale_from_gmt":null,"date_on_sale_to":null,"date_on_sale_to_gmt":null,"on_sale":true,"purchasable":true,"total_sales":0,"virtual":false,"downloadable":false,"downloads":[],"download_limit":-1,"download_expiry":-1,"external_url":"","button_text":"","tax_status":"taxable","tax_class":"","manage_stock":false,"stock_quantity":null,"backorders":"no","backorders_allowed":false,"backordered":false,"low_stock_amount":null,"sold_individually":false,"weight":"","dimensions":{"length":"","width":"","height":""},"shipping_required":true,"shipping_taxable":true,"shipping_class":"","shipping_class_id":0,"reviews_allowed":true,"average_rating":"0.00","rating_count":0,"upsell_ids":[],"cross_sell_ids":[],"parent_id":0,"purchase_note":"","categories":[],"tags":[],"images":[{"id":29,"date_created":"2022-11-23T08:29:16","date_created_gmt":"2022-11-23T08:29:16","date_modified":"2022-11-23T08:29:35","date_modified_gmt":"2022-11-23T08:29:35","src":"https://i0.wp.com/airbyte.store/wp-content/uploads/2022/11/GA.png?fit=1317%2C530&ssl=1","name":"Google Ads source","alt":""}],"attributes":[],"default_attributes":[],"variations":[],"grouped_products":[],"menu_order":0,"price_html":"$0.02 $0.01","related_ids":[],"meta_data":[{"id":89,"key":"_created_via","value":"post-new"},{"id":90,"key":"_last_editor_used_jetpack","value":"classic-editor"},{"id":115,"key":"_wpas_done_all","value":"1"}],"stock_status":"instock","has_options":false,"jetpack_publicize_connections":[],"jetpack_likes_enabled":true,"jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":26,"url":"https://airbyte.store/product/album/","url_meta":{"origin":28,"position":0},"title":"Connector source Facebook Marketing","date":"November 23, 2022","format":false,"excerpt":"Album reviewed and chosen by Woo.","rel":"","context":"Similar post","img":{"alt_text":"","src":"https://i0.wp.com/airbyte.store/wp-content/uploads/2022/11/FB.png?fit=1200%2C496&ssl=1&resize=350%2C200","width":350,"height":200},"classes":[]}],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/28"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products"}]}},"emitted_at":1671056276339} +{"stream":"products","data":{"id":40,"name":"test_product_1","slug":"test_product_1","permalink":"https://airbyte.store/product/test_product_1/","date_created":"2022-11-30T19:59:56","date_created_gmt":"2022-11-30T19:59:56","date_modified":"2022-11-30T20:44:57","date_modified_gmt":"2022-11-30T20:44:57","type":"simple","status":"publish","featured":false,"catalog_visibility":"visible","description":"

    test_product description

    \n","short_description":"","sku":"test_prod_1","price":"90","regular_price":"100","sale_price":"90","date_on_sale_from":null,"date_on_sale_from_gmt":null,"date_on_sale_to":null,"date_on_sale_to_gmt":null,"on_sale":true,"purchasable":true,"total_sales":0,"virtual":false,"downloadable":false,"downloads":[],"download_limit":-1,"download_expiry":-1,"external_url":"","button_text":"","tax_status":"taxable","tax_class":"","manage_stock":true,"stock_quantity":33,"backorders":"no","backorders_allowed":false,"backordered":false,"low_stock_amount":null,"sold_individually":false,"weight":"10","dimensions":{"length":"10","width":"10","height":"10"},"shipping_required":true,"shipping_taxable":true,"shipping_class":"test_ship_class","shipping_class_id":1388,"reviews_allowed":true,"average_rating":"4.50","rating_count":2,"upsell_ids":[],"cross_sell_ids":[],"parent_id":0,"purchase_note":"

    vendor_info

    \n","categories":[{"id":1378,"name":"sale_products","slug":"sale_products"}],"tags":[{"id":1380,"name":"saleable","slug":"saleable"},{"id":1379,"name":"sample_tag","slug":"sample_tag"}],"images":[],"attributes":[{"id":0,"name":"color","position":0,"visible":true,"variation":false,"options":["white","red","black"]}],"default_attributes":[],"variations":[],"grouped_products":[],"menu_order":0,"price_html":"$100.00 $90.00","related_ids":[46],"meta_data":[{"id":130,"key":"_created_via","value":"post-new"},{"id":131,"key":"_last_editor_used_jetpack","value":"classic-editor"},{"id":160,"key":"_wpas_done_all","value":"1"}],"stock_status":"instock","has_options":false,"jetpack_publicize_connections":[],"jetpack_likes_enabled":true,"jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":46,"url":"https://airbyte.store/product/test_product_2/","url_meta":{"origin":40,"position":0},"title":"test_product_2","date":"November 30, 2022","format":false,"excerpt":"test_product  2 description","rel":"","context":"Similar post","img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/40"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products"}]}},"emitted_at":1671056276343} +{"stream":"products","data":{"id":46,"name":"test_product_2","slug":"test_product_2","permalink":"https://airbyte.store/product/test_product_2/","date_created":"2022-11-30T20:54:22","date_created_gmt":"2022-11-30T20:54:22","date_modified":"2022-11-30T20:56:30","date_modified_gmt":"2022-11-30T20:56:30","type":"variable","status":"publish","featured":false,"catalog_visibility":"visible","description":"

    test_product  2 description

    \n","short_description":"","sku":"test_prod_1-1","price":"","regular_price":"","sale_price":"","date_on_sale_from":null,"date_on_sale_from_gmt":null,"date_on_sale_to":null,"date_on_sale_to_gmt":null,"on_sale":false,"purchasable":false,"total_sales":0,"virtual":false,"downloadable":false,"downloads":[],"download_limit":-1,"download_expiry":-1,"external_url":"","button_text":"","tax_status":"taxable","tax_class":"","manage_stock":true,"stock_quantity":33,"backorders":"no","backorders_allowed":false,"backordered":false,"low_stock_amount":null,"sold_individually":false,"weight":"10","dimensions":{"length":"10","width":"10","height":"10"},"shipping_required":true,"shipping_taxable":true,"shipping_class":"test_ship_class","shipping_class_id":1388,"reviews_allowed":true,"average_rating":"0.00","rating_count":0,"upsell_ids":[],"cross_sell_ids":[],"parent_id":0,"purchase_note":"

    vendor_info

    \n","categories":[{"id":1378,"name":"sale_products","slug":"sale_products"}],"tags":[{"id":1380,"name":"saleable","slug":"saleable"},{"id":1379,"name":"sample_tag","slug":"sample_tag"}],"images":[],"attributes":[{"id":0,"name":"color","position":0,"visible":true,"variation":true,"options":["white","red","black"]},{"id":1,"name":"size","position":1,"visible":true,"variation":true,"options":["6","7","8"]}],"default_attributes":[],"variations":[51,52,53,54,55,56,57,58,59],"grouped_products":[],"menu_order":0,"price_html":"","related_ids":[40],"meta_data":[{"id":198,"key":"_created_via","value":"unknown"},{"id":224,"key":"_created_via","value":"post-new"},{"id":225,"key":"_last_editor_used_jetpack","value":"classic-editor"},{"id":226,"key":"_wpas_done_all","value":"1"}],"stock_status":"instock","has_options":true,"jetpack_publicize_connections":[],"jetpack_likes_enabled":true,"jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":40,"url":"https://airbyte.store/product/test_product_1/","url_meta":{"origin":46,"position":0},"title":"test_product_1","date":"November 30, 2022","format":false,"excerpt":"test_product description","rel":"","context":"With 2 comments","img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/products/46"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/products"}]}},"emitted_at":1671056276347} +{"stream":"refunds","data":{"id":60,"date_created":"2022-11-30T21:07:07","date_created_gmt":"2022-11-30T21:07:07","amount":"10.00","reason":"bonus","refunded_by":210684523,"refunded_payment":false,"meta_data":[],"line_items":[{"id":3,"name":"test_product_1","product_id":40,"variation_id":0,"quantity":0,"tax_class":"","subtotal":"-10.00","subtotal_tax":"0.00","total":"-10.00","total_tax":"0.00","taxes":[],"meta_data":[{"id":22,"key":"_refunded_item_id","value":"2","display_key":"_refunded_item_id","display_value":"2"}],"sku":"test_prod_1","price":0,"image":{"id":"","src":""},"parent_name":null}],"shipping_lines":[],"tax_lines":[],"fee_lines":[],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/orders/45/refunds/60"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/orders/45/refunds"}],"up":[{"href":"https://airbyte.store/wp-json/wc/v3/orders/45"}]}},"emitted_at":1671056278499} +{"stream":"shipping_methods","data":{"id":"flat_rate","title":"Flat rate","description":"Lets you charge a fixed rate for shipping.","_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping_methods/flat_rate"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping_methods"}]}},"emitted_at":1671056279633} +{"stream":"shipping_methods","data":{"id":"free_shipping","title":"Free shipping","description":"Free shipping is a special method which can be triggered with coupons and minimum spends.","_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping_methods/free_shipping"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping_methods"}]}},"emitted_at":1671056279637} +{"stream":"shipping_methods","data":{"id":"local_pickup","title":"Local pickup","description":"Allow customers to pick up orders themselves. By default, when using local pickup store base taxes will apply regardless of customer address.","_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping_methods/local_pickup"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping_methods"}]}},"emitted_at":1671056279639} +{"stream":"shipping_zone_locations","data":{"code":"US:CA","type":"state","_links":{"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping/zones/1/locations"}],"describes":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping/zones/1"}]}},"emitted_at":1671056281366} +{"stream":"shipping_zone_locations","data":{"code":"90210","type":"postcode","_links":{"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping/zones/1/locations"}],"describes":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping/zones/1"}]}},"emitted_at":1671056281368} +{"stream":"shipping_zone_methods","data":{"id":1,"instance_id":1,"title":"Local pickup","order":1,"enabled":true,"method_id":"local_pickup","method_title":"Local pickup","method_description":"

    Allow customers to pick up orders themselves. By default, when using local pickup store base taxes will apply regardless of customer address.

    \n","settings":{"title":{"id":"title","label":"Title","description":"This controls the title which the user sees during checkout.","type":"text","value":"Local pickup","default":"Local pickup","tip":"This controls the title which the user sees during checkout.","placeholder":""},"tax_status":{"id":"tax_status","label":"Tax status","description":"","type":"select","value":"taxable","default":"taxable","tip":"","placeholder":"","options":{"taxable":"Taxable","none":"None"}},"cost":{"id":"cost","label":"Cost","description":"Optional cost for local pickup.","type":"text","value":"","default":"","tip":"Optional cost for local pickup.","placeholder":""}},"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping/zones/1/methods/1"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping/zones/1/methods"}],"describes":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping/zones/1"}]}},"emitted_at":1671056283076} +{"stream":"shipping_zones","data":{"id":0,"name":"Locations not covered by your other zones","order":0,"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping/zones/0"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping/zones"}],"describedby":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping/zones/0/locations"}]}},"emitted_at":1671056283676} +{"stream":"shipping_zones","data":{"id":1,"name":"California ZIP 90210","order":0,"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping/zones/1"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping/zones"}],"describedby":[{"href":"https://airbyte.store/wp-json/wc/v3/shipping/zones/1/locations"}]}},"emitted_at":1671056283678} +{"stream":"system_status_tools","data":{"id":"clear_transients","name":"WooCommerce transients","action":"Clear transients","description":"This tool will clear the product/shop transients cache.","_links":{"item":[{"embeddable":true,"href":"https://airbyte.store/wp-json/wc/v3/system_status/tools/clear_transients"}]}},"emitted_at":1671056284378} +{"stream":"system_status_tools","data":{"id":"clear_expired_transients","name":"Expired transients","action":"Clear transients","description":"This tool will clear ALL expired transients from WordPress.","_links":{"item":[{"embeddable":true,"href":"https://airbyte.store/wp-json/wc/v3/system_status/tools/clear_expired_transients"}]}},"emitted_at":1671056284379} +{"stream":"system_status_tools","data":{"id":"delete_orphaned_variations","name":"Orphaned variations","action":"Delete orphaned variations","description":"This tool will delete all variations which have no parent.","_links":{"item":[{"embeddable":true,"href":"https://airbyte.store/wp-json/wc/v3/system_status/tools/delete_orphaned_variations"}]}},"emitted_at":1671056284380} +{"stream":"system_status_tools","data":{"id":"clear_expired_download_permissions","name":"Used-up download permissions","action":"Clean up download permissions","description":"This tool will delete expired download permissions and permissions with 0 remaining downloads.","_links":{"item":[{"embeddable":true,"href":"https://airbyte.store/wp-json/wc/v3/system_status/tools/clear_expired_download_permissions"}]}},"emitted_at":1671056284381} +{"stream":"system_status_tools","data":{"id":"regenerate_product_lookup_tables","name":"Product lookup tables","action":"Regenerate","description":"This tool will regenerate product lookup table data. This process may take a while.","_links":{"item":[{"embeddable":true,"href":"https://airbyte.store/wp-json/wc/v3/system_status/tools/regenerate_product_lookup_tables"}]}},"emitted_at":1671056284382} +{"stream":"system_status_tools","data":{"id":"recount_terms","name":"Term counts","action":"Recount terms","description":"This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog.","_links":{"item":[{"embeddable":true,"href":"https://airbyte.store/wp-json/wc/v3/system_status/tools/recount_terms"}]}},"emitted_at":1671056284383} +{"stream":"system_status_tools","data":{"id":"reset_roles","name":"Capabilities","action":"Reset capabilities","description":"This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages.","_links":{"item":[{"embeddable":true,"href":"https://airbyte.store/wp-json/wc/v3/system_status/tools/reset_roles"}]}},"emitted_at":1671056284384} +{"stream":"system_status_tools","data":{"id":"clear_sessions","name":"Clear customer sessions","action":"Clear","description":"Note: This tool will delete all customer session data from the database, including current carts and saved carts in the database.","_links":{"item":[{"embeddable":true,"href":"https://airbyte.store/wp-json/wc/v3/system_status/tools/clear_sessions"}]}},"emitted_at":1671056284385} +{"stream":"system_status_tools","data":{"id":"clear_template_cache","name":"Clear template cache","action":"Clear","description":"Note: This tool will empty the template cache.","_links":{"item":[{"embeddable":true,"href":"https://airbyte.store/wp-json/wc/v3/system_status/tools/clear_template_cache"}]}},"emitted_at":1671056284386} +{"stream":"system_status_tools","data":{"id":"install_pages","name":"Create default WooCommerce pages","action":"Create pages","description":"Note: This tool will install all the missing WooCommerce pages. Pages already defined and set up will not be replaced.","_links":{"item":[{"embeddable":true,"href":"https://airbyte.store/wp-json/wc/v3/system_status/tools/install_pages"}]}},"emitted_at":1671056284387} +{"stream":"system_status_tools","data":{"id":"delete_taxes","name":"Delete WooCommerce tax rates","action":"Delete tax rates","description":"Note: This option will delete ALL of your tax rates, use with caution. This action cannot be reversed.","_links":{"item":[{"embeddable":true,"href":"https://airbyte.store/wp-json/wc/v3/system_status/tools/delete_taxes"}]}},"emitted_at":1671056284388} +{"stream":"system_status_tools","data":{"id":"db_update_routine","name":"Update database","action":"Update database","description":"Note: This tool will update your WooCommerce database to the latest version. Please ensure you make sufficient backups before proceeding.","_links":{"item":[{"embeddable":true,"href":"https://airbyte.store/wp-json/wc/v3/system_status/tools/db_update_routine"}]}},"emitted_at":1671056284389} +{"stream":"system_status_tools","data":{"id":"verify_db_tables","name":"Verify base database tables","action":"Verify database","description":"Verify if all base database tables are present.","_links":{"item":[{"embeddable":true,"href":"https://airbyte.store/wp-json/wc/v3/system_status/tools/verify_db_tables"}]}},"emitted_at":1671056284390} +{"stream":"system_status_tools","data":{"id":"regenerate_product_attributes_lookup_table","name":"Regenerate the product attributes lookup table","action":"Regenerate","description":"This tool will regenerate the product attributes lookup table data from existing product(s) data. This process may take a while.","_links":{"item":[{"embeddable":true,"href":"https://airbyte.store/wp-json/wc/v3/system_status/tools/regenerate_product_attributes_lookup_table"}]}},"emitted_at":1671056284391} +{"stream":"system_status_tools","data":{"id":"clear_woocommerce_analytics_cache","name":"Clear analytics cache","action":"Clear","description":"This tool will reset the cached values used in WooCommerce Analytics. If numbers still look off, try Reimporting Historical Data.","_links":{"item":[{"embeddable":true,"href":"https://airbyte.store/wp-json/wc/v3/system_status/tools/clear_woocommerce_analytics_cache"}]}},"emitted_at":1671056284393} +{"stream":"tax_classes","data":{"slug":"standard","name":"Standard rate","_links":{"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/taxes/classes"}]}},"emitted_at":1671056284988} +{"stream":"tax_classes","data":{"slug":"reduced-rate","name":"Reduced rate","_links":{"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/taxes/classes"}]}},"emitted_at":1671056284988} +{"stream":"tax_classes","data":{"slug":"zero-rate","name":"Zero rate","_links":{"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/taxes/classes"}]}},"emitted_at":1671056284989} +{"stream":"tax_rates","data":{"id":1,"country":"CA","state":"BC","postcode":"","city":"VANCOUVER","rate":"10.0000","name":"canada_tax","priority":1,"compound":false,"shipping":true,"order":0,"class":"standard","postcodes":[],"cities":["VANCOUVER"],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/taxes/1"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/taxes"}]}},"emitted_at":1671056285575} +{"stream":"tax_rates","data":{"id":2,"country":"MX","state":"","postcode":"","city":"","rate":"5.0000","name":"mexico","priority":1,"compound":false,"shipping":true,"order":0,"class":"reduced-rate","postcodes":[],"cities":[],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/taxes/2"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/taxes"}]}},"emitted_at":1671056285575} +{"stream":"tax_rates","data":{"id":3,"country":"CU","state":"","postcode":"","city":"","rate":"0.0000","name":"cuba_tax","priority":1,"compound":false,"shipping":true,"order":0,"class":"zero-rate","postcodes":[],"cities":[],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/taxes/3"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/taxes"}]}},"emitted_at":1671056285576} +{"stream":"tax_rates","data":{"id":4,"country":"US","state":"CA","postcode":"94133","city":"SAN FRANCISCO","rate":"8.6250","name":"US-CA-SAN FRANCISCO COUNTY-SAN FRANCISCO Tax","priority":1,"compound":false,"shipping":false,"order":0,"class":"standard","postcodes":["94133"],"cities":["SAN FRANCISCO"],"_links":{"self":[{"href":"https://airbyte.store/wp-json/wc/v3/taxes/4"}],"collection":[{"href":"https://airbyte.store/wp-json/wc/v3/taxes"}]}},"emitted_at":1671056285576} diff --git a/airbyte-integrations/connectors/source-woocommerce/setup.py b/airbyte-integrations/connectors/source-woocommerce/setup.py index d8c01f706434..9c4043114eee 100644 --- a/airbyte-integrations/connectors/source-woocommerce/setup.py +++ b/airbyte-integrations/connectors/source-woocommerce/setup.py @@ -6,11 +6,12 @@ from setuptools import find_packages, setup MAIN_REQUIREMENTS = [ - "airbyte-cdk~=0.1", + "airbyte-cdk", ] TEST_REQUIREMENTS = [ "pytest~=6.1", + "pytest-mock~=3.6.1", "source-acceptance-test", ] @@ -21,7 +22,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-woocommerce/source_woocommerce/__init__.py b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/__init__.py index fdcb21c284ba..d99b442eabfd 100644 --- a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/__init__.py +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/__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 SourceWoocommerce diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/components.py b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/components.py new file mode 100644 index 000000000000..c1e29416354c --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/components.py @@ -0,0 +1,22 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import datetime + +from airbyte_cdk.sources.declarative.stream_slicers import DatetimeStreamSlicer + + +class DatetimeStreamSlicerWoocommerce(DatetimeStreamSlicer): + + # TODO: remove whole method after solving https://github.com/airbytehq/airbyte/issues/20322 + def _partition_daterange(self, start, end, step: datetime.timedelta): + start_field = self.stream_slice_field_start.eval(self.config) + end_field = self.stream_slice_field_end.eval(self.config) + dates = [] + while start <= end: + # interval hardcoded to 1 second, as we have datetime_format: "%Y-%m-%dT%H:%M:%S" + end_date = self._get_date(start + step - datetime.timedelta(seconds=1), end, min) + dates.append({start_field: self._format_datetime(start), end_field: self._format_datetime(end_date)}) + start += step + return dates diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/customers.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/customers.json index 16b90ccf4c89..97a3002e2a8c 100644 --- a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/customers.json +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/customers.json @@ -37,10 +37,10 @@ "type": ["null", "string"] }, "billing": { - "$ref": "billing.json" + "$ref": "order_billing.json" }, "shipping": { - "$ref": "shipping.json" + "$ref": "order_shipping.json" }, "is_paying_customer": { "type": ["null", "boolean"] diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/order_notes.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/order_notes.json new file mode 100644 index 000000000000..0412a3b4ab78 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/order_notes.json @@ -0,0 +1,29 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "integer"] + }, + "author": { + "type": ["null", "string"] + }, + "date_created": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_created_gmt": { + "type": ["null", "string"], + "format": "date-time" + }, + "note": { + "type": ["null", "string"] + }, + "custom_note": { + "type": ["null", "boolean"] + }, + "added_by_user": { + "type": ["null", "boolean"] + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/orders.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/orders.json index 1d91f0e9fb33..f0b52e540e22 100644 --- a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/orders.json +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/orders.json @@ -79,10 +79,10 @@ "type": ["null", "string"] }, "billing": { - "$ref": "billing.json" + "$ref": "order_billing.json" }, "shipping": { - "$ref": "shipping.json" + "$ref": "order_shipping.json" }, "payment_method": { "type": ["null", "string"] diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/payment_gateways.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/payment_gateways.json new file mode 100644 index 000000000000..edba94e1d3e3 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/payment_gateways.json @@ -0,0 +1,33 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "string"] + }, + "title": { + "type": ["null", "string"] + }, + "description": { + "type": ["null", "string"] + }, + "order": { + "type": ["null", "string", "integer"] + }, + "enabled": { + "type": ["null", "boolean"] + }, + "method_title": { + "type": ["null", "string"] + }, + "method_description": { + "type": ["null", "string"] + }, + "method_supports": { + "type": ["null", "array"] + }, + "settings": { + "$ref": "payment_gateway_settings.json" + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_attribute_terms.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_attribute_terms.json new file mode 100644 index 000000000000..6642f51ad206 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_attribute_terms.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "integer"] + }, + "name": { + "type": ["null", "string"] + }, + "slug": { + "type": ["null", "string"] + }, + "description": { + "type": ["null", "string"] + }, + "menu_order": { + "type": ["null", "integer"] + }, + "count": { + "type": ["null", "integer"] + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_attributes.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_attributes.json new file mode 100644 index 000000000000..e6c63509d000 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_attributes.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "integer"] + }, + "name": { + "type": ["null", "string"] + }, + "slug": { + "type": ["null", "string"] + }, + "type": { + "type": ["null", "string"] + }, + "order_by": { + "type": ["null", "string"] + }, + "has_archives": { + "type": ["null", "boolean"] + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_categories.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_categories.json new file mode 100644 index 000000000000..86755988ef0b --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_categories.json @@ -0,0 +1,33 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "integer"] + }, + "name": { + "type": ["null", "string"] + }, + "slug": { + "type": ["null", "string"] + }, + "parent": { + "type": ["null", "integer"] + }, + "description": { + "type": ["null", "string"] + }, + "display": { + "type": ["null", "string"] + }, + "image": { + "$ref": "product_images.json" + }, + "menu_order": { + "type": ["null", "integer"] + }, + "count": { + "type": ["null", "integer"] + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_reviews.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_reviews.json new file mode 100644 index 000000000000..17b0acf404ac --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_reviews.json @@ -0,0 +1,38 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "integer"] + }, + "date_created": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_created_gmt": { + "type": ["null", "string"], + "format": "date-time" + }, + "product_id": { + "type": ["null", "integer"] + }, + "status": { + "type": ["null", "string"] + }, + "reviewer": { + "type": ["null", "string"] + }, + "reviewer_email": { + "type": ["null", "string"] + }, + "review": { + "type": ["null", "string"] + }, + "rating": { + "type": ["null", "integer"] + }, + "verified": { + "type": ["null", "boolean"] + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_shipping_classes.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_shipping_classes.json new file mode 100644 index 000000000000..2cea8d14b766 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_shipping_classes.json @@ -0,0 +1,21 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "integer"] + }, + "name": { + "type": ["null", "string"] + }, + "slug": { + "type": ["null", "string"] + }, + "description": { + "type": ["null", "string"] + }, + "count": { + "type": ["null", "integer"] + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_tags.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_tags.json new file mode 100644 index 000000000000..2cea8d14b766 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_tags.json @@ -0,0 +1,21 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "integer"] + }, + "name": { + "type": ["null", "string"] + }, + "slug": { + "type": ["null", "string"] + }, + "description": { + "type": ["null", "string"] + }, + "count": { + "type": ["null", "integer"] + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_variations.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_variations.json new file mode 100644 index 000000000000..5cb55b1a849e --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/product_variations.json @@ -0,0 +1,145 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "integer"] + }, + "date_created": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_created_gmt": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_modified": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_modified_gmt": { + "type": ["null", "string"], + "format": "date-time" + }, + "description": { + "type": ["null", "string"] + }, + "permalink": { + "type": ["null", "string"] + }, + "sku": { + "type": ["null", "string"] + }, + "price": { + "type": ["null", "string"] + }, + "regular_price": { + "type": ["null", "string"] + }, + "sale_price": { + "type": ["null", "string"] + }, + "date_on_sale_from": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_on_sale_from_gmt": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_on_sale_to": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_on_sale_to_gmt": { + "type": ["null", "string"], + "format": "date-time" + }, + "on_sale": { + "type": ["null", "boolean"] + }, + "status": { + "type": ["null", "string"] + }, + "purchasable": { + "type": ["null", "boolean"] + }, + "virtual": { + "type": ["null", "boolean"] + }, + "downloadable": { + "type": ["null", "boolean"] + }, + "downloads": { + "$ref": "product_downloads_properties.json" + }, + "download_limit": { + "type": ["null", "integer"] + }, + "download_expiry": { + "type": ["null", "integer"] + }, + "tax_status": { + "type": ["null", "string"] + }, + "tax_class": { + "type": ["null", "string"] + }, + "manage_stock": { + "type": ["null", "string"] + }, + "stock_quantity": { + "type": ["null", "integer"] + }, + "stock_status": { + "type": ["null", "string"] + }, + "backorders": { + "type": ["null", "string"] + }, + "backorders_allowed": { + "type": ["null", "boolean"] + }, + "backordered": { + "type": ["null", "boolean"] + }, + "weight": { + "type": ["null", "string"] + }, + "dimensions": { + "$ref": "product_dimensions.json" + }, + "shipping_class": { + "type": ["null", "string"] + }, + "shipping_class_id": { + "type": ["null", "integer"] + }, + "image": { + "$ref": "product_images.json" + }, + "attributes": { + "type": ["null", "array"], + "items": { + "type": ["null", "object"], + "properties": { + "id": { + "type": ["null", "integer"] + }, + "name": { + "type": ["null", "string"] + }, + "option": { + "type": ["null", "string"] + } + } + } + }, + "menu_order": { + "type": ["null", "integer"] + }, + "meta_data": { + "$ref": "meta_data.json" + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/products.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/products.json new file mode 100644 index 000000000000..3d54b836b9d3 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/products.json @@ -0,0 +1,209 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "integer"] + }, + "name": { + "type": ["null", "string"] + }, + "slug": { + "type": ["null", "string"] + }, + "permalink": { + "type": ["null", "string"] + }, + "date_created": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_created_gmt": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_modified": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_modified_gmt": { + "type": ["null", "string"], + "format": "date-time" + }, + "type": { + "type": ["null", "string"] + }, + "status": { + "type": ["null", "string"] + }, + "features": { + "type": ["null", "boolean"] + }, + "catalog_visibility": { + "type": ["null", "string"] + }, + "description": { + "type": ["null", "string"] + }, + "short_description": { + "type": ["null", "string"] + }, + "sku": { + "type": ["null", "string"] + }, + "price": { + "type": ["null", "string"] + }, + "regular_price": { + "type": ["null", "string"] + }, + "sale_price": { + "type": ["null", "string"] + }, + "date_on_sale_from": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_on_sale_from_gmt": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_on_sale_to": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_on_sale_to_gmt": { + "type": ["null", "string"], + "format": "date-time" + }, + "price_html": { + "type": ["null", "string"] + }, + "on_sale": { + "type": ["null", "boolean"] + }, + "purchasable": { + "type": ["null", "boolean"] + }, + "total_sales": { + "type": ["null", "integer"] + }, + "virtual": { + "type": ["null", "boolean"] + }, + "downloadable": { + "type": ["null", "boolean"] + }, + "downloads": { + "$ref": "product_downloads_properties.json" + }, + "download_limit": { + "type": ["null", "integer"] + }, + "download_expiry": { + "type": ["null", "integer"] + }, + "external_url": { + "type": ["null", "string"] + }, + "button_text": { + "type": ["null", "string"] + }, + "tax_status": { + "type": ["null", "string"] + }, + "tax_class": { + "type": ["null", "string"] + }, + "manage_stock": { + "type": ["null", "boolean"] + }, + "stock_quantity": { + "type": ["null", "integer"] + }, + "stock_status": { + "type": ["null", "string"] + }, + "backorders": { + "type": ["null", "string"] + }, + "backorders_allowed": { + "type": ["null", "boolean"] + }, + "backordered": { + "type": ["null", "boolean"] + }, + "sold_individually": { + "type": ["null", "boolean"] + }, + "weight": { + "type": ["null", "string"] + }, + "dimensions": { + "$ref": "product_dimensions.json" + }, + "shipping_required": { + "type": ["null", "boolean"] + }, + "shipping_taxable": { + "type": ["null", "boolean"] + }, + "shipping_class": { + "type": ["null", "string"] + }, + "shipping_class_id": { + "type": ["null", "integer"] + }, + "reviews_allowed": { + "type": ["null", "boolean"] + }, + "average_rating": { + "type": ["null", "string"] + }, + "rating_count": { + "type": ["null", "integer"] + }, + "related_ids": { + "type": ["null", "array"] + }, + "upsell_ids": { + "type": ["null", "array"] + }, + "cross_sell_ids": { + "type": ["null", "array"] + }, + "parent_id": { + "type": ["null", "integer"] + }, + "purchase_note": { + "type": ["null", "string"] + }, + "categories": { + "$ref": "product_categories_tags.json" + }, + "tags": { + "$ref": "product_categories_tags.json" + }, + "images": { + "$ref": "product_images.json" + }, + "attributes": { + "$ref": "product_attributes.json" + }, + "default_attributes": { + "$ref": "product_default_attributes.json" + }, + "variations": { + "type": ["null", "array"] + }, + "grouped_products": { + "type": ["null", "array"] + }, + "menu_order": { + "type": ["null", "integer"] + }, + "meta_data": { + "$ref": "meta_data.json" + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/refunds.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/refunds.json new file mode 100644 index 000000000000..60dc2abca8ce --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/refunds.json @@ -0,0 +1,38 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "integer"] + }, + "date_created": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_created_gmt": { + "type": ["null", "string"], + "format": "date-time" + }, + "amount": { + "type": ["null", "string"] + }, + "reason": { + "type": ["null", "string"] + }, + "refunded_by": { + "type": ["null", "integer"] + }, + "refunded_payment": { + "type": ["null", "boolean"] + }, + "meta_data": { + "$ref": "meta_data.json" + }, + "line_items": { + "$ref": "refund_line_items.json" + }, + "api_refund": { + "type": ["null", "boolean"] + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/meta_data.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/meta_data.json index d528f9cc24b5..6b3a1d2b6d43 100644 --- a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/meta_data.json +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/meta_data.json @@ -11,7 +11,7 @@ "type": ["null", "string"] }, "value": { - "type": ["null", "object", "string"] + "type": ["null", "object", "string", "array"] } } }, @@ -27,7 +27,7 @@ "type": ["null", "string"] }, "value": { - "type": ["null", "object", "string"] + "type": ["null", "object", "string", "array"] } } } diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/billing.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/order_billing.json similarity index 100% rename from airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/billing.json rename to airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/order_billing.json diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/shipping.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/order_shipping.json similarity index 100% rename from airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/shipping.json rename to airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/order_shipping.json diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/payment_gateway_settings.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/payment_gateway_settings.json new file mode 100644 index 000000000000..d9cd8f852628 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/payment_gateway_settings.json @@ -0,0 +1,29 @@ +{ + "type": ["null", "object"], + "properties": { + "id": { + "type": ["null", "string"] + }, + "label": { + "type": ["null", "string"] + }, + "description": { + "type": ["null", "string"] + }, + "type": { + "type": ["null", "string"] + }, + "value": { + "type": ["null", "string"] + }, + "default": { + "type": ["null", "string"] + }, + "tip": { + "type": ["null", "string"] + }, + "placeholder": { + "type": ["null", "string"] + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_attributes.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_attributes.json new file mode 100644 index 000000000000..f7918da17ddb --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_attributes.json @@ -0,0 +1,26 @@ +{ + "type": ["null", "array"], + "items": { + "type": ["null", "object"], + "properties": { + "id": { + "type": ["null", "integer"] + }, + "name": { + "type": ["null", "string"] + }, + "position": { + "type": ["null", "integer"] + }, + "visible": { + "type": ["null", "boolean"] + }, + "variation": { + "type": ["null", "boolean"] + }, + "options": { + "type": ["null", "array"] + } + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_categories_tags.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_categories_tags.json new file mode 100644 index 000000000000..5a0f21b3ba4c --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_categories_tags.json @@ -0,0 +1,17 @@ +{ + "type": ["null", "array"], + "items": { + "type": ["null", "object"], + "properties": { + "id": { + "type": ["null", "integer"] + }, + "name": { + "type": ["null", "string"] + }, + "slug": { + "type": ["null", "string"] + } + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_default_attributes.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_default_attributes.json new file mode 100644 index 000000000000..1ab417e41128 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_default_attributes.json @@ -0,0 +1,17 @@ +{ + "type": ["null", "array"], + "items": { + "type": ["null", "object"], + "properties": { + "id": { + "type": ["null", "integer"] + }, + "name": { + "type": ["null", "string"] + }, + "option": { + "type": ["null", "string"] + } + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_dimensions.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_dimensions.json new file mode 100644 index 000000000000..a2217d413f07 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_dimensions.json @@ -0,0 +1,14 @@ +{ + "type": ["null", "object"], + "properties": { + "length": { + "type": ["null", "string"] + }, + "width": { + "type": ["null", "string"] + }, + "height": { + "type": ["null", "string"] + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_downloads_properties.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_downloads_properties.json new file mode 100644 index 000000000000..daec89b5e05c --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_downloads_properties.json @@ -0,0 +1,17 @@ +{ + "type": ["null", "array"], + "items": { + "type": ["null", "object"], + "properties": { + "id": { + "type": ["null", "integer"] + }, + "name": { + "type": ["null", "string"] + }, + "file": { + "type": ["null", "string"] + } + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_images.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_images.json new file mode 100644 index 000000000000..4fc9def5a915 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/product_images.json @@ -0,0 +1,36 @@ +{ + "type": ["null", "array"], + "items": { + "type": ["null", "object"], + "properties": { + "id": { + "type": ["null", "integer"] + }, + "date_created": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_created_gmt": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_modified": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_modified_gmt": { + "type": ["null", "string"], + "format": "date-time" + }, + "src": { + "type": ["null", "string"] + }, + "name": { + "type": ["null", "string"] + }, + "alt": { + "type": ["null", "string"] + } + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/refund_line_items.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/refund_line_items.json new file mode 100644 index 000000000000..c97d5e47b39f --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/refund_line_items.json @@ -0,0 +1,70 @@ +{ + "type": ["null", "array"], + "items": { + "type": ["null", "object"], + "properties": { + "id": { + "type": ["null", "integer"] + }, + "name": { + "type": ["null", "string"] + }, + "product_id": { + "type": ["null", "integer"] + }, + "variation_id": { + "type": ["null", "integer"] + }, + "quantity": { + "type": ["null", "integer"] + }, + "tax_class": { + "type": ["null", "string", "integer"] + }, + "subtotal": { + "type": ["null", "string"] + }, + "subtotal_tax": { + "type": ["null", "string"] + }, + "total": { + "type": ["null", "string"] + }, + "total_tax": { + "type": ["null", "string"] + }, + "taxes": { + "type": ["null", "array"], + "items": { + "type": ["null", "object"], + "properties": { + "id": { + "type": ["null", "integer"] + }, + "total": { + "type": ["null", "string"] + }, + "subtotal": { + "type": ["null", "string"] + }, + "refund_total": { + "type": ["null", "number"] + } + } + } + }, + "meta_data": { + "$ref": "meta_data.json" + }, + "sku": { + "type": ["null", "string"] + }, + "price": { + "type": ["null", "string", "integer"] + }, + "refund_total": { + "type": ["null", "number"] + } + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/shipping_zone_method_settings.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/shipping_zone_method_settings.json new file mode 100644 index 000000000000..363fdf329462 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shared/shipping_zone_method_settings.json @@ -0,0 +1,29 @@ +{ + "type": ["null", "object"], + "properties": { + "id": { + "type": ["null", "integer"] + }, + "label": { + "type": ["null", "string"] + }, + "description": { + "type": ["null", "string"] + }, + "type": { + "type": ["null", "string"] + }, + "value": { + "type": ["null", "string"] + }, + "default": { + "type": ["null", "string"] + }, + "tip": { + "type": ["null", "string"] + }, + "placeholder": { + "type": ["null", "string"] + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shipping_methods.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shipping_methods.json new file mode 100644 index 000000000000..21f55bfd8067 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shipping_methods.json @@ -0,0 +1,15 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "string"] + }, + "title": { + "type": ["null", "string"] + }, + "description": { + "type": ["null", "string"] + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shipping_zone_locations.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shipping_zone_locations.json new file mode 100644 index 000000000000..6bcb8811c6fb --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shipping_zone_locations.json @@ -0,0 +1,12 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "code": { + "type": ["null", "string"] + }, + "type": { + "type": ["null", "string"] + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shipping_zone_methods.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shipping_zone_methods.json new file mode 100644 index 000000000000..f8c91b1a52d5 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shipping_zone_methods.json @@ -0,0 +1,30 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "instance_id": { + "type": ["null", "integer"] + }, + "title": { + "type": ["null", "string"] + }, + "order": { + "type": ["null", "integer"] + }, + "enabled": { + "type": ["null", "boolean"] + }, + "method_id": { + "type": ["null", "string"] + }, + "method_title": { + "type": ["null", "string"] + }, + "method_description": { + "type": ["null", "string"] + }, + "settings": { + "$ref": "shipping_zone_method_settings.json" + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shipping_zones.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shipping_zones.json new file mode 100644 index 000000000000..daa4455b82dc --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/shipping_zones.json @@ -0,0 +1,15 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "integer"] + }, + "name": { + "type": ["null", "string"] + }, + "order": { + "type": ["null", "integer"] + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/system_status_tools.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/system_status_tools.json new file mode 100644 index 000000000000..b11567b26690 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/system_status_tools.json @@ -0,0 +1,27 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "string"] + }, + "name": { + "type": ["null", "string"] + }, + "action": { + "type": ["null", "string"] + }, + "description": { + "type": ["null", "string"] + }, + "success": { + "type": ["null", "boolean"] + }, + "message": { + "type": ["null", "string"] + }, + "confirm": { + "type": ["null", "boolean"] + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/tax_classes.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/tax_classes.json new file mode 100644 index 000000000000..989c1bc2b717 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/tax_classes.json @@ -0,0 +1,12 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "slug": { + "type": ["null", "string"] + }, + "name": { + "type": ["null", "string"] + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/tax_rates.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/tax_rates.json new file mode 100644 index 000000000000..cabba1e6c939 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/schemas/tax_rates.json @@ -0,0 +1,54 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "integer"] + }, + "country": { + "type": ["null", "string"] + }, + "state": { + "type": ["null", "string"] + }, + "postcode": { + "type": ["null", "string"] + }, + "city": { + "type": ["null", "string"] + }, + "postcodes": { + "type": ["null", "array"], + "items": { + "type": ["null", "string"] + } + }, + "cities": { + "type": ["null", "array"], + "items": { + "type": ["null", "string"] + } + }, + "rate": { + "type": ["null", "string"] + }, + "name": { + "type": ["null", "string"] + }, + "priority": { + "type": ["null", "integer"] + }, + "compound": { + "type": ["null", "boolean"] + }, + "shipping": { + "type": ["null", "boolean"] + }, + "order": { + "type": ["null", "integer"] + }, + "class": { + "type": ["null", "string"] + } + } +} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/source.py b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/source.py index 78157d4c1695..4f4b454e9bf3 100644 --- a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/source.py +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/source.py @@ -2,210 +2,17 @@ # Copyright (c) 2022 Airbyte, Inc., all rights reserved. # +from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource -from abc import ABC -from base64 import b64encode -from datetime import datetime -from typing import Any, Iterable, List, Mapping, MutableMapping, Optional, Tuple -from urllib.parse import parse_qsl, urlparse +""" +This file provides the necessary constructs to interpret a provided declarative YAML configuration file into +source connector. -import pendulum -import requests -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 import HttpStream -from airbyte_cdk.sources.streams.http.auth import TokenAuthenticator +WARNING: Do not modify this file. +""" -user_agent_header = ( - "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36" -) - -# Basic full refresh stream -class WoocommerceStream(HttpStream, ABC): - - # Latest Stable Release - api_version = "wc/v3" - # Page size - limit = 100 - # Define primary key as sort key for full_refresh, or very first sync for incremental_refresh - primary_key = "id" - order_field = "date" - - def __init__(self, shop: str, start_date: str, api_key: str, api_secret: str, conversion_window_days: int, **kwargs): - super().__init__(**kwargs) - self.start_date = start_date - self.shop = shop - self.api_key = api_key - self.api_secret = api_secret - self.conversion_window_days = conversion_window_days - - @property - def url_base(self) -> str: - return f"https://{self.shop}/wp-json/{self.api_version}/" - - def path(self, **kwargs) -> str: - return f"{self.data_field}" - - 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]: - # for some source user-agent is expected by the woo-commerce API - return {"User-Agent": user_agent_header, "Content-Type": "application/json"} - - def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: - next_page = response.links.get("next", None) - if next_page: - return dict(parse_qsl(urlparse(next_page.get("url")).query)) - else: - return None - - 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 = {"per_page": self.limit} - if next_page_token: - params.update(**next_page_token) - else: - params.update({"after": pendulum.parse(self.start_date).replace(tzinfo=None), "before": pendulum.now().replace(tzinfo=None)}) - params.update({"orderby": self.order_field, "order": "asc"}) - - return params - - def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: - records = response.json() - - if isinstance(records, dict): - # for cases when we have a single record as dict - # add shop_url to the record to make querying easy - records["shop_url"] = self.shop - yield records - else: - # for other cases - for record in records: - # add shop_url to the record to make querying easy - record["shop_url"] = self.shop - yield record - - -class IncrementalWoocommerceStream(WoocommerceStream, ABC): - # Getting page size as 'limit' from parrent class - @property - def limit(self): - return super().limit - - # Setting the check point interval to the limit of the records output - state_checkpoint_interval = limit - # Setting the default cursor field for all streams - cursor_field = "date_modified" - - def get_updated_state(self, current_stream_state: MutableMapping[str, Any], latest_record: Mapping[str, Any]) -> Mapping[str, Any]: - if self.cursor_field == "date_modified" and datetime.now().isoformat() < current_stream_state.get(self.cursor_field, ""): - return {self.cursor_field: latest_record.get(self.cursor_field, "")} - return {self.cursor_field: max(latest_record.get(self.cursor_field, ""), current_stream_state.get(self.cursor_field, ""))} - - def request_params(self, stream_state: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None, **kwargs): - params = super().request_params(stream_state=stream_state, next_page_token=next_page_token, **kwargs) - AirbyteLogger().log("INFO", f"using params: {params}") - # If there is a next page token then we should only send pagination-related parameters. - if not next_page_token: - params["orderby"] = self.order_field - params["order"] = "asc" - if stream_state: - start_date = stream_state.get(self.cursor_field) - start_date = pendulum.parse(start_date).replace(tzinfo=None) - start_date = start_date.subtract(days=self.conversion_window_days) - - params["after"] = start_date - return params - - # Parse the stream_slice with respect to stream_state for Incremental refresh - # cases where we slice the stream, the endpoints for those classes don't accept any other filtering, - # but they provide us with the updated_at field in most cases, so we used that as incremental filtering during the order slicing. - def filter_records_newer_than_state(self, stream_state: Mapping[str, Any] = None, records_slice: Mapping[str, Any] = None) -> Iterable: - # Getting records >= state - if stream_state: - for record in records_slice: - if record[self.cursor_field] >= stream_state.get(self.cursor_field): - record["shop_url"] = self.shop - yield record - else: - for record in records_slice: - record["shop_url"] = self.shop - yield record - - -class NonFilteredStream(IncrementalWoocommerceStream): - def request_params(self, stream_state: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None, **kwargs): - params = super().request_params(stream_state=stream_state, next_page_token=next_page_token, **kwargs) - - if not next_page_token and stream_state: - del params["after"] - del params["before"] - return params - - def read_records( - self, stream_state: Mapping[str, Any] = None, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs - ) -> Iterable[Mapping[str, Any]]: - - records_slice = super().read_records(sync_mode=SyncMode.full_refresh, stream_slice=stream_slice, stream_state=stream_state) - yield from self.filter_records_newer_than_state(stream_state=stream_state, records_slice=records_slice) - - -class Coupons(IncrementalWoocommerceStream): - data_field = "coupons" - - -class Customers(NonFilteredStream): - data_field = "customers" - order_field = "registered_date" - cursor_field = "date_created" - - -class Orders(IncrementalWoocommerceStream): - data_field = "orders" - - -# Source -class SourceWoocommerce(AbstractSource): - def _convert_auth_to_token(self, username: str, password: str) -> str: - username = username.encode("latin1") - password = password.encode("latin1") - token = b64encode(b":".join((username, password))).strip().decode("ascii") - return token - - def check_connection(self, logger: AirbyteLogger, config: Mapping[str, Any]) -> Tuple[bool, any]: - """ - Testing connection availability for the connector. - """ - shop = config["shop"] - headers = {"Accept": "application/json"} - url = f"https://{shop}/wp-json/wc/v3/" - - try: - auth = TokenAuthenticator(token=self._convert_auth_to_token(config["api_key"], config["api_secret"]), auth_method="Basic") - headers = dict(Accept="application/json", **auth.get_auth_header()) - headers["User-Agent"] = user_agent_header - session = requests.get(url, headers=headers) - session.raise_for_status() - return True, None - except requests.exceptions.RequestException as e: - return False, e - - def streams(self, config: Mapping[str, Any]) -> List[Stream]: - - auth = auth = TokenAuthenticator( - token=self._convert_auth_to_token(config["api_key"], config["api_secret"]), auth_method="Basic" - ) # Oauth2Authenticator is also available if you need oauth support - args = { - "authenticator": auth, - "shop": config["shop"], - "start_date": config["start_date"], - "api_key": config["api_key"], - "api_secret": config["api_secret"], - "conversion_window_days": config["conversion_window_days"], - } - - return [Customers(**args), Coupons(**args), Orders(**args)] +# Declarative Source +class SourceWoocommerce(YamlDeclarativeSource): + def __init__(self): + super().__init__(**{"path_to_yaml": "woocommerce.yaml"}) diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/spec.json b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/spec.json deleted file mode 100644 index f08e87c3d03d..000000000000 --- a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/spec.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "documentationUrl": "https://docs.airbyte.com/integrations/sources/woocommerce", - "connectionSpecification": { - "$schema": "http://json-schema.org/draft-07/schema#", - "title": "Woocommerce Source CDK Specifications", - "type": "object", - "required": ["shop", "start_date", "api_key", "api_secret"], - "additionalProperties": false, - "properties": { - "shop": { - "type": "string", - "description": "The name of the store. For https://EXAMPLE.com, the shop name is 'EXAMPLE.com'." - }, - "start_date": { - "type": "string", - "description": "The date you would like to replicate data. Format: YYYY-MM-DD.", - "examples": ["2021-01-01"], - "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$" - }, - "api_key": { - "type": "string", - "description": "The CUSTOMER KEY for API in WooCommerce shop.", - "airbyte_secret": true - }, - "api_secret": { - "type": "string", - "description": "The CUSTOMER SECRET for API in WooCommerce shop.", - "airbyte_secret": true - }, - "conversion_window_days": { - "title": "Conversion Window", - "type": "integer", - "description": "A conversion window is the period of time after an ad interaction (such as an ad click or video view) during which a conversion, such as a purchase, is recorded in Google Ads.", - "minimum": 0, - "maximum": 1095, - "default": 0, - "examples": [14], - "order": 5 - } - } - } -} diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/spec.yaml b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/spec.yaml new file mode 100644 index 000000000000..d5209d20d270 --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/spec.yaml @@ -0,0 +1,47 @@ +documentationUrl: https://docs.airbyte.com/integrations/sources/woocommerce +connectionSpecification: + $schema: http://json-schema.org/draft-07/schema# + title: Woocommerce Spec + type: object + required: + - api_key + - api_secret + - shop + - start_date + additionalProperties: true + properties: + api_key: + type: string + title: Customer Key + description: Customer Key for API in WooCommerce shop + airbyte_secret: true + order: 0 + api_secret: + type: string + title: Customer Secret + description: Customer Secret for API in WooCommerce shop + airbyte_secret: true + order: 1 + shop: + type: string + title: Shop Name + description: The name of the store. For https://EXAMPLE.com, the shop name is 'EXAMPLE.com'. + order: 2 + start_date: + type: string + title: Start Date + description: "The date you would like to replicate data from. Format: YYYY-MM-DD" + examples: + - "2021-01-01" + pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}$" + order: 3 + conversion_window_days: + type: integer + title: Conversion Window + description: A conversion window is the period of time after an ad interaction (such as an ad click or video view) during which a conversion, such as a purchase, is recorded in Google Ads + order: 4 + minimum: 0 + maximum: 1095 + default: 0 + examples: + - 14 \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/woocommerce.yaml b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/woocommerce.yaml new file mode 100644 index 000000000000..4936b31218aa --- /dev/null +++ b/airbyte-integrations/connectors/source-woocommerce/source_woocommerce/woocommerce.yaml @@ -0,0 +1,278 @@ +version: "0.1.0" + +definitions: + selector: + extractor: + field_pointer: [ ] + schema_loader: + type: JsonFileSchemaLoader + file_path: "./source_woocommerce/schemas/{{ options['name'] }}.json" + requester: + url_base: "https://{{ config['shop'] }}/wp-json/wc/v3" + http_method: "GET" + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "{{ config['api_secret'] }}" + request_options_provider: + request_parameters: + orderby: "id" + order: "asc" + dates_are_gmt: "true" + date_stream_slicer: + class_name: source_woocommerce.components.DatetimeStreamSlicerWoocommerce + lookback_window: "{{ config.get('conversion_window_days', 0) }}d" + start_datetime: + datetime: "{{ format_datetime(config['start_date'], '%Y-%m-%dT%H:%M:%S') }}" + datetime_format: "%Y-%m-%dT%H:%M:%S" + end_datetime: + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%S') }}" + datetime_format: "%Y-%m-%dT%H:%M:%S" + datetime_format: "%Y-%m-%dT%H:%M:%S" + step: 30d + start_time_option: + field_name: modified_after + inject_into: request_parameter + end_time_option: + field_name: modified_before + inject_into: request_parameter + cursor_field: "{{ options['stream_cursor_field'] }}" + retriever: + record_selector: + $ref: "*ref(definitions.selector)" + paginator: + type: DefaultPaginator + $options: + url_base: "*ref(definitions.requester.url_base)" + pagination_strategy: + type: "OffsetIncrement" + page_size: 100 + page_token_option: + inject_into: "request_parameter" + field_name: "page" + page_size_option: + inject_into: "request_parameter" + field_name: "per_page" + requester: + $ref: "*ref(definitions.requester)" + base_stream: + retriever: + $ref: "*ref(definitions.retriever)" + base_incremental_stream: + retriever: + $ref: "*ref(definitions.retriever)" + stream_slicer: + $ref: "*ref(definitions.date_stream_slicer)" + customers_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "customers" + primary_key: "id" + path: "/customers" + coupons_stream: + $ref: "*ref(definitions.base_incremental_stream)" + $options: + name: "coupons" + stream_cursor_field: "date_modified_gmt" + primary_key: "id" + path: "/coupons" + orders_stream: + $ref: "*ref(definitions.base_incremental_stream)" + $options: + name: "orders" + stream_cursor_field: "date_modified_gmt" + primary_key: "id" + path: "/orders" + order_notes_stream: + $ref: "*ref(definitions.base_stream)" + retriever: + $ref: "*ref(definitions.retriever)" + stream_slicer: + type: SubstreamSlicer + parent_stream_configs: + - stream: "*ref(definitions.orders_stream)" + parent_key: id + stream_slice_field: id + $options: + name: "order_notes" + primary_key: "id" + path: "/orders/{{ stream_slice.id }}/notes" + products_stream: + $ref: "*ref(definitions.base_incremental_stream)" + $options: + name: "products" + stream_cursor_field: "date_modified_gmt" + primary_key: "id" + path: "/products" + product_variations_stream: + $ref: "*ref(definitions.base_stream)" + retriever: + $ref: "*ref(definitions.retriever)" + stream_slicer: + type: SubstreamSlicer + parent_stream_configs: + - stream: "*ref(definitions.products_stream)" + parent_key: id + stream_slice_field: id + $options: + name: "product_variations" + primary_key: "id" + path: "/products/{{ stream_slice.id }}/variations" + payment_gateways_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "payment_gateways" + primary_key: "id" + path: "/payment_gateways" + product_attributes_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "product_attributes" + primary_key: "id" + path: "/products/attributes" + product_attribute_terms_stream: + $ref: "*ref(definitions.base_stream)" + retriever: + $ref: "*ref(definitions.retriever)" + stream_slicer: + type: SubstreamSlicer + parent_stream_configs: + - stream: "*ref(definitions.product_attributes_stream)" + parent_key: id + stream_slice_field: id + $options: + name: "product_attribute_terms" + primary_key: "id" + path: "/products/attributes/{{ stream_slice.id }}/terms" + product_categories_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "product_categories" + primary_key: "id" + path: "/products/categories" + product_reviews_stream: + $ref: "*ref(definitions.base_incremental_stream)" + retriever: + $ref: "*ref(definitions.retriever)" + stream_slicer: + $ref: "*ref(definitions.date_stream_slicer)" + start_time_option: + field_name: after + inject_into: request_parameter + end_time_option: + field_name: before + inject_into: request_parameter + $options: + name: "product_reviews" + stream_cursor_field: "date_created_gmt" + primary_key: "id" + path: "/products/reviews" + product_shipping_classes_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "product_shipping_classes" + primary_key: "id" + path: "/products/shipping_classes" + product_tags_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "product_tags" + primary_key: "id" + path: "/products/tags" + refunds_stream: + $ref: "*ref(definitions.base_stream)" + retriever: + $ref: "*ref(definitions.retriever)" + stream_slicer: + type: SubstreamSlicer + parent_stream_configs: + - stream: "*ref(definitions.orders_stream)" + parent_key: id + stream_slice_field: id + $options: + name: "refunds" + primary_key: "id" + path: "/orders/{{ stream_slice.id }}/refunds" + shipping_methods_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "shipping_methods" + primary_key: "id" + path: "/shipping_methods" + shipping_zones_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "shipping_zones" + primary_key: "id" + path: "/shipping/zones" + shipping_stream_slicer: + type: SubstreamSlicer + parent_stream_configs: + - stream: "*ref(definitions.shipping_zones_stream)" + parent_key: id + stream_slice_field: id + shipping_zone_locations_stream: + $ref: "*ref(definitions.base_stream)" + retriever: + $ref: "*ref(definitions.retriever)" + stream_slicer: + $ref: "*ref(definitions.shipping_stream_slicer)" + $options: + name: "shipping_zone_locations" + primary_key: ["code", "type"] + path: "/shipping/zones/{{ stream_slice.id }}/locations" + shipping_zone_methods_stream: + $ref: "*ref(definitions.base_stream)" + retriever: + $ref: "*ref(definitions.retriever)" + stream_slicer: + $ref: "*ref(definitions.shipping_stream_slicer)" + $options: + name: "shipping_zone_methods" + primary_key: "instance_id" + path: "/shipping/zones/{{ stream_slice.id }}/methods" + system_status_tools_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "system_status_tools" + primary_key: "id" + path: "/system_status/tools" + tax_classes_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "tax_classes" + primary_key: ["slug", "name"] + path: "/taxes/classes" + tax_rates_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "tax_rates" + primary_key: "id" + path: "/taxes" + +streams: + - "*ref(definitions.customers_stream)" + - "*ref(definitions.coupons_stream)" + - "*ref(definitions.orders_stream)" + - "*ref(definitions.order_notes_stream)" + - "*ref(definitions.payment_gateways_stream)" + - "*ref(definitions.products_stream)" + - "*ref(definitions.product_attributes_stream)" + - "*ref(definitions.product_attribute_terms_stream)" + - "*ref(definitions.product_categories_stream)" + - "*ref(definitions.product_reviews_stream)" + - "*ref(definitions.product_shipping_classes_stream)" + - "*ref(definitions.product_tags_stream)" + - "*ref(definitions.product_variations_stream)" + - "*ref(definitions.refunds_stream)" + - "*ref(definitions.shipping_methods_stream)" + - "*ref(definitions.shipping_zone_locations_stream)" + - "*ref(definitions.shipping_zone_methods_stream)" + - "*ref(definitions.shipping_zones_stream)" + - "*ref(definitions.system_status_tools_stream)" + - "*ref(definitions.tax_classes_stream)" + - "*ref(definitions.tax_rates_stream)" + +check: + stream_names: + - "system_status_tools" diff --git a/airbyte-integrations/connectors/source-zendesk-support/Dockerfile b/airbyte-integrations/connectors/source-zendesk-support/Dockerfile index a7af03fc48a7..e4f60028e1c9 100644 --- a/airbyte-integrations/connectors/source-zendesk-support/Dockerfile +++ b/airbyte-integrations/connectors/source-zendesk-support/Dockerfile @@ -25,5 +25,5 @@ COPY source_zendesk_support ./source_zendesk_support ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.2.18 +LABEL io.airbyte.version=0.2.19 LABEL io.airbyte.name=airbyte/source-zendesk-support diff --git a/airbyte-integrations/connectors/source-zendesk-support/source_zendesk_support/streams.py b/airbyte-integrations/connectors/source-zendesk-support/source_zendesk_support/streams.py index e2ee118d8ef1..304ed7498d73 100644 --- a/airbyte-integrations/connectors/source-zendesk-support/source_zendesk_support/streams.py +++ b/airbyte-integrations/connectors/source-zendesk-support/source_zendesk_support/streams.py @@ -270,7 +270,7 @@ def _retry( if original_exception: raise original_exception raise DefaultBackoffException(request=request, response=response) - if response: + if response is not None: backoff_time = self.backoff_time(response) time.sleep(max(0, int(backoff_time - response.elapsed.total_seconds()))) self.future_requests.append( 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-json-validation/src/main/java/io/airbyte/validation/json/JsonSchemaValidator.java b/airbyte-json-validation/src/main/java/io/airbyte/validation/json/JsonSchemaValidator.java index 04fb601221d9..5c9507bee977 100644 --- a/airbyte-json-validation/src/main/java/io/airbyte/validation/json/JsonSchemaValidator.java +++ b/airbyte-json-validation/src/main/java/io/airbyte/validation/json/JsonSchemaValidator.java @@ -5,14 +5,19 @@ package io.airbyte.validation.json; import com.fasterxml.jackson.databind.JsonNode; +import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Preconditions; +import com.networknt.schema.JsonMetaSchema; +import com.networknt.schema.JsonSchema; import com.networknt.schema.JsonSchemaFactory; -import com.networknt.schema.SchemaValidatorsConfig; import com.networknt.schema.SpecVersion; +import com.networknt.schema.ValidationContext; import com.networknt.schema.ValidationMessage; import io.airbyte.commons.string.Strings; import java.io.File; import java.io.IOException; +import java.net.URI; +import java.net.URISyntaxException; import java.util.List; import java.util.Set; import java.util.stream.Collectors; @@ -25,13 +30,37 @@ public class JsonSchemaValidator { private static final Logger LOGGER = LoggerFactory.getLogger(JsonSchemaValidator.class); + // This URI just needs to point at any path in the same directory as /app/WellKnownTypes.json + // It's required for the JsonSchema#validate method to resolve $ref correctly. + private static final URI DEFAULT_BASE_URI; + + static { + try { + DEFAULT_BASE_URI = new URI("file:///app/nonexistent_file.json"); + } catch (URISyntaxException e) { + throw new RuntimeException(e); + } + } - private final SchemaValidatorsConfig schemaValidatorsConfig; private final JsonSchemaFactory jsonSchemaFactory; + private final URI baseUri; public JsonSchemaValidator() { - this.schemaValidatorsConfig = new SchemaValidatorsConfig(); + this(DEFAULT_BASE_URI); + } + + /** + * The public constructor hardcodes a URL with access to WellKnownTypes.json. This method allows + * tests to override that URI + * + * Required to resolve $ref schemas using WellKnownTypes.json + * + * @param baseUri The base URI for schema resolution + */ + @VisibleForTesting + protected JsonSchemaValidator(URI baseUri) { this.jsonSchemaFactory = JsonSchemaFactory.getInstance(SpecVersion.VersionFlag.V7); + this.baseUri = baseUri; } public Set validate(final JsonNode schemaJson, final JsonNode objectJson) { @@ -60,8 +89,38 @@ private Set validateInternal(final JsonNode schemaJson, final Preconditions.checkNotNull(schemaJson); Preconditions.checkNotNull(objectJson); - return jsonSchemaFactory.getSchema(schemaJson, schemaValidatorsConfig) - .validate(objectJson); + // Default to draft-07, but have handling for the other metaschemas that networknt supports + JsonMetaSchema metaschema; + JsonNode metaschemaNode = schemaJson.get("$schema"); + if (metaschemaNode == null || metaschemaNode.asText() == null || metaschemaNode.asText().isEmpty()) { + metaschema = JsonMetaSchema.getV7(); + } else { + String metaschemaString = metaschemaNode.asText(); + // We're not using "http://....".equals(), because we want to avoid weirdness with https, etc. + if (metaschemaString.contains("json-schema.org/draft-04")) { + metaschema = JsonMetaSchema.getV4(); + } else if (metaschemaString.contains("json-schema.org/draft-06")) { + metaschema = JsonMetaSchema.getV6(); + } else if (metaschemaString.contains("json-schema.org/draft/2019-09")) { + metaschema = JsonMetaSchema.getV201909(); + } else if (metaschemaString.contains("json-schema.org/draft/2020-12")) { + metaschema = JsonMetaSchema.getV202012(); + } else { + metaschema = JsonMetaSchema.getV7(); + } + } + + ValidationContext context = new ValidationContext( + jsonSchemaFactory.getUriFactory(), + null, + metaschema, + jsonSchemaFactory, + null); + JsonSchema schema = new JsonSchema( + context, + baseUri, + schemaJson); + return schema.validate(objectJson); } public boolean test(final JsonNode schemaJson, final JsonNode objectJson) { diff --git a/airbyte-json-validation/src/test/java/io/airbyte/validation/json/JsonSchemaValidatorTest.java b/airbyte-json-validation/src/test/java/io/airbyte/validation/json/JsonSchemaValidatorTest.java index 6dcf3c554b29..a1a0b511e40c 100644 --- a/airbyte-json-validation/src/test/java/io/airbyte/validation/json/JsonSchemaValidatorTest.java +++ b/airbyte-json-validation/src/test/java/io/airbyte/validation/json/JsonSchemaValidatorTest.java @@ -5,6 +5,7 @@ package io.airbyte.validation.json; import static org.junit.jupiter.api.Assertions.assertDoesNotThrow; +import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertThrows; @@ -15,7 +16,10 @@ import io.airbyte.commons.json.Jsons; import java.io.File; import java.io.IOException; +import java.net.URI; import java.nio.file.Files; +import java.util.Set; +import lombok.SneakyThrows; import org.junit.jupiter.api.Test; class JsonSchemaValidatorTest { @@ -102,4 +106,39 @@ void test() throws IOException { assertNull(JsonSchemaValidator.getSchema(schemaFile, "NonExistentObject")); } + @SneakyThrows + @Test + void testResolveReferences() throws IOException { + String referencableSchemas = """ + { + "definitions": { + "ref1": {"type": "string"}, + "ref2": {"type": "boolean"} + } + } + """; + final File schemaFile = IOs.writeFile(Files.createTempDirectory("test"), "WellKnownTypes.json", referencableSchemas).toFile(); + JsonSchemaValidator jsonSchemaValidator = + new JsonSchemaValidator(new URI("file://" + schemaFile.getParentFile().getAbsolutePath() + "/foo.json")); + + Set validationResult = jsonSchemaValidator.validate( + Jsons.deserialize(""" + { + "type": "object", + "properties": { + "prop1": {"$ref": "WellKnownTypes.json#/definitions/ref1"}, + "prop2": {"$ref": "WellKnownTypes.json#/definitions/ref2"} + } + } + """), + Jsons.deserialize(""" + { + "prop1": "foo", + "prop2": "false" + } + """)); + + assertEquals(Set.of("$.prop2: string found, boolean expected"), validationResult); + } + } diff --git a/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/ApmTraceConstants.java b/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/ApmTraceConstants.java index 5c534659e63f..fcdcc2e0b380 100644 --- a/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/ApmTraceConstants.java +++ b/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/ApmTraceConstants.java @@ -74,6 +74,11 @@ public static final class Tags { */ public static final String FAILURE_ORIGINS_KEY = "failure_origins"; + /** + * Name of the APM trace tag that holds the failure type(s) associated with the trace. + */ + public static final String FAILURE_TYPES_KEY = "failure_types"; + /** * Name of the APM trace tag that holds the job ID value associated with the trace. */ diff --git a/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/ApmTraceUtils.java b/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/ApmTraceUtils.java index feaee0f20558..bcd273a973c2 100644 --- a/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/ApmTraceUtils.java +++ b/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/ApmTraceUtils.java @@ -4,10 +4,14 @@ package io.airbyte.metrics.lib; +import datadog.trace.api.DDTags; +import datadog.trace.api.interceptor.MutableSpan; import io.opentracing.Span; import io.opentracing.log.Fields; import io.opentracing.tag.Tags; import io.opentracing.util.GlobalTracer; +import java.io.PrintWriter; +import java.io.StringWriter; import java.util.Map; /** @@ -83,6 +87,43 @@ public static void addExceptionToTrace(final Span span, final Throwable t) { } } + /** + * Adds all the provided tags to the root span. + * + * @param tags A map of tags to be added to the root span. + */ + public static void addTagsToRootSpan(final Map tags) { + final Span activeSpan = GlobalTracer.get().activeSpan(); + if (activeSpan instanceof MutableSpan) { + final MutableSpan localRootSpan = ((MutableSpan) activeSpan).getLocalRootSpan(); + tags.entrySet().forEach(entry -> { + localRootSpan.setTag(formatTag(entry.getKey(), TAG_PREFIX), entry.getValue().toString()); + }); + } + } + + /** + * Adds an exception to the root span, if an active one exists. + * + * @param t The {@link Throwable} to be added to the provided span. + */ + public static void recordErrorOnRootSpan(final Throwable t) { + final Span activeSpan = GlobalTracer.get().activeSpan(); + if (activeSpan != null) { + activeSpan.setTag(Tags.ERROR, true); + activeSpan.log(Map.of(Fields.ERROR_OBJECT, t)); + } + if (activeSpan instanceof MutableSpan) { + final MutableSpan localRootSpan = ((MutableSpan) activeSpan).getLocalRootSpan(); + localRootSpan.setError(true); + localRootSpan.setTag(DDTags.ERROR_MSG, t.getMessage()); + localRootSpan.setTag(DDTags.ERROR_TYPE, t.getClass().getName()); + final StringWriter errorString = new StringWriter(); + t.printStackTrace(new PrintWriter(errorString)); + localRootSpan.setTag(DDTags.ERROR_STACK, errorString.toString()); + } + } + /** * Formats the tag key using {@link #TAG_FORMAT} provided by this utility, using the default tag * prefix {@link #TAG_PREFIX}. diff --git a/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/MetricTags.java b/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/MetricTags.java index 99e6fbe60469..4ffd6e2081c9 100644 --- a/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/MetricTags.java +++ b/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/MetricTags.java @@ -5,6 +5,7 @@ package io.airbyte.metrics.lib; import io.airbyte.config.FailureReason.FailureOrigin; +import io.airbyte.config.FailureReason.FailureType; import io.airbyte.db.instance.configs.jooq.generated.enums.ReleaseStage; import io.airbyte.db.instance.jobs.jooq.generated.enums.JobStatus; @@ -15,6 +16,7 @@ public class MetricTags { public static final String CONNECTION_ID = "connection_id"; public static final String FAILURE_ORIGIN = "failure_origin"; + public static final String FAILURE_TYPE = "failure_type"; public static final String JOB_ID = "job_id"; public static final String JOB_STATUS = "job_status"; public static final String RELEASE_STAGE = "release_stage"; @@ -32,6 +34,10 @@ public static String getFailureOrigin(final FailureOrigin origin) { return origin != null ? origin.value() : FailureOrigin.UNKNOWN.value(); } + public static String getFailureType(final FailureType origin) { + return origin != null ? origin.value() : UNKNOWN; + } + public static String getJobStatus(final JobStatus status) { return status != null ? status.getLiteral() : UNKNOWN; } diff --git a/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/OssMetricsRegistry.java b/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/OssMetricsRegistry.java index 3dfbbd95e302..1fae89c965c1 100644 --- a/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/OssMetricsRegistry.java +++ b/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/OssMetricsRegistry.java @@ -42,7 +42,7 @@ public enum OssMetricsRegistry implements MetricsRegistry { ATTEMPT_FAILED_BY_FAILURE_ORIGIN( MetricEmittingApps.WORKER, "attempt_failed_by_failure_origin", - "increments for every failure origin a failed attempt has. since a failure can have multiple origins, a single failure can be counted more than once. tagged by failure origin."), + "increments for every failure origin a failed attempt has. since a failure can have multiple origins, a single failure can be counted more than once. tagged by failure origin and failure type."), ATTEMPT_SUCCEEDED_BY_RELEASE_STAGE( MetricEmittingApps.WORKER, "attempt_succeeded_by_release_stage", diff --git a/airbyte-metrics/metrics-lib/src/test/java/io/airbyte/metrics/lib/ApmTraceUtilsTest.java b/airbyte-metrics/metrics-lib/src/test/java/io/airbyte/metrics/lib/ApmTraceUtilsTest.java index c45eb92df676..d6b95df15e31 100644 --- a/airbyte-metrics/metrics-lib/src/test/java/io/airbyte/metrics/lib/ApmTraceUtilsTest.java +++ b/airbyte-metrics/metrics-lib/src/test/java/io/airbyte/metrics/lib/ApmTraceUtilsTest.java @@ -11,10 +11,17 @@ import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; +import static org.mockito.Mockito.withSettings; +import datadog.trace.api.DDTags; +import datadog.trace.api.interceptor.MutableSpan; import io.opentracing.Span; import io.opentracing.Tracer; +import io.opentracing.log.Fields; +import io.opentracing.tag.Tags; import io.opentracing.util.GlobalTracerTestUtil; +import java.io.PrintWriter; +import java.io.StringWriter; import java.util.Map; import org.junit.After; import org.junit.Before; @@ -89,4 +96,56 @@ void testFormattingTagKeys() { assertEquals("airbyte." + tagPrefix1 + "." + tagKey1, result2); } + @Test + void testAddingTagsToRootSpan() { + final Span activeSpan = mock(Span.class, withSettings().extraInterfaces(MutableSpan.class)); + final Tracer tracer = mock(Tracer.class); + final MutableSpan localRootSpan = mock(MutableSpan.class); + when(tracer.activeSpan()).thenReturn(activeSpan); + when(((MutableSpan) activeSpan).getLocalRootSpan()).thenReturn(localRootSpan); + GlobalTracerTestUtil.setGlobalTracerUnconditionally(tracer); + ApmTraceUtils.addTagsToRootSpan(TAGS); + verify(localRootSpan, times(1)).setTag(String.format(TAG_FORMAT, TAG_PREFIX, TAG_1), VALUE_1); + verify(localRootSpan, times(1)).setTag(String.format(TAG_FORMAT, TAG_PREFIX, TAG_2), VALUE_2); + } + + @Test + void testAddingTagsToRootSpanWhenActiveSpanIsNull() { + final Tracer tracer = mock(Tracer.class); + when(tracer.activeSpan()).thenReturn(null); + GlobalTracerTestUtil.setGlobalTracerUnconditionally(tracer); + Assertions.assertDoesNotThrow(() -> ApmTraceUtils.addTagsToRootSpan(TAGS)); + } + + @Test + void testRecordErrorOnRootSpan() { + final Span activeSpan = mock(Span.class, withSettings().extraInterfaces(MutableSpan.class)); + final Tracer tracer = mock(Tracer.class); + final MutableSpan localRootSpan = mock(MutableSpan.class); + final Throwable exception = mock(Throwable.class); + when(tracer.activeSpan()).thenReturn(activeSpan); + when(((MutableSpan) activeSpan).getLocalRootSpan()).thenReturn(localRootSpan); + GlobalTracerTestUtil.setGlobalTracerUnconditionally(tracer); + + ApmTraceUtils.recordErrorOnRootSpan(exception); + verify(activeSpan, times(1)).setTag(Tags.ERROR, true); + verify(activeSpan, times(1)).log(Map.of(Fields.ERROR_OBJECT, exception)); + + verify(localRootSpan, times(1)).setError(true); + verify(localRootSpan, times(1)).setTag(DDTags.ERROR_MSG, exception.getMessage()); + verify(localRootSpan, times(1)).setTag(DDTags.ERROR_TYPE, exception.getClass().getName()); + final StringWriter expectedErrorString = new StringWriter(); + exception.printStackTrace(new PrintWriter(expectedErrorString)); + verify(localRootSpan, times(1)).setTag(DDTags.ERROR_STACK, expectedErrorString.toString()); + } + + @Test + void testRecordErrorOnRootSpanWhenActiveSpanIsNull() { + final Throwable exception = mock(Throwable.class); + final Tracer tracer = mock(Tracer.class); + when(tracer.activeSpan()).thenReturn(null); + GlobalTracerTestUtil.setGlobalTracerUnconditionally(tracer); + Assertions.assertDoesNotThrow(() -> ApmTraceUtils.recordErrorOnRootSpan(exception)); + } + } 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-persistence/job-persistence/src/main/java/io/airbyte/persistence/job/errorreporter/JobErrorReporter.java b/airbyte-persistence/job-persistence/src/main/java/io/airbyte/persistence/job/errorreporter/JobErrorReporter.java index 64d9996bf3d3..71544885062f 100644 --- a/airbyte-persistence/job-persistence/src/main/java/io/airbyte/persistence/job/errorreporter/JobErrorReporter.java +++ b/airbyte-persistence/job-persistence/src/main/java/io/airbyte/persistence/job/errorreporter/JobErrorReporter.java @@ -6,6 +6,7 @@ import com.google.common.collect.ImmutableSet; import edu.umd.cs.findbugs.annotations.Nullable; +import io.airbyte.commons.docker.DockerUtils; import io.airbyte.commons.lang.Exceptions; import io.airbyte.commons.map.MoreMaps; import io.airbyte.config.AttemptFailureSummary; @@ -55,24 +56,18 @@ public class JobErrorReporter { private final ConfigRepository configRepository; private final DeploymentMode deploymentMode; private final String airbyteVersion; - private final String normalizationImage; - private final String normalizationVersion; private final WebUrlHelper webUrlHelper; private final JobErrorReportingClient jobErrorReportingClient; public JobErrorReporter(final ConfigRepository configRepository, final DeploymentMode deploymentMode, final String airbyteVersion, - final String normalizationImage, - final String normalizationVersion, final WebUrlHelper webUrlHelper, final JobErrorReportingClient jobErrorReportingClient) { this.configRepository = configRepository; this.deploymentMode = deploymentMode; this.airbyteVersion = airbyteVersion; - this.normalizationImage = normalizationImage; - this.normalizationVersion = normalizationVersion; this.webUrlHelper = webUrlHelper; this.jobErrorReportingClient = jobErrorReportingClient; } @@ -119,10 +114,11 @@ public void reportSyncJobFailure(final UUID connectionId, final AttemptFailureSu // the destination) final Map metadata = MoreMaps.merge( commonMetadata, - getNormalizationMetadata(), + getNormalizationMetadata(destinationDefinition.getNormalizationConfig().getNormalizationRepository()), prefixConnectorMetadataKeys(getSourceMetadata(sourceDefinition), "source"), getDestinationMetadata(destinationDefinition)); - final String dockerImage = String.format("%s:%s", normalizationImage, normalizationVersion); + final String dockerImage = DockerUtils.getTaggedImageName(destinationDefinition.getNormalizationConfig().getNormalizationRepository(), + destinationDefinition.getNormalizationConfig().getNormalizationTag()); reportJobFailureReason(workspace, failureReason, dockerImage, metadata); } @@ -229,7 +225,7 @@ private Map getSourceMetadata(final StandardSourceDefinition sou Map.entry(CONNECTOR_RELEASE_STAGE_META_KEY, sourceDefinition.getReleaseStage().value())); } - private Map getNormalizationMetadata() { + private Map getNormalizationMetadata(String normalizationImage) { return Map.ofEntries( Map.entry(NORMALIZATION_REPOSITORY_META_KEY, normalizationImage)); } diff --git a/airbyte-persistence/job-persistence/src/test/java/io/airbyte/persistence/job/errorreporter/JobErrorReporterTest.java b/airbyte-persistence/job-persistence/src/test/java/io/airbyte/persistence/job/errorreporter/JobErrorReporterTest.java index ae97e8fbeedb..7f63364c3665 100644 --- a/airbyte-persistence/job-persistence/src/test/java/io/airbyte/persistence/job/errorreporter/JobErrorReporterTest.java +++ b/airbyte-persistence/job-persistence/src/test/java/io/airbyte/persistence/job/errorreporter/JobErrorReporterTest.java @@ -12,6 +12,7 @@ import io.airbyte.config.FailureReason.FailureOrigin; import io.airbyte.config.FailureReason.FailureType; import io.airbyte.config.Metadata; +import io.airbyte.config.NormalizationDestinationDefinitionConfig; import io.airbyte.config.StandardDestinationDefinition; import io.airbyte.config.StandardSourceDefinition; import io.airbyte.config.StandardWorkspace; @@ -38,7 +39,8 @@ class JobErrorReporterTest { private static final DeploymentMode DEPLOYMENT_MODE = DeploymentMode.OSS; private static final String AIRBYTE_VERSION = "0.1.40"; private static final String NORMALIZATION_IMAGE = "airbyte/normalization"; - private static final String NORMALIZATION_VERSION = "0.2.18"; + private static final String NORMALIZATION_VERSION = "0.2.24"; + private static final String NORMALIZATION_INTEGRATION_TYPE = "snowflake"; private static final UUID SOURCE_DEFINITION_ID = UUID.randomUUID(); private static final String SOURCE_DEFINITION_NAME = "stripe"; private static final String SOURCE_DOCKER_REPOSITORY = "airbyte/source-stripe"; @@ -85,7 +87,7 @@ void setup() { jobErrorReportingClient = mock(JobErrorReportingClient.class); webUrlHelper = mock(WebUrlHelper.class); jobErrorReporter = new JobErrorReporter( - configRepository, DEPLOYMENT_MODE, AIRBYTE_VERSION, NORMALIZATION_IMAGE, NORMALIZATION_VERSION, webUrlHelper, jobErrorReportingClient); + configRepository, DEPLOYMENT_MODE, AIRBYTE_VERSION, webUrlHelper, jobErrorReportingClient); Mockito.when(webUrlHelper.getConnectionUrl(WORKSPACE_ID, CONNECTION_ID)).thenReturn(CONNECTION_URL); Mockito.when(webUrlHelper.getWorkspaceUrl(WORKSPACE_ID)).thenReturn(WORKSPACE_URL); @@ -138,6 +140,10 @@ void testReportSyncJobFailure() { .withDockerRepository(DESTINATION_DOCKER_REPOSITORY) .withReleaseStage(DESTINATION_RELEASE_STAGE) .withDestinationDefinitionId(DESTINATION_DEFINITION_ID) + .withNormalizationConfig(new NormalizationDestinationDefinitionConfig() + .withNormalizationTag(NORMALIZATION_VERSION) + .withNormalizationRepository(NORMALIZATION_IMAGE) + .withNormalizationIntegrationType(NORMALIZATION_INTEGRATION_TYPE)) .withName(DESTINATION_DEFINITION_NAME)); final StandardWorkspace mWorkspace = Mockito.mock(StandardWorkspace.class); diff --git a/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/AirbyteStreamNameNamespacePair.java b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/AirbyteStreamNameNamespacePair.java new file mode 100644 index 000000000000..9fa1cf3f0df0 --- /dev/null +++ b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/AirbyteStreamNameNamespacePair.java @@ -0,0 +1,107 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.protocol.models.v0; + +import java.util.HashSet; +import java.util.Objects; +import java.util.Set; + +/** + * Wraps an {@link io.airbyte.protocol.models.AirbyteStream}'s name and namespace fields to simplify + * comparison checks. This is helpful since these two fields are often used as an Airbyte Stream's + * unique identifiers. + */ +public class AirbyteStreamNameNamespacePair implements Comparable { + + final private String name; + final private String namespace; + + public AirbyteStreamNameNamespacePair(final String name, final String namespace) { + this.name = name; + this.namespace = namespace; + } + + public String getName() { + return name; + } + + public String getNamespace() { + return namespace; + } + + /** + * As this is used as a metrics tag, enforce snake case. + */ + @Override + public String toString() { + return (namespace != null ? namespace : "") + "_" + name; + } + + @Override + public boolean equals(final Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + final AirbyteStreamNameNamespacePair that = (AirbyteStreamNameNamespacePair) o; + return Objects.equals(name, that.name) && Objects.equals(namespace, that.namespace); + } + + @Override + public int hashCode() { + return Objects.hash(name, namespace); + } + + @Override + public int compareTo(final AirbyteStreamNameNamespacePair o) { + if (o == null) { + return 1; + } + + // first sort by name + final int nameCheck = name.compareTo(o.getName()); + if (nameCheck != 0) { + return nameCheck; + } + + // then sort by namespace + if (namespace == null && o.getNamespace() == null) { + return 0; + } + if (namespace == null && o.getNamespace() != null) { + return -1; + } + if (namespace != null && o.getNamespace() == null) { + return 1; + } + return namespace.compareTo(o.getNamespace()); + } + + public static AirbyteStreamNameNamespacePair fromRecordMessage(final AirbyteRecordMessage msg) { + return new AirbyteStreamNameNamespacePair(msg.getStream(), msg.getNamespace()); + } + + public static AirbyteStreamNameNamespacePair fromAirbyteStream(final AirbyteStream stream) { + return new AirbyteStreamNameNamespacePair(stream.getName(), stream.getNamespace()); + } + + public static AirbyteStreamNameNamespacePair fromConfiguredAirbyteSteam(final ConfiguredAirbyteStream stream) { + return fromAirbyteStream(stream.getStream()); + } + + public static Set fromConfiguredCatalog(final ConfiguredAirbyteCatalog catalog) { + final var pairs = new HashSet(); + + for (final ConfiguredAirbyteStream stream : catalog.getStreams()) { + final var pair = fromAirbyteStream(stream.getStream()); + pairs.add(pair); + } + + return pairs; + } + +} diff --git a/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/CatalogHelpers.java b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/CatalogHelpers.java new file mode 100644 index 000000000000..f7dca1d0cb9b --- /dev/null +++ b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/CatalogHelpers.java @@ -0,0 +1,478 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.protocol.models.v0; + +import com.fasterxml.jackson.databind.JsonNode; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.ImmutableMap; +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import io.airbyte.commons.json.JsonSchemas; +import io.airbyte.commons.json.Jsons; +import io.airbyte.commons.util.MoreIterators; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; +import io.airbyte.protocol.models.v0.transform_models.FieldTransform; +import io.airbyte.protocol.models.v0.transform_models.StreamTransform; +import io.airbyte.protocol.models.v0.transform_models.UpdateFieldSchemaTransform; +import io.airbyte.protocol.models.v0.transform_models.UpdateStreamTransform; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Objects; +import java.util.Optional; +import java.util.Set; +import java.util.stream.Collectors; +import org.apache.commons.lang3.tuple.Pair; + +/** + * Helper class for Catalog and Stream related operations. Generally only used in tests. + */ +public class CatalogHelpers { + + private static final String ITEMS_KEY = "items"; + + public static AirbyteCatalog createAirbyteCatalog(final String streamName, + final Field... fields) { + return new AirbyteCatalog().withStreams( + Lists.newArrayList(createAirbyteStream(streamName, fields))); + } + + public static AirbyteStream createAirbyteStream(final String streamName, final Field... fields) { + // Namespace is null since not all sources set it. + return createAirbyteStream(streamName, null, Arrays.asList(fields)); + } + + public static AirbyteStream createAirbyteStream(final String streamName, + final String namespace, + final Field... fields) { + return createAirbyteStream(streamName, namespace, Arrays.asList(fields)); + } + + public static AirbyteStream createAirbyteStream(final String streamName, + final String namespace, + final List fields) { + return new AirbyteStream().withName(streamName).withNamespace(namespace) + .withJsonSchema(fieldsToJsonSchema(fields)) + .withSupportedSyncModes(Lists.newArrayList(SyncMode.FULL_REFRESH)); + } + + public static ConfiguredAirbyteCatalog createConfiguredAirbyteCatalog(final String streamName, + final String namespace, + final Field... fields) { + return new ConfiguredAirbyteCatalog().withStreams( + Lists.newArrayList(createConfiguredAirbyteStream(streamName, namespace, fields))); + } + + public static ConfiguredAirbyteCatalog createConfiguredAirbyteCatalog(final String streamName, + final String namespace, + final List fields) { + return new ConfiguredAirbyteCatalog().withStreams( + Lists.newArrayList(createConfiguredAirbyteStream(streamName, namespace, fields))); + } + + public static ConfiguredAirbyteStream createConfiguredAirbyteStream(final String streamName, + final String namespace, + final Field... fields) { + return createConfiguredAirbyteStream(streamName, namespace, Arrays.asList(fields)); + } + + public static ConfiguredAirbyteStream createConfiguredAirbyteStream(final String streamName, + final String namespace, + final List fields) { + return new ConfiguredAirbyteStream() + .withStream(new AirbyteStream().withName(streamName).withNamespace(namespace) + .withJsonSchema(fieldsToJsonSchema(fields)) + .withSupportedSyncModes(Lists.newArrayList(SyncMode.FULL_REFRESH))) + .withSyncMode(SyncMode.FULL_REFRESH).withDestinationSyncMode(DestinationSyncMode.OVERWRITE); + } + + /** + * Converts a {@link ConfiguredAirbyteCatalog} into an {@link AirbyteCatalog}. This is possible + * because the latter is a subset of the former. + * + * @param configuredCatalog - catalog to convert + * @return - airbyte catalog + */ + public static AirbyteCatalog configuredCatalogToCatalog( + final ConfiguredAirbyteCatalog configuredCatalog) { + return new AirbyteCatalog().withStreams( + configuredCatalog.getStreams() + .stream() + .map(ConfiguredAirbyteStream::getStream) + .toList()); + } + + /** + * Extracts {@link StreamDescriptor} for a given {@link AirbyteStream} + * + * @param airbyteStream stream + * @return stream descriptor + */ + public static StreamDescriptor extractDescriptor(final ConfiguredAirbyteStream airbyteStream) { + return extractDescriptor(airbyteStream.getStream()); + } + + /** + * Extracts {@link StreamDescriptor} for a given {@link ConfiguredAirbyteStream} + * + * @param airbyteStream stream + * @return stream descriptor + */ + public static StreamDescriptor extractDescriptor(final AirbyteStream airbyteStream) { + return new StreamDescriptor().withName(airbyteStream.getName()) + .withNamespace(airbyteStream.getNamespace()); + } + + /** + * Extracts {@link StreamDescriptor}s for each stream in a given {@link ConfiguredAirbyteCatalog} + * + * @param configuredCatalog catalog + * @return list of stream descriptors + */ + public static List extractStreamDescriptors( + final ConfiguredAirbyteCatalog configuredCatalog) { + return extractStreamDescriptors(configuredCatalogToCatalog(configuredCatalog)); + } + + /** + * Extracts {@link StreamDescriptor}s for each stream with an incremental {@link SyncMode} in a + * given {@link ConfiguredAirbyteCatalog} + * + * @param configuredCatalog catalog + * @return list of stream descriptors + */ + public static List extractIncrementalStreamDescriptors( + final ConfiguredAirbyteCatalog configuredCatalog) { + return configuredCatalog.getStreams() + .stream() + .filter(configuredStream -> configuredStream.getSyncMode() == SyncMode.INCREMENTAL) + .map(configuredStream -> extractDescriptor(configuredStream.getStream())) + .toList(); + } + + /** + * Extracts {@link StreamDescriptor}s for each stream in a given {@link AirbyteCatalog} + * + * @param catalog catalog + * @return list of stream descriptors + */ + public static List extractStreamDescriptors(final AirbyteCatalog catalog) { + return catalog.getStreams() + .stream() + .map(CatalogHelpers::extractDescriptor) + .toList(); + } + + /** + * Convert a Catalog into a ConfiguredCatalog. This applies minimum default to the Catalog to make + * it a valid ConfiguredCatalog. + * + * @param catalog - Catalog to be converted. + * @return - ConfiguredCatalog based of off the input catalog. + */ + public static ConfiguredAirbyteCatalog toDefaultConfiguredCatalog(final AirbyteCatalog catalog) { + return new ConfiguredAirbyteCatalog() + .withStreams(catalog.getStreams() + .stream() + .map(CatalogHelpers::toDefaultConfiguredStream) + .toList()); + } + + public static ConfiguredAirbyteStream toDefaultConfiguredStream(final AirbyteStream stream) { + return new ConfiguredAirbyteStream() + .withStream(stream) + .withSyncMode(SyncMode.FULL_REFRESH) + .withCursorField(new ArrayList<>()) + .withDestinationSyncMode(DestinationSyncMode.OVERWRITE) + .withPrimaryKey(new ArrayList<>()); + } + + public static JsonNode fieldsToJsonSchema(final Field... fields) { + return fieldsToJsonSchema(Arrays.asList(fields)); + } + + /** + * Maps a list of fields into a JsonSchema object with names and types. This method will throw if it + * receives multiple fields with the same name. + * + * @param fields fields to map to JsonSchema + * @return JsonSchema representation of the fields. + */ + public static JsonNode fieldsToJsonSchema(final List fields) { + return Jsons.jsonNode(ImmutableMap.builder() + .put("type", "object") + .put("properties", fields + .stream() + .collect(Collectors.toMap( + Field::getName, + field -> { + if (isObjectWithSubFields(field)) { + return fieldsToJsonSchema(field.getSubFields()); + } else { + return field.getType().getJsonSchemaTypeMap(); + } + }))) + .build()); + } + + /** + * Gets the keys from the top-level properties object in the json schema. + * + * @param stream - airbyte stream + * @return field names + */ + @SuppressWarnings("unchecked") + public static Set getTopLevelFieldNames(final ConfiguredAirbyteStream stream) { + // it is json, so the key has to be a string. + final Map object = Jsons.object( + stream.getStream().getJsonSchema().get("properties"), Map.class); + return object.keySet(); + } + + /** + * @param jsonSchema - a JSONSchema node + * @return a set of all keys for all objects within the node + */ + @VisibleForTesting + protected static Set getAllFieldNames(final JsonNode jsonSchema) { + return getFullyQualifiedFieldNamesWithTypes(jsonSchema) + .stream() + .map(Pair::getLeft) + // only need field name, not fully qualified name + .map(CatalogHelpers::last) + .flatMap(Optional::stream) + .collect(Collectors.toSet()); + } + + /** + * @return returns empty optional if the list is empty or if the last element in the list is null. + */ + private static Optional last(final List list) { + if (list.isEmpty()) { + return Optional.empty(); + } + return Optional.ofNullable(list.get(list.size() - 1)); + } + + /** + * Extracts all fields and their schemas from a JSONSchema. This method returns values in + * depth-first search preorder. It short circuits at oneOfs--in other words, child fields of a oneOf + * are not returned. + * + * @param jsonSchema - a JSONSchema node + * @return a list of all keys for all objects within the node. ordered in depth-first search + * preorder. + */ + @VisibleForTesting + protected static List, JsonNode>> getFullyQualifiedFieldNamesWithTypes( + final JsonNode jsonSchema) { + // if this were ever a performance issue, it could be replaced with a trie. this seems unlikely + // however. + final Set> fieldNamesThatAreOneOfs = new HashSet<>(); + + return JsonSchemas.traverseJsonSchemaWithCollector(jsonSchema, (node, basicPath) -> { + final List fieldName = basicPath.stream() + .map(fieldOrList -> fieldOrList.isList() ? ITEMS_KEY : fieldOrList.getFieldName()) + .toList(); + return Pair.of(fieldName, node); + }) + .stream() + // first node is the original object. + .skip(1) + .filter(fieldWithSchema -> filterChildrenOfFoneOneOf(fieldWithSchema.getLeft(), + fieldWithSchema.getRight(), fieldNamesThatAreOneOfs)) + .toList(); + } + + /** + * Predicate that checks if a field is a CHILD of a oneOf field. If child of a oneOf, returns false. + * Otherwise, true. This method as side effects. It assumes that it will be run in order on field + * names returned in depth-first search preoorder. As it encounters oneOfs it adds them to a + * collection. It then checks if subsequent field names are prefix matches to the field that are + * oneOfs. + * + * @param fieldName - field to investigate + * @param schema - schema of field + * @param oneOfFieldNameAccumulator - collection of fields that are oneOfs + * @return If child of a oneOf, returns false. Otherwise, true. + */ + private static boolean filterChildrenOfFoneOneOf(final List fieldName, + final JsonNode schema, + final Set> oneOfFieldNameAccumulator) { + if (isOneOfField(schema)) { + oneOfFieldNameAccumulator.add(fieldName); + // return early because we know it is a oneOf and therefore cannot be a child of a oneOf. + return true; + } + + // leverage that nodes are returned in depth-first search preorder. this means the parent field for + // the oneOf will be present in the list BEFORE any of its children. + for (final List oneOfFieldName : oneOfFieldNameAccumulator) { + final String oneOfFieldNameString = String.join(".", oneOfFieldName); + final String fieldNameString = String.join(".", fieldName); + + if (fieldNameString.startsWith(oneOfFieldNameString)) { + return false; + } + } + return true; + } + + private static boolean isOneOfField(final JsonNode schema) { + return !MoreIterators.toSet(schema.fieldNames()).contains("type"); + } + + private static boolean isObjectWithSubFields(final Field field) { + return field.getType().equals(JsonSchemaType.OBJECT) && field.getSubFields() != null + && !field.getSubFields().isEmpty(); + } + + public static StreamDescriptor extractStreamDescriptor(final AirbyteStream airbyteStream) { + return new StreamDescriptor().withName(airbyteStream.getName()) + .withNamespace(airbyteStream.getNamespace()); + } + + private static Map streamDescriptorToMap( + final AirbyteCatalog catalog) { + return catalog.getStreams() + .stream() + .collect(Collectors.toMap(CatalogHelpers::extractStreamDescriptor, s -> s)); + } + + /** + * Returns difference between two provided catalogs. + * + * @param oldCatalog - old catalog + * @param newCatalog - new catalog + * @return difference between old and new catalogs + */ + public static Set getCatalogDiff(final AirbyteCatalog oldCatalog, + final AirbyteCatalog newCatalog, + final ConfiguredAirbyteCatalog configuredCatalog) { + final Set streamTransforms = new HashSet<>(); + + final Map descriptorToStreamOld = streamDescriptorToMap( + oldCatalog); + final Map descriptorToStreamNew = streamDescriptorToMap( + newCatalog); + + Sets.difference(descriptorToStreamOld.keySet(), descriptorToStreamNew.keySet()) + .forEach(descriptor -> streamTransforms.add( + StreamTransform.createRemoveStreamTransform(descriptor))); + Sets.difference(descriptorToStreamNew.keySet(), descriptorToStreamOld.keySet()) + .forEach(descriptor -> streamTransforms.add( + StreamTransform.createAddStreamTransform(descriptor))); + Sets.intersection(descriptorToStreamOld.keySet(), descriptorToStreamNew.keySet()) + .forEach(descriptor -> { + final AirbyteStream streamOld = descriptorToStreamOld.get(descriptor); + final AirbyteStream streamNew = descriptorToStreamNew.get(descriptor); + + final Optional stream = configuredCatalog.getStreams().stream() + .filter(s -> Objects.equals(s.getStream().getNamespace(), descriptor.getNamespace()) + && s.getStream().getName().equals(descriptor.getName())) + .findFirst(); + + if (!streamOld.equals(streamNew)) { + streamTransforms.add(StreamTransform.createUpdateStreamTransform(descriptor, + getStreamDiff(streamOld, streamNew, stream))); + } + }); + + return streamTransforms; + } + + private static UpdateStreamTransform getStreamDiff(final AirbyteStream streamOld, + final AirbyteStream streamNew, + final Optional configuredStream) { + final Set fieldTransforms = new HashSet<>(); + final Map, JsonNode> fieldNameToTypeOld = getFullyQualifiedFieldNamesWithTypes( + streamOld.getJsonSchema()) + .stream() + .collect( + HashMap::new, + CatalogHelpers::collectInHashMap, + CatalogHelpers::combineAccumulator); + final Map, JsonNode> fieldNameToTypeNew = getFullyQualifiedFieldNamesWithTypes( + streamNew.getJsonSchema()) + .stream() + .collect( + HashMap::new, + CatalogHelpers::collectInHashMap, + CatalogHelpers::combineAccumulator); + + Sets.difference(fieldNameToTypeOld.keySet(), fieldNameToTypeNew.keySet()) + .forEach(fieldName -> { + fieldTransforms.add(FieldTransform.createRemoveFieldTransform(fieldName, + fieldNameToTypeOld.get(fieldName), + transformBreaksConnection(configuredStream, fieldName))); + }); + Sets.difference(fieldNameToTypeNew.keySet(), fieldNameToTypeOld.keySet()) + .forEach(fieldName -> fieldTransforms.add( + FieldTransform.createAddFieldTransform(fieldName, fieldNameToTypeNew.get(fieldName)))); + Sets.intersection(fieldNameToTypeOld.keySet(), fieldNameToTypeNew.keySet()) + .forEach(fieldName -> { + final JsonNode oldType = fieldNameToTypeOld.get(fieldName); + final JsonNode newType = fieldNameToTypeNew.get(fieldName); + + if (!oldType.equals(newType)) { + fieldTransforms.add(FieldTransform.createUpdateFieldTransform(fieldName, + new UpdateFieldSchemaTransform(oldType, newType))); + } + }); + + return new UpdateStreamTransform(fieldTransforms); + } + + @VisibleForTesting + static final JsonNode DUPLICATED_SCHEMA = Jsons.jsonNode("Duplicated Schema"); + + @VisibleForTesting + static void collectInHashMap(final Map, JsonNode> accumulator, + final Pair, JsonNode> value) { + if (accumulator.containsKey(value.getKey())) { + accumulator.put(value.getKey(), DUPLICATED_SCHEMA); + } else { + accumulator.put(value.getKey(), value.getValue()); + } + } + + @VisibleForTesting + static void combineAccumulator(final Map, JsonNode> accumulatorLeft, + final Map, JsonNode> accumulatorRight) { + accumulatorRight.forEach((key, value) -> { + if (accumulatorLeft.containsKey(key)) { + accumulatorLeft.put(key, DUPLICATED_SCHEMA); + } else { + accumulatorLeft.put(key, value); + } + }); + } + + static boolean transformBreaksConnection(final Optional configuredStream, + final List fieldName) { + if (configuredStream.isEmpty()) { + return false; + } + + final ConfiguredAirbyteStream streamConfig = configuredStream.get(); + + final SyncMode syncMode = streamConfig.getSyncMode(); + if (SyncMode.INCREMENTAL == syncMode && streamConfig.getCursorField().equals(fieldName)) { + return true; + } + + final DestinationSyncMode destinationSyncMode = streamConfig.getDestinationSyncMode(); + if (DestinationSyncMode.APPEND_DEDUP == destinationSyncMode && streamConfig.getPrimaryKey() + .contains(fieldName)) { + return true; + } + return false; + } + +} diff --git a/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/AddFieldTransform.java b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/AddFieldTransform.java new file mode 100644 index 000000000000..a4a9ab9ffc81 --- /dev/null +++ b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/AddFieldTransform.java @@ -0,0 +1,26 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.protocol.models.v0.transform_models; + +import com.fasterxml.jackson.databind.JsonNode; +import lombok.AllArgsConstructor; +import lombok.EqualsAndHashCode; +import lombok.ToString; + +/** + * Represents the addition of a field to an {@link io.airbyte.protocol.models.v0.AirbyteStream}. + */ +@AllArgsConstructor +@EqualsAndHashCode +@ToString +public class AddFieldTransform { + + private final JsonNode schema; + + public JsonNode getSchema() { + return schema; + } + +} diff --git a/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/AddStreamTransform.java b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/AddStreamTransform.java new file mode 100644 index 000000000000..89b5ba260cae --- /dev/null +++ b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/AddStreamTransform.java @@ -0,0 +1,27 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.protocol.models.v0.transform_models; + +import io.airbyte.protocol.models.v0.StreamDescriptor; +import lombok.AllArgsConstructor; +import lombok.EqualsAndHashCode; +import lombok.ToString; + +/** + * Represents the addition of an {@link io.airbyte.protocol.models.v0.AirbyteStream} to a + * {@link io.airbyte.protocol.models.v0.AirbyteCatalog}. + */ +@AllArgsConstructor +@EqualsAndHashCode +@ToString +public class AddStreamTransform { + + private final StreamDescriptor streamDescriptor; + + public StreamDescriptor getStreamDescriptor() { + return streamDescriptor; + } + +} diff --git a/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/FieldTransform.java b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/FieldTransform.java new file mode 100644 index 000000000000..273550df009d --- /dev/null +++ b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/FieldTransform.java @@ -0,0 +1,74 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.protocol.models.v0.transform_models; + +import com.fasterxml.jackson.databind.JsonNode; +import java.util.List; +import lombok.AllArgsConstructor; +import lombok.EqualsAndHashCode; +import lombok.ToString; + +/** + * Represents the diff between two fields. + */ +@AllArgsConstructor +@EqualsAndHashCode +@ToString +public final class FieldTransform { + + private final FieldTransformType transformType; + private final List fieldName; + private final AddFieldTransform addFieldTransform; + private final RemoveFieldTransform removeFieldTransform; + private final UpdateFieldSchemaTransform updateFieldTransform; + private final boolean breaking; + + public static FieldTransform createAddFieldTransform(final List fieldName, final JsonNode schema) { + return createAddFieldTransform(fieldName, new AddFieldTransform(schema)); + } + + public static FieldTransform createAddFieldTransform(final List fieldName, final AddFieldTransform addFieldTransform) { + return new FieldTransform(FieldTransformType.ADD_FIELD, fieldName, addFieldTransform, null, null, false); + } + + public static FieldTransform createRemoveFieldTransform(final List fieldName, final JsonNode schema, final Boolean breaking) { + return createRemoveFieldTransform(fieldName, new RemoveFieldTransform(fieldName, schema), breaking); + } + + public static FieldTransform createRemoveFieldTransform(final List fieldName, + final RemoveFieldTransform removeFieldTransform, + final Boolean breaking) { + return new FieldTransform(FieldTransformType.REMOVE_FIELD, fieldName, null, removeFieldTransform, null, breaking); + } + + public static FieldTransform createUpdateFieldTransform(final List fieldName, final UpdateFieldSchemaTransform updateFieldTransform) { + return new FieldTransform(FieldTransformType.UPDATE_FIELD_SCHEMA, fieldName, null, null, updateFieldTransform, false); + } + + public FieldTransformType getTransformType() { + return transformType; + } + + public List getFieldName() { + return fieldName; + } + + public AddFieldTransform getAddFieldTransform() { + return addFieldTransform; + } + + public RemoveFieldTransform getRemoveFieldTransform() { + return removeFieldTransform; + } + + public UpdateFieldSchemaTransform getUpdateFieldTransform() { + return updateFieldTransform; + } + + public boolean breaking() { + return breaking; + } + +} diff --git a/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/FieldTransformType.java b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/FieldTransformType.java new file mode 100644 index 000000000000..a5480599b7d0 --- /dev/null +++ b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/FieldTransformType.java @@ -0,0 +1,14 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.protocol.models.v0.transform_models; + +/** + * Types of transformations possible for a field. + */ +public enum FieldTransformType { + ADD_FIELD, + REMOVE_FIELD, + UPDATE_FIELD_SCHEMA +} diff --git a/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/RemoveFieldTransform.java b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/RemoveFieldTransform.java new file mode 100644 index 000000000000..7764d2e54bcd --- /dev/null +++ b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/RemoveFieldTransform.java @@ -0,0 +1,33 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.protocol.models.v0.transform_models; + +import com.fasterxml.jackson.databind.JsonNode; +import java.util.ArrayList; +import java.util.List; +import lombok.AllArgsConstructor; +import lombok.EqualsAndHashCode; +import lombok.ToString; + +/** + * Represents the removal of a field to an {@link io.airbyte.protocol.models.v0.AirbyteStream}. + */ +@AllArgsConstructor +@EqualsAndHashCode +@ToString +public class RemoveFieldTransform { + + private final List fieldName; + private final JsonNode schema; + + public List getFieldName() { + return new ArrayList<>(fieldName); + } + + public JsonNode getSchema() { + return schema; + } + +} diff --git a/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/RemoveStreamTransform.java b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/RemoveStreamTransform.java new file mode 100644 index 000000000000..5a9673a3c7a6 --- /dev/null +++ b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/RemoveStreamTransform.java @@ -0,0 +1,27 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.protocol.models.v0.transform_models; + +import io.airbyte.protocol.models.v0.StreamDescriptor; +import lombok.AllArgsConstructor; +import lombok.EqualsAndHashCode; +import lombok.ToString; + +/** + * Represents the removal of an {@link io.airbyte.protocol.models.v0.AirbyteStream} to a + * {@link io.airbyte.protocol.models.v0.AirbyteCatalog}. + */ +@AllArgsConstructor +@EqualsAndHashCode +@ToString +public class RemoveStreamTransform { + + private final StreamDescriptor streamDescriptor; + + public StreamDescriptor getStreamDescriptor() { + return streamDescriptor; + } + +} diff --git a/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/StreamTransform.java b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/StreamTransform.java new file mode 100644 index 000000000000..c56938364bc8 --- /dev/null +++ b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/StreamTransform.java @@ -0,0 +1,49 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.protocol.models.v0.transform_models; + +import io.airbyte.protocol.models.v0.StreamDescriptor; +import lombok.AllArgsConstructor; +import lombok.EqualsAndHashCode; +import lombok.ToString; + +/** + * Represents the diff between two {@link io.airbyte.protocol.models.v0.AirbyteStream}. + */ +@AllArgsConstructor +@EqualsAndHashCode +@ToString +public final class StreamTransform { + + private final StreamTransformType transformType; + private final StreamDescriptor streamDescriptor; + private final UpdateStreamTransform updateStreamTransform; + + public static StreamTransform createAddStreamTransform(final StreamDescriptor streamDescriptor) { + return new StreamTransform(StreamTransformType.ADD_STREAM, streamDescriptor, null); + } + + public static StreamTransform createRemoveStreamTransform(final StreamDescriptor streamDescriptor) { + return new StreamTransform(StreamTransformType.REMOVE_STREAM, streamDescriptor, null); + } + + public static StreamTransform createUpdateStreamTransform(final StreamDescriptor streamDescriptor, + final UpdateStreamTransform updateStreamTransform) { + return new StreamTransform(StreamTransformType.UPDATE_STREAM, streamDescriptor, updateStreamTransform); + } + + public StreamTransformType getTransformType() { + return transformType; + } + + public StreamDescriptor getStreamDescriptor() { + return streamDescriptor; + } + + public UpdateStreamTransform getUpdateStreamTransform() { + return updateStreamTransform; + } + +} diff --git a/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/StreamTransformType.java b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/StreamTransformType.java new file mode 100644 index 000000000000..7085584df7c3 --- /dev/null +++ b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/StreamTransformType.java @@ -0,0 +1,14 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.protocol.models.v0.transform_models; + +/** + * Types of transformations possible for a stream. + */ +public enum StreamTransformType { + ADD_STREAM, + REMOVE_STREAM, + UPDATE_STREAM +} diff --git a/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/UpdateFieldSchemaTransform.java b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/UpdateFieldSchemaTransform.java new file mode 100644 index 000000000000..a33e7d42b0da --- /dev/null +++ b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/UpdateFieldSchemaTransform.java @@ -0,0 +1,31 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.protocol.models.v0.transform_models; + +import com.fasterxml.jackson.databind.JsonNode; +import lombok.AllArgsConstructor; +import lombok.EqualsAndHashCode; +import lombok.ToString; + +/** + * Represents the update of a field. + */ +@AllArgsConstructor +@EqualsAndHashCode +@ToString +public class UpdateFieldSchemaTransform { + + private final JsonNode oldSchema; + private final JsonNode newSchema; + + public JsonNode getOldSchema() { + return oldSchema; + } + + public JsonNode getNewSchema() { + return newSchema; + } + +} diff --git a/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/UpdateStreamTransform.java b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/UpdateStreamTransform.java new file mode 100644 index 000000000000..a6bd78e77df8 --- /dev/null +++ b/airbyte-protocol/protocol-models/src/main/java/io/airbyte/protocol/models/v0/transform_models/UpdateStreamTransform.java @@ -0,0 +1,27 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.protocol.models.v0.transform_models; + +import java.util.HashSet; +import java.util.Set; +import lombok.AllArgsConstructor; +import lombok.EqualsAndHashCode; +import lombok.ToString; + +/** + * Represents the update of an {@link io.airbyte.protocol.models.v0.AirbyteStream}. + */ +@AllArgsConstructor +@EqualsAndHashCode +@ToString +public class UpdateStreamTransform { + + private final Set fieldTransforms; + + public Set getFieldTransforms() { + return new HashSet<>(fieldTransforms); + } + +} diff --git a/airbyte-proxy/Dockerfile b/airbyte-proxy/Dockerfile index dc3f61a569eb..b991f4144deb 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-proxy/nginx-auth.conf.template b/airbyte-proxy/nginx-auth.conf.template index 3098e22bf1ee..c90fcc5dba77 100644 --- a/airbyte-proxy/nginx-auth.conf.template +++ b/airbyte-proxy/nginx-auth.conf.template @@ -9,6 +9,8 @@ http { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + client_max_body_size 200M; + auth_basic "Welcome to Airbyte"; auth_basic_user_file /etc/nginx/.htpasswd; @@ -69,6 +71,8 @@ http { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + client_max_body_size 200M; + auth_basic "Welcome to Airbyte"; auth_basic_user_file /etc/nginx/.htpasswd; @@ -129,6 +133,8 @@ http { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + client_max_body_size 200M; + auth_basic "Welcome to Airbyte"; auth_basic_user_file /etc/nginx/.htpasswd; diff --git a/airbyte-proxy/nginx-no-auth.conf.template b/airbyte-proxy/nginx-no-auth.conf.template index ae69dbaeca22..bbe01b765484 100644 --- a/airbyte-proxy/nginx-no-auth.conf.template +++ b/airbyte-proxy/nginx-no-auth.conf.template @@ -9,6 +9,8 @@ http { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + client_max_body_size 200M; + proxy_pass "${PROXY_PASS_WEB}"; proxy_connect_timeout ${BASIC_AUTH_PROXY_TIMEOUT}; @@ -42,6 +44,8 @@ http { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + client_max_body_size 200M; + proxy_pass "${PROXY_PASS_API}"; proxy_connect_timeout ${BASIC_AUTH_PROXY_TIMEOUT}; @@ -75,6 +79,8 @@ http { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + client_max_body_size 200M; + proxy_pass "${CONNECTOR_BUILDER_SERVER_API}"; } } 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/ServerApp.java b/airbyte-server/src/main/java/io/airbyte/server/ServerApp.java index ac88419c4c0c..4142c1762f33 100644 --- a/airbyte-server/src/main/java/io/airbyte/server/ServerApp.java +++ b/airbyte-server/src/main/java/io/airbyte/server/ServerApp.java @@ -66,7 +66,6 @@ import io.airbyte.server.services.AirbyteGithubStore; import io.airbyte.validation.json.JsonSchemaValidator; import io.airbyte.workers.helper.ConnectionHelper; -import io.airbyte.workers.normalization.NormalizationRunnerFactory; import io.temporal.serviceclient.WorkflowServiceStubs; import java.net.http.HttpClient; import java.util.Map; @@ -214,8 +213,6 @@ public static ServerRunnable getServer(final ServerFactory apiFactory, configRepository, configs.getDeploymentMode(), configs.getAirbyteVersionOrWarning(), - NormalizationRunnerFactory.BASE_NORMALIZATION_IMAGE_NAME, - NormalizationRunnerFactory.NORMALIZATION_VERSION, webUrlHelper, jobErrorReportingClient); diff --git a/airbyte-server/src/main/java/io/airbyte/server/handlers/DestinationDefinitionsHandler.java b/airbyte-server/src/main/java/io/airbyte/server/handlers/DestinationDefinitionsHandler.java index f07e83fbc3ea..8f04307e325a 100644 --- a/airbyte-server/src/main/java/io/airbyte/server/handlers/DestinationDefinitionsHandler.java +++ b/airbyte-server/src/main/java/io/airbyte/server/handlers/DestinationDefinitionsHandler.java @@ -253,8 +253,7 @@ public DestinationDefinitionRead updateDestinationDefinition(final DestinationDe .withName(currentDestination.getName()) .withDocumentationUrl(currentDestination.getDocumentationUrl()) .withIcon(currentDestination.getIcon()) - .withNormalizationRepository(currentDestination.getNormalizationRepository()) - .withNormalizationTag(currentDestination.getNormalizationTag()) + .withNormalizationConfig(currentDestination.getNormalizationConfig()) .withSupportsDbt(currentDestination.getSupportsDbt()) .withSpec(spec) .withProtocolVersion(airbyteProtocolVersion.serialize()) 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 27da19d1824a..cf1622d7d586 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 @@ -72,8 +72,10 @@ public OAuthHandler(final ConfigRepository configRepository, public OAuthConsentRead getSourceOAuthConsent(final SourceOauthConsentRequest sourceOauthConsentRequest) throws JsonValidationException, ConfigNotFoundException, IOException { - ApmTraceUtils.addTagsToTrace(Map.of(WORKSPACE_ID_KEY, sourceOauthConsentRequest.getWorkspaceId(), SOURCE_DEFINITION_ID_KEY, - sourceOauthConsentRequest.getSourceDefinitionId())); + final Map traceTags = Map.of(WORKSPACE_ID_KEY, sourceOauthConsentRequest.getWorkspaceId(), SOURCE_DEFINITION_ID_KEY, + sourceOauthConsentRequest.getSourceDefinitionId()); + ApmTraceUtils.addTagsToTrace(traceTags); + ApmTraceUtils.addTagsToRootSpan(traceTags); final StandardSourceDefinition sourceDefinition = configRepository.getStandardSourceDefinition(sourceOauthConsentRequest.getSourceDefinitionId()); final OAuthFlowImplementation oAuthFlowImplementation = oAuthImplementationFactory.create(sourceDefinition); @@ -116,8 +118,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 +166,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 +216,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-server/src/main/java/io/airbyte/server/handlers/WebBackendConnectionsHandler.java b/airbyte-server/src/main/java/io/airbyte/server/handlers/WebBackendConnectionsHandler.java index 5683af3e5c4f..01c20783846d 100644 --- a/airbyte-server/src/main/java/io/airbyte/server/handlers/WebBackendConnectionsHandler.java +++ b/airbyte-server/src/main/java/io/airbyte/server/handlers/WebBackendConnectionsHandler.java @@ -20,6 +20,7 @@ import io.airbyte.api.model.generated.ConnectionUpdate; import io.airbyte.api.model.generated.DestinationIdRequestBody; import io.airbyte.api.model.generated.DestinationRead; +import io.airbyte.api.model.generated.FieldTransform; import io.airbyte.api.model.generated.JobRead; import io.airbyte.api.model.generated.OperationCreate; import io.airbyte.api.model.generated.OperationReadList; @@ -32,6 +33,7 @@ import io.airbyte.api.model.generated.SourceRead; import io.airbyte.api.model.generated.StreamDescriptor; import io.airbyte.api.model.generated.StreamTransform; +import io.airbyte.api.model.generated.StreamTransform.TransformTypeEnum; import io.airbyte.api.model.generated.WebBackendConnectionCreate; import io.airbyte.api.model.generated.WebBackendConnectionListItem; import io.airbyte.api.model.generated.WebBackendConnectionRead; @@ -45,6 +47,7 @@ import io.airbyte.commons.enums.Enums; import io.airbyte.commons.json.Jsons; import io.airbyte.commons.lang.MoreBooleans; +import io.airbyte.config.ActorCatalog; import io.airbyte.config.ActorCatalogFetchEvent; import io.airbyte.config.StandardSync; import io.airbyte.config.persistence.ConfigNotFoundException; @@ -525,6 +528,25 @@ public WebBackendConnectionRead webBackendUpdateConnection(final WebBackendConne final UUID connectionId = webBackendConnectionPatch.getConnectionId(); final ConnectionRead originalConnectionRead = connectionsHandler.getConnection(connectionId); + boolean breakingChange = originalConnectionRead.getBreakingChange() != null && originalConnectionRead.getBreakingChange(); + + // If there have been changes to the sync catalog, check whether these changes result in or fix a + // broken connection + if (webBackendConnectionPatch.getSyncCatalog() != null) { + // Get the most recent actor catalog fetched for this connection's source and the newly updated sync + // catalog + Optional mostRecentActorCatalog = configRepository.getMostRecentActorCatalogForSource(originalConnectionRead.getSourceId()); + AirbyteCatalog newAirbyteCatalog = webBackendConnectionPatch.getSyncCatalog(); + // Get the diff between these two catalogs to check for breaking changes + if (mostRecentActorCatalog.isPresent()) { + final io.airbyte.protocol.models.AirbyteCatalog mostRecentAirbyteCatalog = + Jsons.object(mostRecentActorCatalog.get().getCatalog(), io.airbyte.protocol.models.AirbyteCatalog.class); + final CatalogDiff catalogDiff = + connectionsHandler.getDiff(newAirbyteCatalog, CatalogConverter.toApi(mostRecentAirbyteCatalog), + CatalogConverter.toProtocol(newAirbyteCatalog)); + breakingChange = containsBreakingChange(catalogDiff); + } + } // before doing any updates, fetch the existing catalog so that it can be diffed // with the final catalog to determine which streams might need to be reset. @@ -535,7 +557,7 @@ public WebBackendConnectionRead webBackendUpdateConnection(final WebBackendConne // pass in operationIds because the patch object doesn't include operationIds that were just created // above. - final ConnectionUpdate connectionPatch = toConnectionPatch(webBackendConnectionPatch, newAndExistingOperationIds); + final ConnectionUpdate connectionPatch = toConnectionPatch(webBackendConnectionPatch, newAndExistingOperationIds, breakingChange); // persist the update and set the connectionRead to the updated form. final ConnectionRead updatedConnectionRead = connectionsHandler.updateConnection(connectionPatch); @@ -700,7 +722,8 @@ protected static ConnectionCreate toConnectionCreate(final WebBackendConnectionC */ @VisibleForTesting protected static ConnectionUpdate toConnectionPatch(final WebBackendConnectionUpdate webBackendConnectionPatch, - final List finalOperationIds) { + final List finalOperationIds, + boolean breakingChange) { final ConnectionUpdate connectionPatch = new ConnectionUpdate(); connectionPatch.connectionId(webBackendConnectionPatch.getConnectionId()); @@ -718,6 +741,7 @@ protected static ConnectionUpdate toConnectionPatch(final WebBackendConnectionUp connectionPatch.geography(webBackendConnectionPatch.getGeography()); connectionPatch.notifySchemaChanges(webBackendConnectionPatch.getNotifySchemaChanges()); connectionPatch.nonBreakingChangesPreference(webBackendConnectionPatch.getNonBreakingChangesPreference()); + connectionPatch.breakingChange(breakingChange); connectionPatch.operationIds(finalOperationIds); @@ -738,4 +762,19 @@ private record Stream(String name, String namespace) { } + private boolean containsBreakingChange(final CatalogDiff diff) { + for (final StreamTransform streamTransform : diff.getTransforms()) { + if (streamTransform.getTransformType() != TransformTypeEnum.UPDATE_STREAM) { + continue; + } + + final boolean anyBreakingFieldTransforms = streamTransform.getUpdateStream().stream().anyMatch(FieldTransform::getBreaking); + if (anyBreakingFieldTransforms) { + return true; + } + } + + return false; + } + } diff --git a/airbyte-server/src/main/java/io/airbyte/server/handlers/helpers/CatalogConverter.java b/airbyte-server/src/main/java/io/airbyte/server/handlers/helpers/CatalogConverter.java index 6face8f6f35e..a16ea2b6e655 100644 --- a/airbyte-server/src/main/java/io/airbyte/server/handlers/helpers/CatalogConverter.java +++ b/airbyte-server/src/main/java/io/airbyte/server/handlers/helpers/CatalogConverter.java @@ -22,6 +22,7 @@ import java.util.Collections; import java.util.List; import java.util.Optional; +import java.util.Set; import java.util.stream.Collectors; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -66,7 +67,18 @@ private static io.airbyte.protocol.models.AirbyteStream toProtocol(final Airbyte } } // Only include the selected fields. - List selectedFieldNames = config.getSelectedFields().stream().map((field) -> field.getFieldPath().get(0)).collect(Collectors.toList()); + final Set selectedFieldNames = + config.getSelectedFields().stream().map((field) -> field.getFieldPath().get(0)).collect(Collectors.toSet()); + // TODO(mfsiega-airbyte): we only check the top level of the cursor/primary key fields because we + // don't support filtering nested fields yet. + if (!selectedFieldNames.contains(config.getCursorField().get(0))) { + throw new JsonValidationException("Cursor field cannot be de-selected"); + } + for (final List primaryKeyComponent : config.getPrimaryKey()) { + if (!selectedFieldNames.contains(primaryKeyComponent.get(0))) { + throw new JsonValidationException("Primary key field cannot be de-selected"); + } + } for (final String selectedFieldName : selectedFieldNames) { if (!properties.has(selectedFieldName)) { throw new JsonValidationException(String.format("Requested selected field %s not found in JSON schema", selectedFieldName)); diff --git a/airbyte-server/src/test/java/io/airbyte/server/handlers/ConnectionsHandlerTest.java b/airbyte-server/src/test/java/io/airbyte/server/handlers/ConnectionsHandlerTest.java index aef4ed143c37..5a23f9f128fa 100644 --- a/airbyte-server/src/test/java/io/airbyte/server/handlers/ConnectionsHandlerTest.java +++ b/airbyte-server/src/test/java/io/airbyte/server/handlers/ConnectionsHandlerTest.java @@ -5,6 +5,7 @@ package io.airbyte.server.handlers; import static io.airbyte.server.helpers.ConnectionHelpers.FIELD_NAME; +import static io.airbyte.server.helpers.ConnectionHelpers.SECOND_FIELD_NAME; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertThrows; @@ -353,6 +354,47 @@ void testCreateConnectionWithSelectedFields() throws IOException, JsonValidation verify(configRepository).writeStandardSync(standardSync); } + @Test + void testFieldSelectionRemoveCursorFails() throws JsonValidationException, ConfigNotFoundException, IOException { + // Test that if we try to de-select a field that's being used for the cursor, the request will fail. + // The connection initially has a catalog with one stream, and two fields in that stream. + standardSync.setCatalog(ConnectionHelpers.generateAirbyteCatalogWithTwoFields()); + + // Send an update that sets a cursor but de-selects that field. + final AirbyteCatalog catalogForUpdate = ConnectionHelpers.generateApiCatalogWithTwoFields(); + catalogForUpdate.getStreams().get(0).getConfig() + .fieldSelectionEnabled(true) + .selectedFields(List.of(new SelectedFieldInfo().addFieldPathItem(FIELD_NAME))) + .cursorField(List.of(SECOND_FIELD_NAME)); + + final ConnectionUpdate connectionUpdate = new ConnectionUpdate() + .connectionId(standardSync.getConnectionId()) + .syncCatalog(catalogForUpdate); + + assertThrows(JsonValidationException.class, () -> connectionsHandler.updateConnection(connectionUpdate)); + } + + @Test + void testFieldSelectionRemovePrimaryKeyFails() throws JsonValidationException, ConfigNotFoundException, IOException { + // Test that if we try to de-select a field that's being used for the primary key, the request will + // fail. + // The connection initially has a catalog with one stream, and two fields in that stream. + standardSync.setCatalog(ConnectionHelpers.generateAirbyteCatalogWithTwoFields()); + + // Send an update that sets a primary key but deselects that field. + final AirbyteCatalog catalogForUpdate = ConnectionHelpers.generateApiCatalogWithTwoFields(); + catalogForUpdate.getStreams().get(0).getConfig() + .fieldSelectionEnabled(true) + .selectedFields(List.of(new SelectedFieldInfo().addFieldPathItem(FIELD_NAME))) + .primaryKey(List.of(List.of(SECOND_FIELD_NAME))); + + final ConnectionUpdate connectionUpdate = new ConnectionUpdate() + .connectionId(standardSync.getConnectionId()) + .syncCatalog(catalogForUpdate); + + assertThrows(JsonValidationException.class, () -> connectionsHandler.updateConnection(connectionUpdate)); + } + @Test void testValidateConnectionCreateSourceAndDestinationInDifferenceWorkspace() { diff --git a/airbyte-server/src/test/java/io/airbyte/server/handlers/JobHistoryHandlerTest.java b/airbyte-server/src/test/java/io/airbyte/server/handlers/JobHistoryHandlerTest.java index d53044e95596..cb68ad2b8205 100644 --- a/airbyte-server/src/test/java/io/airbyte/server/handlers/JobHistoryHandlerTest.java +++ b/airbyte-server/src/test/java/io/airbyte/server/handlers/JobHistoryHandlerTest.java @@ -10,12 +10,38 @@ import static org.mockito.Mockito.when; import com.google.common.collect.ImmutableList; -import io.airbyte.api.model.generated.*; +import io.airbyte.api.model.generated.AttemptInfoRead; +import io.airbyte.api.model.generated.AttemptNormalizationStatusRead; +import io.airbyte.api.model.generated.AttemptNormalizationStatusReadList; +import io.airbyte.api.model.generated.AttemptRead; +import io.airbyte.api.model.generated.ConnectionRead; +import io.airbyte.api.model.generated.DestinationIdRequestBody; +import io.airbyte.api.model.generated.DestinationRead; +import io.airbyte.api.model.generated.JobConfigType; +import io.airbyte.api.model.generated.JobDebugInfoRead; +import io.airbyte.api.model.generated.JobDebugRead; +import io.airbyte.api.model.generated.JobIdRequestBody; +import io.airbyte.api.model.generated.JobInfoLightRead; +import io.airbyte.api.model.generated.JobInfoRead; +import io.airbyte.api.model.generated.JobListRequestBody; +import io.airbyte.api.model.generated.JobRead; +import io.airbyte.api.model.generated.JobReadList; +import io.airbyte.api.model.generated.JobWithAttemptsRead; +import io.airbyte.api.model.generated.LogRead; +import io.airbyte.api.model.generated.Pagination; +import io.airbyte.api.model.generated.SourceIdRequestBody; +import io.airbyte.api.model.generated.SourceRead; import io.airbyte.commons.enums.Enums; import io.airbyte.commons.version.AirbyteVersion; -import io.airbyte.config.*; import io.airbyte.config.Configs.WorkerEnvironment; +import io.airbyte.config.DestinationConnection; +import io.airbyte.config.JobCheckConnectionConfig; +import io.airbyte.config.JobConfig; import io.airbyte.config.JobConfig.ConfigType; +import io.airbyte.config.SourceConnection; +import io.airbyte.config.StandardDestinationDefinition; +import io.airbyte.config.StandardSourceDefinition; +import io.airbyte.config.StandardSync; import io.airbyte.config.helpers.LogConfigs; import io.airbyte.config.persistence.ConfigNotFoundException; import io.airbyte.persistence.job.JobPersistence; @@ -34,7 +60,12 @@ import java.io.IOException; import java.net.URISyntaxException; import java.nio.file.Path; -import java.util.*; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; +import java.util.Optional; +import java.util.Set; +import java.util.UUID; import java.util.function.Function; import java.util.stream.Collectors; import org.junit.jupiter.api.BeforeEach; diff --git a/airbyte-server/src/test/java/io/airbyte/server/handlers/WebBackendConnectionsHandlerTest.java b/airbyte-server/src/test/java/io/airbyte/server/handlers/WebBackendConnectionsHandlerTest.java index 94935832373d..943cbfff5c13 100644 --- a/airbyte-server/src/test/java/io/airbyte/server/handlers/WebBackendConnectionsHandlerTest.java +++ b/airbyte-server/src/test/java/io/airbyte/server/handlers/WebBackendConnectionsHandlerTest.java @@ -112,6 +112,7 @@ import java.util.stream.Collectors; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; +import org.mockito.ArgumentCaptor; import org.mockito.InOrder; class WebBackendConnectionsHandlerTest { @@ -667,9 +668,10 @@ void testToConnectionPatch() throws IOException { .syncCatalog(catalog) .geography(Geography.US) .nonBreakingChangesPreference(NonBreakingChangesPreference.DISABLE) - .notifySchemaChanges(false); + .notifySchemaChanges(false) + .breakingChange(false); - final ConnectionUpdate actual = WebBackendConnectionsHandler.toConnectionPatch(input, operationIds); + final ConnectionUpdate actual = WebBackendConnectionsHandler.toConnectionPatch(input, operationIds, false); assertEquals(expected, actual); } @@ -1049,6 +1051,66 @@ void testUpdateConnectionWithSkipReset() throws JsonValidationException, ConfigN verify(eventRunner, times(0)).resetConnection(any(), any(), eq(true)); } + @Test + void testUpdateConnectionFixingBreakingSchemaChange() throws JsonValidationException, ConfigNotFoundException, IOException { + final WebBackendConnectionUpdate updateBody = new WebBackendConnectionUpdate() + .namespaceDefinition(expected.getNamespaceDefinition()) + .namespaceFormat(expected.getNamespaceFormat()) + .prefix(expected.getPrefix()) + .connectionId(expected.getConnectionId()) + .schedule(expected.getSchedule()) + .status(expected.getStatus()) + .syncCatalog(expectedWithNewSchema.getSyncCatalog()) + .skipReset(false) + .connectionId(expected.getConnectionId()); + + final UUID sourceId = UUID.randomUUID(); + + // existing connection has a breaking change + when(connectionsHandler.getConnection(expected.getConnectionId())).thenReturn( + new ConnectionRead().connectionId(expected.getConnectionId()).breakingChange(true).sourceId(sourceId)); + + final CatalogDiff catalogDiff = new CatalogDiff().transforms(List.of()); + when(configRepository.getMostRecentActorCatalogForSource(sourceId)).thenReturn(Optional.of(new ActorCatalog().withCatalog(Jsons.deserialize( + "{\"streams\": [{\"name\": \"cat_names\", \"namespace\": \"public\", \"json_schema\": {\"type\": \"object\", \"properties\": {\"id\": {\"type\": \"number\", \"airbyte_type\": \"integer\"}}}}]}")))); + when(connectionsHandler.getDiff(any(), any(), any())).thenReturn(catalogDiff, catalogDiff); + + when(configRepository.getConfiguredCatalogForConnection(expected.getConnectionId())) + .thenReturn(ConnectionHelpers.generateBasicConfiguredAirbyteCatalog()); + when(operationsHandler.listOperationsForConnection(any())).thenReturn(operationReadList); + + final ConnectionRead connectionRead = new ConnectionRead() + .connectionId(expected.getConnectionId()) + .sourceId(expected.getSourceId()) + .destinationId(expected.getDestinationId()) + .name(expected.getName()) + .namespaceDefinition(expected.getNamespaceDefinition()) + .namespaceFormat(expected.getNamespaceFormat()) + .prefix(expected.getPrefix()) + .syncCatalog(expectedWithNewSchema.getSyncCatalog()) + .status(expected.getStatus()) + .schedule(expected.getSchedule()) + .breakingChange(false); + + when(connectionsHandler.updateConnection(any())).thenReturn(connectionRead); + + final WebBackendConnectionRead result = wbHandler.webBackendUpdateConnection(updateBody); + + assertEquals(expectedWithNewSchema.getSyncCatalog(), result.getSyncCatalog()); + + final ConnectionIdRequestBody connectionId = new ConnectionIdRequestBody().connectionId(result.getConnectionId()); + ArgumentCaptor expectedArgumentCaptor = ArgumentCaptor.forClass(ConnectionUpdate.class); + verify(connectionsHandler, times(1)).updateConnection(expectedArgumentCaptor.capture()); + List connectionUpdateValues = expectedArgumentCaptor.getAllValues(); + // Expect the ConnectionUpdate object to have breakingChange: false + assertEquals(false, connectionUpdateValues.get(0).getBreakingChange()); + + verify(schedulerHandler, times(0)).resetConnection(connectionId); + verify(schedulerHandler, times(0)).syncConnection(connectionId); + verify(connectionsHandler, times(2)).getDiff(any(), any(), any()); + verify(connectionsHandler, times(1)).updateConnection(any()); + } + @Test void testUpdateSchemaWithDiscoveryFromEmpty() { final AirbyteCatalog original = new AirbyteCatalog().streams(List.of()); diff --git a/airbyte-server/src/test/java/io/airbyte/server/helpers/ConnectionHelpers.java b/airbyte-server/src/test/java/io/airbyte/server/helpers/ConnectionHelpers.java index 53c199c19892..223135d04669 100644 --- a/airbyte-server/src/test/java/io/airbyte/server/helpers/ConnectionHelpers.java +++ b/airbyte-server/src/test/java/io/airbyte/server/helpers/ConnectionHelpers.java @@ -54,6 +54,8 @@ public class ConnectionHelpers { private static final String STREAM_NAME_BASE = "users-data"; private static final String STREAM_NAME = STREAM_NAME_BASE + "0"; public static final String FIELD_NAME = "id"; + + public static final String SECOND_FIELD_NAME = "id2"; private static final String BASIC_SCHEDULE_TIME_UNIT = "days"; private static final long BASIC_SCHEDULE_UNITS = 1L; private static final String BASIC_SCHEDULE_DATA_TIME_UNITS = "days"; @@ -284,7 +286,7 @@ public static JsonNode generateBasicJsonSchema() { public static JsonNode generateJsonSchemaWithTwoFields() { return CatalogHelpers.fieldsToJsonSchema( Field.of(FIELD_NAME, JsonSchemaType.STRING), - Field.of(FIELD_NAME + "2", JsonSchemaType.STRING)); + Field.of(SECOND_FIELD_NAME, JsonSchemaType.STRING)); } public static ConfiguredAirbyteCatalog generateBasicConfiguredAirbyteCatalog() { diff --git a/airbyte-test-utils/src/main/java/io/airbyte/test/utils/AirbyteAcceptanceTestHarness.java b/airbyte-test-utils/src/main/java/io/airbyte/test/utils/AirbyteAcceptanceTestHarness.java index 23335b9afc10..0799d44987b9 100644 --- a/airbyte-test-utils/src/main/java/io/airbyte/test/utils/AirbyteAcceptanceTestHarness.java +++ b/airbyte-test-utils/src/main/java/io/airbyte/test/utils/AirbyteAcceptanceTestHarness.java @@ -459,6 +459,29 @@ public void assertNormalizedDestinationContains(final List sourceRecor } } + /** + * Assert that the normalized destination matches the input records, only expecting a single id + * column. + * + * @param sourceRecords + * @throws Exception + */ + public void assertNormalizedDestinationContainsIdColumn(final List sourceRecords) throws Exception { + final Database destination = getDestinationDatabase(); + final String finalDestinationTable = String.format("%spublic.%s%s", OUTPUT_NAMESPACE_PREFIX, OUTPUT_STREAM_PREFIX, STREAM_NAME.replace(".", "_")); + final List destinationRecords = retrieveSourceRecords(destination, finalDestinationTable); + + assertEquals(sourceRecords.size(), destinationRecords.size(), + String.format("destination contains: %s record. source contains: %s", sourceRecords.size(), destinationRecords.size())); + + for (final JsonNode sourceStreamRecord : sourceRecords) { + assertTrue( + destinationRecords.stream() + .anyMatch(r -> r.get(COLUMN_ID).asInt() == sourceStreamRecord.get(COLUMN_ID).asInt()), + String.format("destination does not contain record:\n %s \n destination contains:\n %s\n", sourceStreamRecord, destinationRecords)); + } + } + public ConnectionRead createConnection(final String name, final UUID sourceId, final UUID destinationId, @@ -496,6 +519,13 @@ public void updateConnectionSchedule( .scheduleData(newScheduleData)); } + public void updateConnectionCatalog(final UUID connectionId, final AirbyteCatalog catalog) throws ApiException { + apiClient.getConnectionApi().updateConnection( + new ConnectionUpdate() + .connectionId(connectionId) + .syncCatalog(catalog)); + } + public DestinationRead createPostgresDestination(final boolean isLegacy) throws ApiException { return createDestination( "AccTestDestination-" + UUID.randomUUID(), diff --git a/airbyte-tests/src/acceptanceTests/java/io/airbyte/test/acceptance/BasicAcceptanceTests.java b/airbyte-tests/src/acceptanceTests/java/io/airbyte/test/acceptance/BasicAcceptanceTests.java index ad57d959f617..d103033539f7 100644 --- a/airbyte-tests/src/acceptanceTests/java/io/airbyte/test/acceptance/BasicAcceptanceTests.java +++ b/airbyte-tests/src/acceptanceTests/java/io/airbyte/test/acceptance/BasicAcceptanceTests.java @@ -68,6 +68,7 @@ import io.airbyte.api.client.model.generated.OperatorWebhook; import io.airbyte.api.client.model.generated.OperatorWebhook.WebhookTypeEnum; import io.airbyte.api.client.model.generated.OperatorWebhookDbtCloud; +import io.airbyte.api.client.model.generated.SelectedFieldInfo; import io.airbyte.api.client.model.generated.SourceDefinitionIdRequestBody; import io.airbyte.api.client.model.generated.SourceDefinitionIdWithWorkspaceId; import io.airbyte.api.client.model.generated.SourceDefinitionRead; @@ -99,6 +100,7 @@ import java.util.Optional; import java.util.Set; import java.util.UUID; +import java.util.stream.Collectors; import org.jooq.DSLContext; import org.jooq.impl.DSL; import org.jooq.impl.SQLDataType; @@ -1421,6 +1423,60 @@ void testPartialResetResetAllWhenSchemaIsModified(final TestInfo testInfo) throw } + @Test + @Order(19) + void testIncrementalDedupeSyncRemoveOneColumn() throws Exception { + // !!! NOTE !!! this test relies on a feature flag that currently defaults to false. If you're + // running these tests locally against an external deployment and this test is failing, make sure + // the flag is enabled. + // Specifically: + // APPLY_FIELD_SELECTION=true + final UUID sourceId = testHarness.createPostgresSource().getSourceId(); + final UUID destinationId = testHarness.createPostgresDestination().getDestinationId(); + final UUID operationId = testHarness.createOperation().getOperationId(); + final AirbyteCatalog catalog = testHarness.discoverSourceSchema(sourceId); + final SyncMode syncMode = SyncMode.INCREMENTAL; + final DestinationSyncMode destinationSyncMode = DestinationSyncMode.APPEND_DEDUP; + catalog.getStreams().forEach(s -> s.getConfig() + .syncMode(syncMode) + .cursorField(List.of(COLUMN_ID)) + .destinationSyncMode(destinationSyncMode) + .primaryKey(List.of(List.of(COLUMN_ID)))); + final UUID connectionId = + testHarness.createConnection(TEST_CONNECTION, sourceId, destinationId, List.of(operationId), catalog, ConnectionScheduleType.MANUAL, null) + .getConnectionId(); + + // sync from start + final JobInfoRead connectionSyncRead1 = apiClient.getConnectionApi() + .syncConnection(new ConnectionIdRequestBody().connectionId(connectionId)); + waitForSuccessfulJob(apiClient.getJobsApi(), connectionSyncRead1.getJob()); + + testHarness.assertSourceAndDestinationDbInSync(WITH_SCD_TABLE); + + // Update the catalog, so we only select the id column. + catalog.getStreams().get(0).getConfig().fieldSelectionEnabled(true).addSelectedFieldsItem(new SelectedFieldInfo().addFieldPathItem("id")); + testHarness.updateConnectionCatalog(connectionId, catalog); + + // add new records and run again. + final Database source = testHarness.getSourceDatabase(); + final List expectedRawRecords = testHarness.retrieveSourceRecords(source, STREAM_NAME); + source.query(ctx -> ctx.execute("INSERT INTO id_and_name(id, name) VALUES(6, 'mike')")); + source.query(ctx -> ctx.execute("INSERT INTO id_and_name(id, name) VALUES(7, 'chris')")); + // The expected new raw records should only have the ID column. + expectedRawRecords.add(Jsons.jsonNode(ImmutableMap.builder().put(COLUMN_ID, 6).build())); + expectedRawRecords.add(Jsons.jsonNode(ImmutableMap.builder().put(COLUMN_ID, 7).build())); + final JobInfoRead connectionSyncRead2 = apiClient.getConnectionApi() + .syncConnection(new ConnectionIdRequestBody().connectionId(connectionId)); + waitForSuccessfulJob(apiClient.getJobsApi(), connectionSyncRead2.getJob()); + + // For the normalized records, they should all only have the ID column. + final List expectedNormalizedRecords = testHarness.retrieveSourceRecords(source, STREAM_NAME).stream() + .map((record) -> ((ObjectNode) record).retain(COLUMN_ID)).collect(Collectors.toList()); + + testHarness.assertRawDestinationContains(expectedRawRecords, new SchemaTableNamePair(PUBLIC, STREAM_NAME)); + testHarness.assertNormalizedDestinationContainsIdColumn(expectedNormalizedRecords); + } + private void assertStreamStateContainsStream(final UUID connectionId, final List expectedStreamDescriptors) throws ApiException { final ConnectionState state = apiClient.getStateApi().getState(new ConnectionIdRequestBody().connectionId(connectionId)); final List streamDescriptors = state.getStreamState().stream().map(StreamState::getStreamDescriptor).toList(); diff --git a/airbyte-webapp-e2e-tests/cypress/integration/connection.spec.ts b/airbyte-webapp-e2e-tests/cypress/integration/connection.spec.ts index 8917723e38b0..7fea0fa55d2c 100644 --- a/airbyte-webapp-e2e-tests/cypress/integration/connection.spec.ts +++ b/airbyte-webapp-e2e-tests/cypress/integration/connection.spec.ts @@ -22,6 +22,8 @@ import { isPrimaryKeyNonExist, selectPrimaryKeyField, checkPreFilledPrimaryKeyField, + checkStreamFields, + expandStreamDetails } from "pages/replicationPage"; import { openSourceDestinationFromGrid, goToSourcePage } from "pages/sourcePage"; import { goToSettingsPage } from "pages/settingsConnectionPage"; @@ -36,7 +38,7 @@ import { } from "../pages/modals/catalogDiffModal"; import { updateSchemaModalConfirmBtnClick } from "../pages/modals/updateSchemaModal"; -describe("Connection main actions", () => { +describe("Connection - main actions", () => { beforeEach(() => { initialSetupCompleted(); }); @@ -83,140 +85,6 @@ describe("Connection main actions", () => { deleteDestination(destName); }); - it("Connection sync mode Incremental Append", () => { - const sourceName = appendRandomString("Test connection Postgres source cypress"); - const destName = appendRandomString("Test connection Postgres destination cypress"); - - cy.intercept("/api/v1/web_backend/connections/update").as("updateConnection"); - - populateDBSource(); - - createTestConnection(sourceName, destName); - - goToSourcePage(); - openSourceDestinationFromGrid(sourceName); - openSourceDestinationFromGrid(destName); - - goToReplicationTab(); - - searchStream("users"); - selectSyncMode("Incremental", "Append"); - selectCursorField("col1"); - - submitButtonClick(); - confirmStreamConfigurationChangedPopup(); - - cy.wait("@updateConnection", { timeout: 5000 }).then((interception) => { - assert.isNotNull(interception.response?.statusCode, "200"); - }); - - checkSuccessResult(); - - goToSourcePage(); - openSourceDestinationFromGrid(sourceName); - openSourceDestinationFromGrid(destName); - - goToReplicationTab(); - - searchStream("users"); - checkCursorField("col1"); - - deleteSource(sourceName); - deleteDestination(destName); - cleanDBSource(); - }); - - it("Connection sync mode Incremental Deduped History - PK is defined", () => { - const sourceName = appendRandomString("Test connection Postgres source cypress"); - const destName = appendRandomString("Test connection Postgres destination cypress"); - - cy.intercept("/api/v1/web_backend/connections/update").as("updateConnection"); - - populateDBSource(); - createTestConnection(sourceName, destName); - - goToSourcePage(); - openSourceDestinationFromGrid(sourceName); - openSourceDestinationFromGrid(destName); - - goToReplicationTab(); - - searchStream("users"); - selectSyncMode("Incremental", "Deduped + history"); - selectCursorField("col1"); - checkPreFilledPrimaryKeyField("id"); - - submitButtonClick(); - confirmStreamConfigurationChangedPopup(); - - cy.wait("@updateConnection", { timeout: 5000 }).then((interception) => { - assert.isNotNull(interception.response?.statusCode, "200"); - }); - - checkSuccessResult(); - - goToSourcePage(); - openSourceDestinationFromGrid(sourceName); - openSourceDestinationFromGrid(destName); - - goToReplicationTab(); - - searchStream("users"); - - checkCursorField("col1"); - checkPreFilledPrimaryKeyField("id"); - - deleteSource(sourceName); - deleteDestination(destName); - cleanDBSource(); - }); - - it("Connection sync mode Incremental Deduped History - PK is not defined", () => { - const sourceName = appendRandomString("Test connection Postgres source cypress"); - const destName = appendRandomString("Test connection Postgres destination cypress"); - - cy.intercept("/api/v1/web_backend/connections/update").as("updateConnection"); - - populateDBSource(); - createTestConnection(sourceName, destName); - - goToSourcePage(); - openSourceDestinationFromGrid(sourceName); - openSourceDestinationFromGrid(destName); - - goToReplicationTab(); - - searchStream("cities"); - selectSyncMode("Incremental", "Deduped + history"); - selectCursorField("city"); - isPrimaryKeyNonExist(); - selectPrimaryKeyField("city_code"); - - submitButtonClick(); - confirmStreamConfigurationChangedPopup(); - - cy.wait("@updateConnection", { timeout: 5000 }).then((interception) => { - assert.isNotNull(interception.response?.statusCode, "200"); - }); - - checkSuccessResult(); - - goToSourcePage(); - openSourceDestinationFromGrid(sourceName); - openSourceDestinationFromGrid(destName); - - goToReplicationTab(); - - searchStream("cities"); - - checkCursorField("city"); - checkPrimaryKey("city_code"); - - deleteSource(sourceName); - deleteDestination(destName); - cleanDBSource(); - }); - it("Update connection (pokeAPI)", () => { cy.intercept("/api/v1/web_backend/connections/update").as("updateConnection"); @@ -359,54 +227,6 @@ describe("Connection main actions", () => { deleteDestination(destName); }); - it("Create a connection, update data in source, show diff modal, reset streams", () => { - cy.intercept("/api/v1/web_backend/connections/update").as("updateConnection"); - - populateDBSource(); - const sourceName = appendRandomString( - "Test refresh source schema with changed data - connection Postgres source cypress" - ); - const destName = appendRandomString( - "Test refresh source schema with changed data - connection Local JSON destination cypress" - ); - - createTestConnection(sourceName, destName); - cy.get("div").contains(sourceName).should("exist"); - cy.get("div").contains(destName).should("exist"); - - makeChangesInDBSource(); - openSourceDestinationFromGrid(sourceName); - goToReplicationTab(); - refreshSourceSchemaBtnClick(); - - cy.get(catalogDiffModal).should("exist"); - - cy.get(removedStreamsTable).should("contain", "users"); - - cy.get(newStreamsTable).should("contain", "cars"); - - toggleStreamWithChangesAccordion("cities"); - cy.get(removedFieldsTable).should("contain", "city_code"); - cy.get(newFieldsTable).children().should("contain", "country").and("contain", "state"); - - updateSchemaModalConfirmBtnClick(); - - toggleStreamEnabledState("cars"); - - submitButtonClick(); - resetModalSaveBtnClick(); - - cy.wait("@updateConnection").then((interception) => { - assert.isNotNull(interception.response?.statusCode, "200"); - }); - - checkSuccessResult(); - - deleteSource(sourceName); - deleteDestination(destName); - cleanDBSource(); - }); - it("Delete connection", () => { const sourceName = "Test delete connection source cypress"; const destName = "Test delete connection destination cypress"; @@ -540,3 +360,232 @@ describe("Connection main actions", () => { deleteDestination(destName); }); }); + +describe("Connection - stream view", () => { + beforeEach(() => { + initialSetupCompleted(); + populateDBSource(); + }); + + afterEach(() => { + cleanDBSource(); + }); + + it("Stream view", () => { + const sourceName = appendRandomString("Test connection Postgres source cypress"); + const destName = appendRandomString("Test connection Postgres destination cypress"); + + const collectionNames = ["Field name", "col1", "id"]; + const collectionTypes = ["Data type", "String", "Integer"]; + + createTestConnection(sourceName, destName); + + goToSourcePage(); + openSourceDestinationFromGrid(sourceName); + openSourceDestinationFromGrid(destName); + + goToReplicationTab(); + + searchStream("users"); + expandStreamDetails(); + checkStreamFields(collectionNames, collectionTypes); + + deleteSource(sourceName); + deleteDestination(destName); + }); +}); + +describe("Connection sync modes", () => { + beforeEach(() => { + initialSetupCompleted(); + populateDBSource(); + }); + + afterEach(() => { + cleanDBSource(); + }); + + it("Connection sync mode Incremental Append", () => { + const sourceName = appendRandomString("Test connection Postgres source cypress"); + const destName = appendRandomString("Test connection Postgres destination cypress"); + + cy.intercept("/api/v1/web_backend/connections/update").as("updateConnection"); + + createTestConnection(sourceName, destName); + + goToSourcePage(); + openSourceDestinationFromGrid(sourceName); + openSourceDestinationFromGrid(destName); + + goToReplicationTab(); + + searchStream("users"); + selectSyncMode("Incremental", "Append"); + selectCursorField("col1"); + + submitButtonClick(); + confirmStreamConfigurationChangedPopup(); + + cy.wait("@updateConnection", { timeout: 5000 }).then((interception) => { + assert.isNotNull(interception.response?.statusCode, "200"); + }); + + checkSuccessResult(); + + goToSourcePage(); + openSourceDestinationFromGrid(sourceName); + openSourceDestinationFromGrid(destName); + + goToReplicationTab(); + + searchStream("users"); + checkCursorField("col1"); + + deleteSource(sourceName); + deleteDestination(destName); + }); + + it("Connection sync mode Incremental Deduped History - PK is defined", () => { + const sourceName = appendRandomString("Test connection Postgres source cypress"); + const destName = appendRandomString("Test connection Postgres destination cypress"); + + cy.intercept("/api/v1/web_backend/connections/update").as("updateConnection"); + + createTestConnection(sourceName, destName); + + goToSourcePage(); + openSourceDestinationFromGrid(sourceName); + openSourceDestinationFromGrid(destName); + + goToReplicationTab(); + + searchStream("users"); + selectSyncMode("Incremental", "Deduped + history"); + selectCursorField("col1"); + checkPreFilledPrimaryKeyField("id"); + + submitButtonClick(); + confirmStreamConfigurationChangedPopup(); + + cy.wait("@updateConnection", { timeout: 5000 }).then((interception) => { + assert.isNotNull(interception.response?.statusCode, "200"); + }); + + checkSuccessResult(); + + goToSourcePage(); + openSourceDestinationFromGrid(sourceName); + openSourceDestinationFromGrid(destName); + + goToReplicationTab(); + + searchStream("users"); + + checkCursorField("col1"); + checkPreFilledPrimaryKeyField("id"); + + deleteSource(sourceName); + deleteDestination(destName); + }); + + it("Connection sync mode Incremental Deduped History - PK is not defined", () => { + const sourceName = appendRandomString("Test connection Postgres source cypress"); + const destName = appendRandomString("Test connection Postgres destination cypress"); + + cy.intercept("/api/v1/web_backend/connections/update").as("updateConnection"); + + createTestConnection(sourceName, destName); + + goToSourcePage(); + openSourceDestinationFromGrid(sourceName); + openSourceDestinationFromGrid(destName); + + goToReplicationTab(); + + searchStream("cities"); + selectSyncMode("Incremental", "Deduped + history"); + selectCursorField("city"); + isPrimaryKeyNonExist(); + selectPrimaryKeyField("city_code"); + + submitButtonClick(); + confirmStreamConfigurationChangedPopup(); + + cy.wait("@updateConnection", { timeout: 5000 }).then((interception) => { + assert.isNotNull(interception.response?.statusCode, "200"); + }); + + checkSuccessResult(); + + goToSourcePage(); + openSourceDestinationFromGrid(sourceName); + openSourceDestinationFromGrid(destName); + + goToReplicationTab(); + + searchStream("cities"); + + checkCursorField("city"); + checkPrimaryKey("city_code"); + + deleteSource(sourceName); + deleteDestination(destName); + }); +}); + +describe("Connection - detect changes in source", () => { + beforeEach(() => { + initialSetupCompleted(); + populateDBSource(); + }); + + afterEach(() => { + cleanDBSource(); + }); + + it("Create a connection, update data in source, show diff modal, reset streams", () => { + cy.intercept("/api/v1/web_backend/connections/update").as("updateConnection"); + + const sourceName = appendRandomString( + "Test refresh source schema with changed data - connection Postgres source cypress" + ); + const destName = appendRandomString( + "Test refresh source schema with changed data - connection Local JSON destination cypress" + ); + + createTestConnection(sourceName, destName); + cy.get("div").contains(sourceName).should("exist"); + cy.get("div").contains(destName).should("exist"); + + makeChangesInDBSource(); + openSourceDestinationFromGrid(sourceName); + goToReplicationTab(); + refreshSourceSchemaBtnClick(); + + cy.get(catalogDiffModal).should("exist"); + + cy.get(removedStreamsTable).should("contain", "users"); + + cy.get(newStreamsTable).should("contain", "cars"); + + toggleStreamWithChangesAccordion("cities"); + cy.get(removedFieldsTable).should("contain", "city_code"); + cy.get(newFieldsTable).children().should("contain", "country").and("contain", "state"); + + updateSchemaModalConfirmBtnClick(); + + toggleStreamEnabledState("cars"); + + submitButtonClick(); + resetModalSaveBtnClick(); + + cy.wait("@updateConnection").then((interception) => { + assert.isNotNull(interception.response?.statusCode, "200"); + }); + + checkSuccessResult(); + + deleteSource(sourceName); + deleteDestination(destName); + }); +}); diff --git a/airbyte-webapp-e2e-tests/cypress/pages/replicationPage.ts b/airbyte-webapp-e2e-tests/cypress/pages/replicationPage.ts index ed90e798019e..cd7bcab3e15e 100644 --- a/airbyte-webapp-e2e-tests/cypress/pages/replicationPage.ts +++ b/airbyte-webapp-e2e-tests/cypress/pages/replicationPage.ts @@ -9,6 +9,9 @@ const destinationNamespaceSource = "div[data-testid='namespaceDefinition-source' const destinationNamespaceCustomInput = "input[data-testid='input']"; const syncModeDropdown = "div[data-testid='syncSettingsDropdown'] input"; const cursorFieldDropdown = "button[class^='PathPopoutButton_button']"; +const streamFieldNames = "[class^='TreeRowWrapper_rowWrapper'] span"; +const streamDataTypes = "[class^='TreeRowWrapper_rowWrapper'] div:nth-child(2)"; +const ExpandStreamDetailsTableBtn = "[class^='Arrow_container__']"; const cursorFieldText = "[class^='PathPopoutButton_button__']"; const primaryKeyText = "[class^='PathPopoutButton_button__']"; const preFilledPrimaryKeyText = "div[class^='PathPopout_text']"; @@ -28,6 +31,10 @@ export const enterConnectionName = (name: string) => { cy.get(connectionNameInput).type(name); }; +export const expandStreamDetails = () => { + cy.get(ExpandStreamDetailsTableBtn).click(); +}; + export const selectSchedule = (value: string) => { cy.get(scheduleDropdown).click(); cy.get(scheduleValue(value)).click(); @@ -73,6 +80,18 @@ export const selectCursorField = (value: string) => { cy.get(`.react-select__option`).contains(value).click(); }; +export const checkStreamFields = (listNames: Array, listTypes: Array,) => { + cy.get(streamFieldNames) + .each(($span, i) => { + expect($span.text()).to.equal(listNames[i]); + }); + + cy.get(streamDataTypes) + .each(($span, i) => { + expect($span.text()).to.equal(listTypes[i]); + }); +}; + export const checkCursorField = (expectedValue: string) => { cy.get(cursorFieldText).first().contains(expectedValue); }; diff --git a/airbyte-webapp/.gitignore b/airbyte-webapp/.gitignore index 8e572d98ba49..4c2aede53775 100644 --- a/airbyte-webapp/.gitignore +++ b/airbyte-webapp/.gitignore @@ -32,3 +32,4 @@ storybook-static/ # Ignore generated API clients, since they're automatically generated /src/core/request/AirbyteClient.ts /src/core/request/ConnectorBuilderClient.ts +/src/core/request/ConnectorManifest.ts diff --git a/airbyte-webapp/orval.config.ts b/airbyte-webapp/orval.config.ts index f859eaa5e4e2..f32b8e5fa769 100644 --- a/airbyte-webapp/orval.config.ts +++ b/airbyte-webapp/orval.config.ts @@ -43,4 +43,21 @@ export default defineConfig({ }, }, }, + connectorManifest: { + input: "./src/services/connectorBuilder/connector_manifest_openapi.yaml", + output: { + target: "./src/core/request/ConnectorManifest.ts", + prettier: true, + override: { + header: (info) => [ + `eslint-disable`, + `Generated by orval 🍺`, + `Do not edit manually. Run "npm run generate-client" instead.`, + ...(info.title ? [info.title] : []), + ...(info.description ? [info.description] : []), + ...(info.version ? [`OpenAPI spec version: ${info.version}`] : []), + ], + }, + }, + }, }); 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/public/images/octavia/pointing.svg b/airbyte-webapp/public/images/octavia/pointing.svg new file mode 100644 index 000000000000..b4453c1fb31d --- /dev/null +++ b/airbyte-webapp/public/images/octavia/pointing.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/airbyte-webapp/src/App.tsx b/airbyte-webapp/src/App.tsx index 7843bb1d6c20..c5343c350446 100644 --- a/airbyte-webapp/src/App.tsx +++ b/airbyte-webapp/src/App.tsx @@ -10,7 +10,7 @@ import { I18nProvider } from "core/i18n"; import { ServicesProvider } from "core/servicesProvider"; import { AppMonitoringServiceProvider } from "hooks/services/AppMonitoringService"; import { ConfirmationModalService } from "hooks/services/ConfirmationModal"; -import { defaultFeatures, FeatureService } from "hooks/services/Feature"; +import { defaultOssFeatures, FeatureService } from "hooks/services/Feature"; import { FormChangeTrackerService } from "hooks/services/FormChangeTracker"; import { ModalServiceProvider } from "hooks/services/Modal"; import NotificationService from "hooks/services/Notification"; @@ -42,7 +42,7 @@ const Services: React.FC> = ({ children }) => ( - + diff --git a/airbyte-webapp/src/components/CreateConnection/CreateConnectionForm.test.tsx b/airbyte-webapp/src/components/CreateConnection/CreateConnectionForm.test.tsx index 7bdb51a45d43..af61ff6ba76d 100644 --- a/airbyte-webapp/src/components/CreateConnection/CreateConnectionForm.test.tsx +++ b/airbyte-webapp/src/components/CreateConnection/CreateConnectionForm.test.tsx @@ -7,7 +7,7 @@ import { mockConnection } from "test-utils/mock-data/mockConnection"; import { mockDestination } from "test-utils/mock-data/mockDestination"; import { TestWrapper } from "test-utils/testutils"; -import { defaultFeatures, FeatureItem } from "hooks/services/Feature"; +import { defaultOssFeatures, FeatureItem } from "hooks/services/Feature"; import * as sourceHook from "hooks/services/useSourceHook"; import { CreateConnectionForm } from "./CreateConnectionForm"; @@ -118,7 +118,7 @@ describe("CreateConnectionForm", () => { it("should not allow cron expressions under one hour when feature not enabled", async () => { jest.spyOn(sourceHook, "useDiscoverSchema").mockImplementationOnce(() => baseUseDiscoverSchema); - const featuresToInject = defaultFeatures.filter((f) => f !== FeatureItem.AllowSyncSubOneHourCronExpressions); + const featuresToInject = defaultOssFeatures.filter((f) => f !== FeatureItem.AllowSyncSubOneHourCronExpressions); const container = tlr( 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/CreateConnection/__snapshots__/CreateConnectionForm.test.tsx.snap b/airbyte-webapp/src/components/CreateConnection/__snapshots__/CreateConnectionForm.test.tsx.snap index b7abe8343415..9401275275a6 100644 --- a/airbyte-webapp/src/components/CreateConnection/__snapshots__/CreateConnectionForm.test.tsx.snap +++ b/airbyte-webapp/src/components/CreateConnection/__snapshots__/CreateConnectionForm.test.tsx.snap @@ -424,7 +424,7 @@ exports[`CreateConnectionForm should render 1`] = ` class="" > @@ -638,7 +638,7 @@ exports[`CreateConnectionForm should render 1`] = ` class="" > 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/JobItem/components/JobLogs.module.scss b/airbyte-webapp/src/components/JobItem/components/JobLogs.module.scss new file mode 100644 index 000000000000..382abe3bfc4f --- /dev/null +++ b/airbyte-webapp/src/components/JobItem/components/JobLogs.module.scss @@ -0,0 +1,5 @@ +@use "scss/variables"; + +.jobStartFailure { + padding: variables.$spacing-lg; +} diff --git a/airbyte-webapp/src/components/JobItem/components/JobLogs.tsx b/airbyte-webapp/src/components/JobItem/components/JobLogs.tsx index 3d6f5b981eb6..859690be647b 100644 --- a/airbyte-webapp/src/components/JobItem/components/JobLogs.tsx +++ b/airbyte-webapp/src/components/JobItem/components/JobLogs.tsx @@ -5,12 +5,14 @@ import { useLocation } from "react-router-dom"; import { StatusIcon } from "components/ui/StatusIcon"; import { StatusIconStatus } from "components/ui/StatusIcon/StatusIcon"; +import { Text } from "components/ui/Text"; import { JobsWithJobs } from "pages/ConnectionPage/pages/ConnectionItemPage/JobsList"; import { useGetDebugInfoJob } from "services/job/JobService"; import { AttemptRead, AttemptStatus, SynchronousJobRead } from "../../../core/request/AirbyteClient"; import { parseAttemptLink } from "../attemptLinkUtils"; +import styles from "./JobLogs.module.scss"; import Logs from "./Logs"; import { LogsDetails } from "./LogsDetails"; import Tabs, { TabsData } from "./Tabs"; @@ -83,22 +85,28 @@ const JobLogs: React.FC = ({ jobIsFailed, job }) => { return ( <> - {attempts > 1 ? ( + {attempts > 1 && ( setAttemptNumber(parseInt(at))} data={attemptsTabs} isFailed={jobIsFailed} /> - ) : null} - 1} - logs={debugInfo?.attempts[attemptNumber]?.logs.logLines} - /> + )} + {attempts ? ( + 1} + logs={debugInfo?.attempts[attemptNumber]?.logs.logLines} + /> + ) : ( + + + + )} ); }; 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/common/FormChangeTracker/FormChangeTracker.tsx b/airbyte-webapp/src/components/common/FormChangeTracker/FormChangeTracker.tsx index b0be338e5508..a8cb5d5d651f 100644 --- a/airbyte-webapp/src/components/common/FormChangeTracker/FormChangeTracker.tsx +++ b/airbyte-webapp/src/components/common/FormChangeTracker/FormChangeTracker.tsx @@ -12,7 +12,7 @@ export const FormChangeTracker: React.FC = ({ changed, formId }) => { const id = useUniqueFormId(formId); const prevChanged = usePrevious(changed); - const { trackFormChange } = useFormChangeTrackerService(); + const { trackFormChange, clearFormChange } = useFormChangeTrackerService(); useEffect(() => { if (changed !== prevChanged) { @@ -20,5 +20,13 @@ export const FormChangeTracker: React.FC = ({ changed, formId }) => { } }, [id, changed, trackFormChange, prevChanged]); + // when the form id changes or the change tracker gets unmounted completely, + // clear out the old form as it's not relevant anymore + useEffect(() => { + return () => { + clearFormChange(id); + }; + }, [clearFormChange, id]); + return null; }; diff --git a/airbyte-webapp/src/components/connection/CatalogTree/CatalogSection.tsx b/airbyte-webapp/src/components/connection/CatalogTree/CatalogSection.tsx index bb0e9e602a5d..c8d2793e85ae 100644 --- a/airbyte-webapp/src/components/connection/CatalogTree/CatalogSection.tsx +++ b/airbyte-webapp/src/components/connection/CatalogTree/CatalogSection.tsx @@ -1,16 +1,18 @@ import { FormikErrors, getIn } from "formik"; +import isEqual from "lodash/isEqual"; import React, { memo, useCallback, useMemo } from "react"; import { useToggle } from "react-use"; import { DropDownOptionDataItem } from "components/ui/DropDown"; import { SyncSchemaField, SyncSchemaFieldObject, SyncSchemaStream } from "core/domain/catalog"; -import { traverseSchemaToField } from "core/domain/catalog/fieldUtil"; +import { traverseSchemaToField } from "core/domain/catalog/traverseSchemaToField"; import { AirbyteStreamConfiguration, DestinationSyncMode, NamespaceDefinitionType, SyncMode, + SelectedFieldInfo, } from "core/request/AirbyteClient"; import { useDestinationNamespace } from "hooks/connection/useDestinationNamespace"; import { useConnectionFormService } from "hooks/services/ConnectionForm/ConnectionFormService"; @@ -96,6 +98,32 @@ const CatalogSectionInner: React.FC = ({ [updateStreamWithConfig] ); + const numberOfFieldsInStream = Object.keys(streamNode?.stream?.jsonSchema?.properties).length ?? 0; + + const onSelectedFieldsUpdate = (selectedFields: SelectedFieldInfo[]) => { + updateStreamWithConfig({ + selectedFields, + fieldSelectionEnabled: true, + }); + }; + + // All fields in a stream are implicitly selected. When deselecting the first one, we also need to explicitly select the rest. + const onFirstFieldDeselected = (fieldPath: string[]) => { + const allOtherFields = fields.filter((field: SyncSchemaField) => !isEqual(field.path, fieldPath)) ?? []; + const selectedFields: SelectedFieldInfo[] = allOtherFields.map((field) => ({ fieldPath: field.path })); + updateStreamWithConfig({ + selectedFields, + fieldSelectionEnabled: true, + }); + }; + + const onAllFieldsSelected = () => { + updateStreamWithConfig({ + selectedFields: [], + fieldSelectionEnabled: false, + }); + }; + const pkRequired = config?.destinationSyncMode === DestinationSyncMode.append_dedup; const cursorRequired = config?.syncMode === SyncMode.incremental; const shouldDefinePk = stream?.sourceDefinedPrimaryKey?.length === 0 && pkRequired; @@ -175,6 +203,8 @@ const CatalogSectionInner: React.FC = ({ onSelectedChange={onSelectStream} shouldDefinePk={shouldDefinePk} shouldDefineCursor={shouldDefineCursor} + isCursorDefinitionSupported={cursorRequired} + isPKDefinitionSupported={pkRequired} stream={stream} /> ) : ( @@ -182,8 +212,12 @@ const CatalogSectionInner: React.FC = ({ diff --git a/airbyte-webapp/src/components/connection/CatalogTree/CatalogTree.tsx b/airbyte-webapp/src/components/connection/CatalogTree/CatalogTree.tsx index ad8340e0745a..3f53f11ecd60 100644 --- a/airbyte-webapp/src/components/connection/CatalogTree/CatalogTree.tsx +++ b/airbyte-webapp/src/components/connection/CatalogTree/CatalogTree.tsx @@ -56,8 +56,18 @@ const CatalogTreeComponent: React.FC> const changedStreams = useMemo( () => - streams.filter((stream, idx) => { - return stream.config?.selected !== initialValues.syncCatalog.streams[idx].config?.selected; + streams.filter((stream) => { + const matchingInitialValue = initialValues.syncCatalog.streams.find((initialStream) => { + if (!stream.stream || !initialStream.stream) { + return false; + } + + return ( + initialStream.stream.name === stream.stream.name && + initialStream.stream.namespace === stream.stream.namespace + ); + }); + return stream.config?.selected !== matchingInitialValue?.config?.selected; }), [initialValues.syncCatalog.streams, streams] ); diff --git a/airbyte-webapp/src/components/connection/CatalogTree/FieldHeader.tsx b/airbyte-webapp/src/components/connection/CatalogTree/FieldHeader.tsx index 7101421116b1..30a5e3e6196b 100644 --- a/airbyte-webapp/src/components/connection/CatalogTree/FieldHeader.tsx +++ b/airbyte-webapp/src/components/connection/CatalogTree/FieldHeader.tsx @@ -1,29 +1,45 @@ import React, { memo } from "react"; import { FormattedMessage } from "react-intl"; -import { HeaderCell, NameContainer } from "./styles"; +import { useExperiment } from "hooks/services/Experiment"; -const FieldHeaderInner: React.FC = () => ( - <> - - - - - - - - - - - - - - - - - - -); +import { HeaderCell, SyncHeaderContainer, NameContainer } from "./styles"; + +const FieldHeaderInner: React.FC = () => { + const isColumnSelectionEnabled = useExperiment("connection.columnSelection", false); + + return ( + <> + {isColumnSelectionEnabled && ( + + + + + + )} + + {!isColumnSelectionEnabled && ( + + + + )} + {isColumnSelectionEnabled && } + + + + + + + + + + + + + + + ); +}; const FieldHeader = memo(FieldHeaderInner); diff --git a/airbyte-webapp/src/components/connection/CatalogTree/FieldRow.tsx b/airbyte-webapp/src/components/connection/CatalogTree/FieldRow.tsx index c87a61578f7a..f2ec7d64fceb 100644 --- a/airbyte-webapp/src/components/connection/CatalogTree/FieldRow.tsx +++ b/airbyte-webapp/src/components/connection/CatalogTree/FieldRow.tsx @@ -1,25 +1,30 @@ import React, { memo } from "react"; +import { FormattedMessage } from "react-intl"; import styled from "styled-components"; import { Cell } from "components/SimpleTableComponents"; import { CheckBox } from "components/ui/CheckBox"; import { RadioButton } from "components/ui/RadioButton"; +import { Switch } from "components/ui/Switch"; +import { Tooltip } from "components/ui/Tooltip"; -import { SyncSchemaField } from "core/domain/catalog"; +import { SyncSchemaField, SyncSchemaFieldObject } from "core/domain/catalog"; import { AirbyteStreamConfiguration } from "core/request/AirbyteClient"; +import { useExperiment } from "hooks/services/Experiment"; import { equal } from "utils/objects"; import { useTranslateDataType } from "utils/useTranslateDataType"; import DataTypeCell from "./DataTypeCell"; import { pathDisplayName } from "./PathPopout"; -import { NameContainer } from "./styles"; +import { NameContainer, SyncCheckboxContainer } from "./styles"; interface FieldRowProps { isPrimaryKeyEnabled: boolean; isCursorEnabled: boolean; - + isSelected: boolean; onPrimaryKeyChange: (pk: string[]) => void; onCursorChange: (cs: string[]) => void; + onToggleFieldSelected: (fieldPath: string[], isSelected: boolean) => void; field: SyncSchemaField; config: AirbyteStreamConfiguration | undefined; } @@ -35,22 +40,47 @@ const LastCell = styled(Cell)` const FieldRowInner: React.FC = ({ onPrimaryKeyChange, onCursorChange, + onToggleFieldSelected, field, config, isCursorEnabled, isPrimaryKeyEnabled, + isSelected, }) => { + const isColumnSelectionEnabled = useExperiment("connection.columnSelection", false); const dataType = useTranslateDataType(field); const name = pathDisplayName(field.path); const isCursor = equal(config?.cursorField, field.path); const isPrimaryKey = !!config?.primaryKey?.some((p) => equal(p, field.path)); + const isNestedField = SyncSchemaFieldObject.isNestedField(field); return ( <> - - {name} - + {isColumnSelectionEnabled && ( + + + {!isNestedField && ( + onToggleFieldSelected(field.path, !isSelected)} /> + )} + {isNestedField && ( + }> + + + )} + + + )} + {isColumnSelectionEnabled && ( + + {name} + + )} + {!isColumnSelectionEnabled && ( + + {name} + + )} {dataType} {isCursorEnabled && onCursorChange(field.path)} />} diff --git a/airbyte-webapp/src/components/connection/CatalogTree/StreamFieldTable.tsx b/airbyte-webapp/src/components/connection/CatalogTree/StreamFieldTable.tsx index 7360a2076631..7220f4fceaa4 100644 --- a/airbyte-webapp/src/components/connection/CatalogTree/StreamFieldTable.tsx +++ b/airbyte-webapp/src/components/connection/CatalogTree/StreamFieldTable.tsx @@ -1,7 +1,8 @@ -import React from "react"; +import isEqual from "lodash/isEqual"; +import React, { useCallback } from "react"; import { SyncSchemaField, SyncSchemaFieldObject } from "core/domain/catalog"; -import { AirbyteStreamConfiguration } from "core/request/AirbyteClient"; +import { AirbyteStreamConfiguration, SelectedFieldInfo } from "core/request/AirbyteClient"; import { FieldHeader } from "./FieldHeader"; import { FieldRow } from "./FieldRow"; @@ -10,30 +11,75 @@ import styles from "./StreamFieldTable.module.scss"; import { TreeRowWrapper } from "./TreeRowWrapper"; interface StreamFieldTableProps { - syncSchemaFields: SyncSchemaField[]; config: AirbyteStreamConfiguration | undefined; - shouldDefinePk: boolean; - shouldDefineCursor: boolean; onCursorSelect: (cursorPath: string[]) => void; + onFirstFieldDeselected: (fieldName: string[]) => void; onPkSelect: (pkPath: string[]) => void; + onSelectedFieldsUpdate: (selectedFields: SelectedFieldInfo[]) => void; + onAllFieldsSelected: () => void; + shouldDefineCursor: boolean; + shouldDefinePk: boolean; + syncSchemaFields: SyncSchemaField[]; + numberOfSelectableFields: number; } -export const StreamFieldTable: React.FC = (props) => { +export const StreamFieldTable: React.FC = ({ + config, + onCursorSelect, + onFirstFieldDeselected, + onPkSelect, + onSelectedFieldsUpdate, + onAllFieldsSelected, + shouldDefineCursor, + shouldDefinePk, + syncSchemaFields, + numberOfSelectableFields, +}) => { + const handleFieldToggle = (fieldPath: string[], isSelected: boolean) => { + const previouslySelectedFields = config?.selectedFields || []; + + if (!config?.fieldSelectionEnabled && !isSelected) { + onFirstFieldDeselected(fieldPath); + } else if (isSelected && previouslySelectedFields.length === numberOfSelectableFields - 1) { + // In this case we are selecting the only unselected field + onAllFieldsSelected(); + } else if (isSelected) { + onSelectedFieldsUpdate([...previouslySelectedFields, { fieldPath }]); + } else { + onSelectedFieldsUpdate(previouslySelectedFields.filter((f) => !isEqual(f.fieldPath, fieldPath)) || []); + } + }; + + const isFieldSelected = useCallback( + (field: SyncSchemaField): boolean => { + // All fields are implicitly selected if field selection is disabled + if (!config?.fieldSelectionEnabled) { + return true; + } + + // path[0] is the top-level field name for all nested fields + return !!config?.selectedFields?.find((f) => isEqual(f.fieldPath, [field.path[0]])); + }, + [config] + ); + return (
    - {props.syncSchemaFields.map((field) => ( + {syncSchemaFields.map((field) => ( ))} 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/connection/CatalogTree/styles.tsx b/airbyte-webapp/src/components/connection/CatalogTree/styles.tsx index 47c7bf64fcd9..1e9f5abe69b7 100644 --- a/airbyte-webapp/src/components/connection/CatalogTree/styles.tsx +++ b/airbyte-webapp/src/components/connection/CatalogTree/styles.tsx @@ -20,3 +20,13 @@ export const ArrowCell = styled(HeaderCell)` export const NameContainer = styled.span` padding-left: 30px; `; + +export const SyncHeaderContainer = styled.span` + padding-left: 34px; + display: inline-block; + min-width: 62px; +`; + +export const SyncCheckboxContainer = styled.div` + padding-left: 24px; +`; diff --git a/airbyte-webapp/src/components/connection/DestinationNamespaceModal/DestinationNamespaceModal.tsx b/airbyte-webapp/src/components/connection/DestinationNamespaceModal/DestinationNamespaceModal.tsx index 48587c2e580f..d72ee5b0d31b 100644 --- a/airbyte-webapp/src/components/connection/DestinationNamespaceModal/DestinationNamespaceModal.tsx +++ b/airbyte-webapp/src/components/connection/DestinationNamespaceModal/DestinationNamespaceModal.tsx @@ -10,6 +10,7 @@ import { ModalBody, ModalFooter } from "components/ui/Modal"; import { Text } from "components/ui/Text"; import { NamespaceDefinitionType } from "core/request/AirbyteClient"; +import { links } from "utils/links"; import { FormikConnectionFormValues } from "views/Connection/ConnectionForm/formConfig"; import styles from "./DestinationNamespaceModal.module.scss"; @@ -143,6 +144,11 @@ export const DestinationNamespaceModal: React.FC + + + + +
    diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/AddStreamButton.module.scss b/airbyte-webapp/src/components/connectorBuilder/Builder/AddStreamButton.module.scss new file mode 100644 index 000000000000..6c1f9c41b990 --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/AddStreamButton.module.scss @@ -0,0 +1,20 @@ +@use "scss/variables"; +@use "scss/colors"; + +$buttonWidth: 26px; + +.body { + display: flex; + flex-direction: column; + gap: variables.$spacing-xl; +} + +.addButton { + width: $buttonWidth; + height: $buttonWidth !important; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + padding: 9px !important; +} diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/AddStreamButton.tsx b/airbyte-webapp/src/components/connectorBuilder/Builder/AddStreamButton.tsx new file mode 100644 index 000000000000..274ca47e84d0 --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/AddStreamButton.tsx @@ -0,0 +1,106 @@ +import { Form, Formik, useField } from "formik"; +import { useState } from "react"; +import { FormattedMessage, useIntl } from "react-intl"; + +import { Button } from "components/ui/Button"; +import { Modal, ModalBody, ModalFooter } from "components/ui/Modal"; + +import { FormikPatch } from "core/form/FormikPatch"; + +import { ReactComponent as PlusIcon } from "../../connection/ConnectionOnboarding/plusIcon.svg"; +import { BuilderStream } from "../types"; +import styles from "./AddStreamButton.module.scss"; +import { BuilderField } from "./BuilderField"; + +interface AddStreamValues { + streamName: string; + urlPath: string; +} + +interface AddStreamButtonProps { + onAddStream: (addedStreamNum: number) => void; +} + +export const AddStreamButton: React.FC = ({ onAddStream }) => { + const { formatMessage } = useIntl(); + const [isOpen, setIsOpen] = useState(false); + const [streamsField, , helpers] = useField("streams"); + const numStreams = streamsField.value.length; + + return ( + <> + + + + + + + + )} + + ); +}; diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/Builder.module.scss b/airbyte-webapp/src/components/connectorBuilder/Builder/Builder.module.scss new file mode 100644 index 000000000000..4c361af3aa4e --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/Builder.module.scss @@ -0,0 +1,21 @@ +@use "scss/variables"; +@use "scss/colors"; +@use "scss/mixins"; + +.container { + height: 100%; + display: flex; +} + +.sidebar { + @include mixins.right-shadow; + + width: 200px; + flex: 0 0 auto; + background-color: colors.$white; +} + +.form { + flex: 1; + padding: variables.$spacing-xl; +} diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/Builder.tsx b/airbyte-webapp/src/components/connectorBuilder/Builder/Builder.tsx new file mode 100644 index 000000000000..fb40a24a2d9f --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/Builder.tsx @@ -0,0 +1,31 @@ +import { Form } from "formik"; +import { useEffect } from "react"; + +import { useConnectorBuilderState } from "services/connectorBuilder/ConnectorBuilderStateService"; + +import { BuilderFormValues } from "../types"; +import styles from "./Builder.module.scss"; +import { BuilderSidebar } from "./BuilderSidebar"; +import { GlobalConfigView } from "./GlobalConfigView"; +import { StreamConfigView } from "./StreamConfigView"; + +interface BuilderProps { + values: BuilderFormValues; + toggleYamlEditor: () => void; +} + +export const Builder: React.FC = ({ values, toggleYamlEditor }) => { + const { setBuilderFormValues, selectedView } = useConnectorBuilderState(); + useEffect(() => { + setBuilderFormValues(values); + }, [values, setBuilderFormValues]); + + return ( +
    + +
    + {selectedView === "global" ? : } + +
    + ); +}; diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderCard.module.scss b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderCard.module.scss new file mode 100644 index 000000000000..48fedff9a2a0 --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderCard.module.scss @@ -0,0 +1,8 @@ +@use "scss/variables"; + +.card { + padding: variables.$spacing-xl; + display: flex; + flex-direction: column; + gap: variables.$spacing-xl; +} diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderCard.tsx b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderCard.tsx new file mode 100644 index 000000000000..312884a7a2b4 --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderCard.tsx @@ -0,0 +1,14 @@ +import classNames from "classnames"; +import React from "react"; + +import { Card } from "components/ui/Card"; + +import styles from "./BuilderCard.module.scss"; + +interface BuilderCardProps { + className?: string; +} + +export const BuilderCard: React.FC> = ({ children, className }) => { + return {children}; +}; diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderConfigView.module.scss b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderConfigView.module.scss new file mode 100644 index 000000000000..ff2cbdd5450d --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderConfigView.module.scss @@ -0,0 +1,13 @@ +@use "scss/variables"; +@use "scss/colors"; + +.container { + display: flex; + flex-direction: column; + gap: variables.$spacing-md; +} + +.heading { + text-align: center; + font-size: 14px; +} diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderConfigView.tsx b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderConfigView.tsx new file mode 100644 index 000000000000..e064a9e1bbde --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderConfigView.tsx @@ -0,0 +1,20 @@ +import React from "react"; + +import { Heading } from "components/ui/Heading"; + +import styles from "./BuilderConfigView.module.scss"; + +interface BuilderConfigViewProps { + heading: string; +} + +export const BuilderConfigView: React.FC> = ({ children, heading }) => { + return ( +
    + + {heading} + + {children} +
    + ); +}; diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderField.module.scss b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderField.module.scss new file mode 100644 index 000000000000..f198f89561f5 --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderField.module.scss @@ -0,0 +1,7 @@ +@use "scss/variables"; +@use "scss/colors"; + +.error { + margin-top: variables.$spacing-sm; + color: colors.$red; +} diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderField.tsx b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderField.tsx new file mode 100644 index 000000000000..1b9ad8849d7b --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderField.tsx @@ -0,0 +1,79 @@ +import { useField } from "formik"; +import { FormattedMessage } from "react-intl"; + +import { ControlLabels } from "components/LabeledControl"; +import { DropDown } from "components/ui/DropDown"; +import { Input } from "components/ui/Input"; +import { TagInput } from "components/ui/TagInput"; +import { Text } from "components/ui/Text"; + +import styles from "./BuilderField.module.scss"; + +interface EnumFieldProps { + options: string[]; + value: string; + setValue: (value: string) => void; + error: boolean; +} + +interface ArrayFieldProps { + name: string; + value: string[]; + setValue: (value: string[]) => void; + error: boolean; +} + +interface BaseFieldProps { + // path to the location in the Connector Manifest schema which should be set by this component + path: string; + label: string; + tooltip?: string; + optional?: boolean; +} + +type BuilderFieldProps = BaseFieldProps & ({ type: "text" | "array" } | { type: "enum"; options: string[] }); + +const EnumField: React.FC = ({ options, value, setValue, error, ...props }) => { + return ( + { + return { label: option, value: option }; + })} + onChange={(selected) => selected && setValue(selected.value)} + value={value} + error={error} + /> + ); +}; + +const ArrayField: React.FC = ({ name, value, setValue, error }) => { + return setValue(value)} error={error} />; +}; + +export const BuilderField: React.FC = ({ path, label, tooltip, optional = false, ...props }) => { + const [field, meta, helpers] = useField(path); + const hasError = !!meta.error && meta.touched; + + return ( + + {props.type === "text" && } + {props.type === "array" && ( + + )} + {props.type === "enum" && ( + + )} + {hasError && ( + + + + )} + + ); +}; diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderSidebar.module.scss b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderSidebar.module.scss new file mode 100644 index 000000000000..ee4927d9320c --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderSidebar.module.scss @@ -0,0 +1,117 @@ +@use "scss/variables"; +@use "scss/colors"; +@use "scss/mixins"; + +.container { + padding: variables.$spacing-sm; + display: flex; + flex-direction: column; + align-items: center; + position: relative; +} + +.connectorImg { + @include mixins.shadow; + + width: 90px; + border-radius: 25px; + padding: variables.$spacing-xl; + margin-top: 55px; +} + +.connectorName { + margin-top: variables.$spacing-md; + min-height: 28px; + width: 100%; + display: flex; + align-items: center; + overflow-x: auto; +} + +.connectorNameText { + margin-left: auto; + margin-right: auto; +} + +.streamsHeader { + display: flex; + align-items: center; + width: 100%; + padding: 0 variables.$spacing-sm 0 variables.$spacing-md; + margin-top: variables.$spacing-2xl; +} + +.streamsHeading { + color: colors.$blue; + flex-grow: 1; +} + +.downloadButton { + width: 100%; +} + +.resetButton { + margin-top: variables.$spacing-sm; +} + +.viewButton { + border: none; + width: 100%; + height: 34px; + flex-shrink: 0; + cursor: pointer; + border-radius: variables.$border-radius-md; + padding: variables.$spacing-md; + display: flex; + align-items: center; + gap: variables.$spacing-sm; + overflow: hidden; +} + +.unselectedViewButton { + background-color: transparent; + color: colors.$dark-blue; + + &:hover { + background-color: colors.$grey-50; + } +} + +.selectedViewButton { + background-color: colors.$dark-blue; + color: colors.$white; +} + +.globalConfigButton { + margin-top: variables.$spacing-xl; +} + +.streamList { + flex-grow: 1; + width: 100%; + margin: variables.$spacing-md 0; + display: flex; + flex-direction: column; + overflow-y: auto; +} + +.viewLabel { + flex: 1; + overflow: hidden; + display: flex; + gap: variables.$spacing-sm; + align-items: center; +} + +.errorIndicator { + flex: 0 0 auto; + margin-right: variables.$spacing-xs; +} + +.streamViewText { + color: inherit; +} + +.emptyStreamViewText { + color: colors.$grey-300; +} diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderSidebar.tsx b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderSidebar.tsx new file mode 100644 index 000000000000..11a2f53b553e --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderSidebar.tsx @@ -0,0 +1,144 @@ +import { faSliders } from "@fortawesome/free-solid-svg-icons"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import classnames from "classnames"; +import { useFormikContext } from "formik"; +import { FormattedMessage, useIntl } from "react-intl"; + +import Indicator from "components/Indicator"; +import { Button } from "components/ui/Button"; +import { Heading } from "components/ui/Heading"; +import { Text } from "components/ui/Text"; + +import { useConfirmationModalService } from "hooks/services/ConfirmationModal"; +import { + BuilderView, + DEFAULT_BUILDER_FORM_VALUES, + useConnectorBuilderState, +} from "services/connectorBuilder/ConnectorBuilderStateService"; + +import { DownloadYamlButton } from "../DownloadYamlButton"; +import { BuilderFormValues } from "../types"; +import { useBuilderErrors } from "../useBuilderErrors"; +import { AddStreamButton } from "./AddStreamButton"; +import styles from "./BuilderSidebar.module.scss"; +import { UiYamlToggleButton } from "./UiYamlToggleButton"; + +interface ViewSelectButtonProps { + className?: string; + selected: boolean; + showErrorIndicator: boolean; + onClick: () => void; +} + +const ViewSelectButton: React.FC> = ({ + children, + className, + selected, + showErrorIndicator, + onClick, +}) => { + return ( + + ); +}; + +interface BuilderSidebarProps { + className?: string; + toggleYamlEditor: () => void; +} + +export const BuilderSidebar: React.FC = ({ className, toggleYamlEditor }) => { + const { formatMessage } = useIntl(); + const { hasErrors } = useBuilderErrors(); + const { openConfirmationModal, closeConfirmationModal } = useConfirmationModalService(); + const { yamlManifest, selectedView, setSelectedView, setTestStreamIndex } = useConnectorBuilderState(); + const { values, setValues } = useFormikContext(); + const handleResetForm = () => { + openConfirmationModal({ + text: "connectorBuilder.resetModal.text", + title: "connectorBuilder.resetModal.title", + submitButtonText: "connectorBuilder.resetModal.submitButton", + onSubmit: () => { + setValues(DEFAULT_BUILDER_FORM_VALUES); + setSelectedView("global"); + closeConfirmationModal(); + }, + }); + }; + const handleViewSelect = (selectedView: BuilderView) => { + setSelectedView(selectedView); + if (selectedView !== "global") { + setTestStreamIndex(selectedView); + } + }; + + return ( +
    + + + {/* TODO: replace with uploaded img when that functionality is added */} + {formatMessage({ + +
    + + {values.global?.connectorName} + +
    + + handleViewSelect("global")} + > + + + + +
    + + + + + handleViewSelect(addedStreamNum)} /> +
    + +
    + {values.streams.map(({ name }, num) => ( + handleViewSelect(num)} + > + {name && name.trim() ? ( + {name} + ) : ( + + + + )} + + ))} +
    + + + +
    + ); +}; diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderTitle.module.scss b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderTitle.module.scss new file mode 100644 index 000000000000..1cd5dbf53908 --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderTitle.module.scss @@ -0,0 +1,51 @@ +@use "scss/variables"; +@use "scss/colors"; + +.container { + display: flex; + flex-direction: column; + align-items: center; + gap: variables.$spacing-sm; +} + +.label { + color: colors.$grey-400; +} + +.inputContainer { + max-width: 500px; + width: 70%; + background-color: colors.$grey-100; + border-color: colors.$grey-200; + border-radius: variables.$border-radius-md; + + &:not(.disabled, .focused):hover { + border-color: colors.$blue; + } + + &.md { + height: 43px; + } + + &.lg { + height: 50px; + } +} + +.input { + text-align: center; + height: 100%; + font-weight: 700; + + &.md { + font-size: 19px; + } + + &.lg { + font-size: 24px; + } +} + +.error { + color: colors.$red; +} diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderTitle.tsx b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderTitle.tsx new file mode 100644 index 000000000000..85524dbd8b22 --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/BuilderTitle.tsx @@ -0,0 +1,44 @@ +import classNames from "classnames"; +import { useField } from "formik"; +import { FormattedMessage } from "react-intl"; + +import { Input } from "components/ui/Input"; +import { Text } from "components/ui/Text"; + +import styles from "./BuilderTitle.module.scss"; + +interface BuilderTitleProps { + // path to the location in the Connector Manifest schema which should be set by this component + path: string; + label: string; + size: "md" | "lg"; +} + +export const BuilderTitle: React.FC = ({ path, label, size }) => { + const [field, meta] = useField(path); + const hasError = !!meta.error && meta.touched; + + return ( +
    + + {label} + + + {hasError && ( + + + + )} +
    + ); +}; diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/GlobalConfigView.module.scss b/airbyte-webapp/src/components/connectorBuilder/Builder/GlobalConfigView.module.scss new file mode 100644 index 000000000000..8f5b17612ae4 --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/GlobalConfigView.module.scss @@ -0,0 +1,5 @@ +@use "scss/variables"; + +.content { + margin-top: variables.$spacing-lg; +} diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/GlobalConfigView.tsx b/airbyte-webapp/src/components/connectorBuilder/Builder/GlobalConfigView.tsx new file mode 100644 index 000000000000..d8495cd83000 --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/GlobalConfigView.tsx @@ -0,0 +1,21 @@ +import { useIntl } from "react-intl"; + +import { BuilderCard } from "./BuilderCard"; +import { BuilderConfigView } from "./BuilderConfigView"; +import { BuilderField } from "./BuilderField"; +import { BuilderTitle } from "./BuilderTitle"; +import styles from "./GlobalConfigView.module.scss"; + +export const GlobalConfigView: React.FC = () => { + const { formatMessage } = useIntl(); + + return ( + + {/* Not using intl for the labels and tooltips in this component in order to keep maintainence simple */} + + + + + + ); +}; diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/KeyValueListField.module.scss b/airbyte-webapp/src/components/connectorBuilder/Builder/KeyValueListField.module.scss new file mode 100644 index 000000000000..62a4b592138c --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/KeyValueListField.module.scss @@ -0,0 +1,39 @@ +@use "scss/variables"; +@use "scss/colors"; + +$removeButtonWidth: 20px; + +.inputContainer { + width: 100%; + display: flex; + gap: variables.$spacing-xl; + align-items: center; +} + +.labeledInput { + flex: 1; + max-width: 400px; + display: flex; + gap: variables.$spacing-sm; + align-items: center; +} + +.kvLabel { + color: colors.$grey-400; +} + +.removeButton { + border: none; + background-color: transparent; + color: colors.$grey; + cursor: pointer; + padding: 0; + width: $removeButtonWidth; + height: $removeButtonWidth; + font-size: 18px; + transition: variables.$transition; + + &:hover { + color: colors.$red; + } +} diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/KeyValueListField.tsx b/airbyte-webapp/src/components/connectorBuilder/Builder/KeyValueListField.tsx new file mode 100644 index 000000000000..d66655fe1981 --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/KeyValueListField.tsx @@ -0,0 +1,74 @@ +import { faXmark } from "@fortawesome/free-solid-svg-icons"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { useField } from "formik"; +import { FormattedMessage } from "react-intl"; + +import GroupControls from "components/GroupControls"; +import { ControlLabels } from "components/LabeledControl"; +import { Button } from "components/ui/Button"; +import { Input } from "components/ui/Input"; +import { Text } from "components/ui/Text"; + +import styles from "./KeyValueListField.module.scss"; + +interface KeyValueInputProps { + keyValue: [string, string]; + onChange: (keyValue: [string, string]) => void; + onRemove: () => void; +} + +const KeyValueInput: React.FC = ({ keyValue, onChange, onRemove }) => { + return ( +
    +
    + + + + onChange([e.target.value, keyValue[1]])} /> +
    +
    + + + + onChange([keyValue[0], e.target.value])} /> +
    + +
    + ); +}; + +interface KeyValueListFieldProps { + path: string; + label: string; + tooltip: string; +} + +export const KeyValueListField: React.FC = ({ path, label, tooltip }) => { + const [{ value: keyValueList }, , { setValue: setKeyValueList }] = useField>(path); + + return ( + }> + {keyValueList.map((keyValue, keyValueIndex) => ( + { + const updatedList = keyValueList.map((entry, index) => (index === keyValueIndex ? newKeyValue : entry)); + setKeyValueList(updatedList); + }} + onRemove={() => { + const updatedList = keyValueList.filter((_, index) => index !== keyValueIndex); + setKeyValueList(updatedList); + }} + /> + ))} +
    + +
    +
    + ); +}; diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/StreamConfigView.module.scss b/airbyte-webapp/src/components/connectorBuilder/Builder/StreamConfigView.module.scss new file mode 100644 index 000000000000..f59cc288f5b9 --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/StreamConfigView.module.scss @@ -0,0 +1,27 @@ +@use "scss/variables"; +@use "scss/colors"; + +$deleteButtonWidth: 24px; + +.controls { + display: flex; + justify-content: center; +} + +.deleteButton { + border: none; + background-color: transparent; + color: colors.$grey-400; + border-radius: variables.$border-radius-xs; + width: $deleteButtonWidth; + height: $deleteButtonWidth; + padding: variables.$spacing-xs; + padding: 0; + cursor: pointer; + transition: variables.$transition; + + &:hover { + color: colors.$white; + background-color: colors.$red; + } +} diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/StreamConfigView.tsx b/airbyte-webapp/src/components/connectorBuilder/Builder/StreamConfigView.tsx new file mode 100644 index 000000000000..d212d530f20e --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/StreamConfigView.tsx @@ -0,0 +1,96 @@ +import { faTrashCan } from "@fortawesome/free-regular-svg-icons"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { useField } from "formik"; +import { useIntl } from "react-intl"; + +import { useConfirmationModalService } from "hooks/services/ConfirmationModal"; +import { BuilderView, useConnectorBuilderState } from "services/connectorBuilder/ConnectorBuilderStateService"; + +import { BuilderStream } from "../types"; +import { BuilderCard } from "./BuilderCard"; +import { BuilderConfigView } from "./BuilderConfigView"; +import { BuilderField } from "./BuilderField"; +import { BuilderTitle } from "./BuilderTitle"; +import { KeyValueListField } from "./KeyValueListField"; +import styles from "./StreamConfigView.module.scss"; + +interface StreamConfigViewProps { + streamNum: number; +} + +export const StreamConfigView: React.FC = ({ streamNum }) => { + const { formatMessage } = useIntl(); + const [field, , helpers] = useField("streams"); + const { openConfirmationModal, closeConfirmationModal } = useConfirmationModalService(); + const { setSelectedView, setTestStreamIndex } = useConnectorBuilderState(); + + const streamPath = `streams[${streamNum}]`; + const streamFieldPath = (fieldPath: string) => `${streamPath}.${fieldPath}`; + + const handleDelete = () => { + openConfirmationModal({ + text: "connectorBuilder.deleteStreamModal.text", + title: "connectorBuilder.deleteStreamModal.title", + submitButtonText: "connectorBuilder.deleteStreamModal.submitButton", + onSubmit: () => { + const updatedStreams = field.value.filter((_, index) => index !== streamNum); + const streamToSelect = streamNum >= updatedStreams.length ? updatedStreams.length - 1 : streamNum; + const viewToSelect: BuilderView = updatedStreams.length === 0 ? "global" : streamToSelect; + helpers.setValue(updatedStreams); + setSelectedView(viewToSelect); + setTestStreamIndex(streamToSelect); + closeConfirmationModal(); + }, + }); + }; + + return ( + + {/* Not using intl for the labels and tooltips in this component in order to keep maintainence simple */} + +
    + +
    + + + + + + + + + + +
    + ); +}; diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/UiYamlToggleButton.module.scss b/airbyte-webapp/src/components/connectorBuilder/Builder/UiYamlToggleButton.module.scss new file mode 100644 index 000000000000..53e26ff34d47 --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/UiYamlToggleButton.module.scss @@ -0,0 +1,38 @@ +@use "scss/variables"; +@use "scss/colors"; + +.button { + cursor: pointer; + border: variables.$border-thin solid colors.$dark-blue; + background-color: colors.$dark-blue; + border-radius: variables.$border-radius-sm; + padding: 0; + overflow: hidden; + + // absolute positioning so it is in the same spot in both the ui and yaml views + position: absolute; + top: 15px; + left: 51px; + display: grid; + grid-template: 1fr / 1fr 1fr; +} + +.text { + height: 100%; + flex: 1; + display: flex; + align-items: center; + justify-content: center; + font-weight: 700; + padding: 4px 8px; +} + +.selected { + background-color: transparent; + color: colors.$white; +} + +.unselected { + background-color: colors.$white; + color: colors.$dark-blue; +} diff --git a/airbyte-webapp/src/components/connectorBuilder/Builder/UiYamlToggleButton.tsx b/airbyte-webapp/src/components/connectorBuilder/Builder/UiYamlToggleButton.tsx new file mode 100644 index 000000000000..e92f1cb25126 --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/Builder/UiYamlToggleButton.tsx @@ -0,0 +1,39 @@ +import classnames from "classnames"; +import { FormattedMessage } from "react-intl"; + +import { Text } from "components/ui/Text"; + +import styles from "./UiYamlToggleButton.module.scss"; + +interface UiYamlToggleButtonProps { + className?: string; + yamlSelected: boolean; + onClick: () => void; +} + +export const UiYamlToggleButton: React.FC = ({ className, yamlSelected, onClick }) => { + return ( + + ); +}; diff --git a/airbyte-webapp/src/components/connectorBuilder/DownloadYamlButton.module.scss b/airbyte-webapp/src/components/connectorBuilder/DownloadYamlButton.module.scss new file mode 100644 index 000000000000..693e901fd3e1 --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/DownloadYamlButton.module.scss @@ -0,0 +1,3 @@ +.tooltipContainer { + display: block; +} diff --git a/airbyte-webapp/src/components/connectorBuilder/DownloadYamlButton.tsx b/airbyte-webapp/src/components/connectorBuilder/DownloadYamlButton.tsx new file mode 100644 index 000000000000..55a6d1f0170a --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/DownloadYamlButton.tsx @@ -0,0 +1,80 @@ +import { faDownload, faWarning } from "@fortawesome/free-solid-svg-icons"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { FormattedMessage } from "react-intl"; + +import { Button } from "components/ui/Button"; +import { Tooltip } from "components/ui/Tooltip"; + +import { useConnectorBuilderState } from "services/connectorBuilder/ConnectorBuilderStateService"; +import { downloadFile } from "utils/file"; + +import styles from "./DownloadYamlButton.module.scss"; +import { useBuilderErrors } from "./useBuilderErrors"; + +interface DownloadYamlButtonProps { + className?: string; + yaml: string; + yamlIsValid: boolean; +} + +export const DownloadYamlButton: React.FC = ({ className, yaml, yamlIsValid }) => { + const { editorView } = useConnectorBuilderState(); + const { hasErrors, validateAndTouch } = useBuilderErrors(); + + const downloadYaml = () => { + const file = new Blob([yaml], { type: "text/plain;charset=utf-8" }); + // TODO: pull name from connector name input or generate from yaml contents + downloadFile(file, "connector_builder.yaml"); + }; + + const handleClick = () => { + if (editorView === "yaml") { + downloadYaml(); + return; + } + + validateAndTouch(downloadYaml); + }; + + let buttonDisabled = false; + let showWarningIcon = false; + let tooltipContent = undefined; + + if (editorView === "yaml" && !yamlIsValid) { + buttonDisabled = true; + showWarningIcon = true; + tooltipContent = ; + } + + if (editorView === "ui" && hasErrors(true)) { + showWarningIcon = true; + tooltipContent = ; + } + + const downloadButton = ( + + ); + + return ( +
    + {tooltipContent !== undefined ? ( + + {tooltipContent} + + ) : ( + downloadButton + )} +
    + ); +}; diff --git a/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/PageDisplay.module.scss b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/PageDisplay.module.scss index 9f05ee6dc40d..5964f623492d 100644 --- a/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/PageDisplay.module.scss +++ b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/PageDisplay.module.scss @@ -35,16 +35,3 @@ max-height: 100%; overflow-y: auto; } - -// add a fade at the bottom of the tabPanel -.tabPanel::after { - content: ""; - position: absolute; - z-index: 1; - bottom: 0; - left: 0; - pointer-events: none; - background-image: linear-gradient(to bottom, colors.$transparentColor, colors.$white 100%); - width: 100%; - height: variables.$spacing-xl; -} diff --git a/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamSelector.module.scss b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamSelector.module.scss index 7f297b2eb5cf..14242399efdc 100644 --- a/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamSelector.module.scss +++ b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamSelector.module.scss @@ -1,9 +1,7 @@ @use "scss/variables"; @use "scss/colors"; -.centered { - margin-left: auto; - margin-right: auto; +.container { width: 75%; max-width: 320px; } @@ -11,14 +9,17 @@ .button { padding: variables.$spacing-md; background-color: transparent; - border-radius: variables.$border-radius-lg; + border-radius: variables.$border-radius-md; border: none; display: flex; justify-content: center; + gap: variables.$spacing-md; +} + +.label { + overflow: auto; } .arrow { - margin-left: variables.$spacing-md; - margin-top: -1px; color: colors.$blue; } diff --git a/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamSelector.tsx b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamSelector.tsx index 300dd13c1f01..20d3e8189a48 100644 --- a/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamSelector.tsx +++ b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamSelector.tsx @@ -1,45 +1,56 @@ -import { faSortDown } from "@fortawesome/free-solid-svg-icons"; -import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import classNames from "classnames"; import capitalize from "lodash/capitalize"; +import { useIntl } from "react-intl"; import { Heading } from "components/ui/Heading"; import { ListBox, ListBoxControlButtonProps } from "components/ui/ListBox"; -import { StreamsListReadStreamsItem } from "core/request/ConnectorBuilderClient"; import { useConnectorBuilderState } from "services/connectorBuilder/ConnectorBuilderStateService"; +import { ReactComponent as CaretDownIcon } from "../../ui/ListBox/CaretDownIcon.svg"; import styles from "./StreamSelector.module.scss"; interface StreamSelectorProps { className?: string; - streams: StreamsListReadStreamsItem[]; - selectedStream: StreamsListReadStreamsItem; } const ControlButton: React.FC> = ({ selectedOption }) => { return ( <> - + {selectedOption.label} - + ); }; -export const StreamSelector: React.FC = ({ className, streams, selectedStream }) => { - const { setSelectedStream } = useConnectorBuilderState(); +export const StreamSelector: React.FC = ({ className }) => { + const { formatMessage } = useIntl(); + const { streams, selectedView, testStreamIndex, setSelectedView, setTestStreamIndex } = useConnectorBuilderState(); const options = streams.map((stream) => { - return { label: capitalize(stream.name), value: stream.name }; + const label = + stream.name && stream.name.trim() ? capitalize(stream.name) : formatMessage({ id: "connectorBuilder.emptyName" }); + return { label, value: stream.name }; }); + const handleStreamSelect = (selectedStreamName: string) => { + const selectedStreamIndex = streams.findIndex((stream) => selectedStreamName === stream.name); + if (selectedStreamIndex >= 0) { + setTestStreamIndex(selectedStreamIndex); + + if (selectedView !== "global" && selectedStreamIndex >= 0) { + setSelectedView(selectedStreamIndex); + } + } + }; + return ( diff --git a/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTestButton.module.scss b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTestButton.module.scss new file mode 100644 index 000000000000..fcdb4f118089 --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTestButton.module.scss @@ -0,0 +1,14 @@ +@use "scss/variables"; +@use "scss/colors"; + +.testButton { + width: 100%; +} + +.testButtonTooltipContainer { + width: 100%; +} + +.testButtonText { + color: colors.$white; +} diff --git a/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTestButton.tsx b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTestButton.tsx new file mode 100644 index 000000000000..482893c176e0 --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTestButton.tsx @@ -0,0 +1,76 @@ +import { faWarning } from "@fortawesome/free-solid-svg-icons"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { FormattedMessage } from "react-intl"; + +import { RotateIcon } from "components/icons/RotateIcon"; +import { Button } from "components/ui/Button"; +import { Text } from "components/ui/Text"; +import { Tooltip } from "components/ui/Tooltip"; + +import { useConnectorBuilderState } from "services/connectorBuilder/ConnectorBuilderStateService"; + +import { useBuilderErrors } from "../useBuilderErrors"; +import styles from "./StreamTestButton.module.scss"; + +interface StreamTestButtonProps { + readStream: () => void; +} + +export const StreamTestButton: React.FC = ({ readStream }) => { + const { editorView, yamlIsValid, testStreamIndex } = useConnectorBuilderState(); + const { hasErrors, validateAndTouch } = useBuilderErrors(); + + const handleClick = () => { + if (editorView === "yaml") { + readStream(); + return; + } + + validateAndTouch(readStream, ["global", testStreamIndex]); + }; + + let buttonDisabled = false; + let showWarningIcon = false; + let tooltipContent = undefined; + + if (editorView === "yaml" && !yamlIsValid) { + buttonDisabled = true; + showWarningIcon = true; + tooltipContent = ; + } + + if (editorView === "ui" && hasErrors(true, ["global", testStreamIndex])) { + showWarningIcon = true; + tooltipContent = ; + } + + const testButton = ( + + ); + + return tooltipContent !== undefined ? ( + + {tooltipContent} + + ) : ( + testButton + ); +}; diff --git a/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTester.module.scss b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTester.module.scss index 0d538a3b55b8..7cbf936ac536 100644 --- a/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTester.module.scss +++ b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTester.module.scss @@ -8,6 +8,7 @@ align-items: center; gap: variables.$spacing-lg; min-height: 0; + width: 100%; } .resizablePanelsContainer { @@ -18,18 +19,6 @@ z-index: 0; } -.testButton { - width: 100%; -} - -.testButtonTooltipContainer { - width: 100%; -} - -.testButtonText { - color: colors.$white; -} - .url { color: colors.$blue; font-weight: 400; diff --git a/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTester.tsx b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTester.tsx index 3cb1cfa7e4a1..9c0908cd3ac1 100644 --- a/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTester.tsx +++ b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTester.tsx @@ -1,30 +1,21 @@ -import { faWarning } from "@fortawesome/free-solid-svg-icons"; -import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { useEffect, useState } from "react"; -import { FormattedMessage, useIntl } from "react-intl"; +import { useIntl } from "react-intl"; -import { RotateIcon } from "components/icons/RotateIcon"; -import { Button } from "components/ui/Button"; import { ResizablePanels } from "components/ui/ResizablePanels"; import { Spinner } from "components/ui/Spinner"; import { Text } from "components/ui/Text"; -import { Tooltip } from "components/ui/Tooltip"; -import { StreamsListReadStreamsItem } from "core/request/ConnectorBuilderClient"; import { useReadStream } from "services/connectorBuilder/ConnectorBuilderApiService"; import { useConnectorBuilderState } from "services/connectorBuilder/ConnectorBuilderStateService"; import { LogsDisplay } from "./LogsDisplay"; import { ResultDisplay } from "./ResultDisplay"; +import { StreamTestButton } from "./StreamTestButton"; import styles from "./StreamTester.module.scss"; -interface StreamTesterProps { - selectedStream: StreamsListReadStreamsItem; -} - -export const StreamTester: React.FC = ({ selectedStream }) => { +export const StreamTester: React.FC = () => { const { formatMessage } = useIntl(); - const { jsonManifest, configJson, yamlIsValid } = useConnectorBuilderState(); + const { jsonManifest, configJson, streams, testStreamIndex } = useConnectorBuilderState(); const { data: streamReadData, refetch: readStream, @@ -33,7 +24,7 @@ export const StreamTester: React.FC = ({ selectedStream }) => isFetching, } = useReadStream({ manifest: jsonManifest, - stream: selectedStream.name, + stream: streams[testStreamIndex]?.name, config: configJson, }); @@ -58,42 +49,14 @@ export const StreamTester: React.FC = ({ selectedStream }) => } }, [isError]); - const testButton = ( - - ); - return (
    - {selectedStream.url} + {streams[testStreamIndex]?.url} - {yamlIsValid ? ( - testButton - ) : ( - - - - )} + + + {isFetching && (
    diff --git a/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTestingPanel.module.scss b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTestingPanel.module.scss index 43a610209f84..3b1d67fa022d 100644 --- a/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTestingPanel.module.scss +++ b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTestingPanel.module.scss @@ -29,16 +29,16 @@ $buttonHeight: 36px; display: flex; flex-direction: column; gap: variables.$spacing-lg; + align-items: center; } .listErrorDisplay { - margin: calc(variables.$spacing-lg + $buttonHeight) auto auto; padding: variables.$spacing-lg; display: flex; flex-direction: column; gap: variables.$spacing-md; background-color: colors.$blue-50; - border-radius: variables.$border-radius-md; + border-radius: variables.$border-radius-sm; } .loadingSpinner { @@ -48,3 +48,17 @@ $buttonHeight: 36px; align-items: center; justify-content: center; } + +.addStreamMessage { + height: 100%; + width: 100%; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + gap: variables.$spacing-2xl; +} + +.addStreamHeading { + color: colors.$dark-blue; +} diff --git a/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTestingPanel.tsx b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTestingPanel.tsx index 7c981b3adaf4..6cc2632bf6ad 100644 --- a/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTestingPanel.tsx +++ b/airbyte-webapp/src/components/connectorBuilder/StreamTestingPanel/StreamTestingPanel.tsx @@ -1,6 +1,7 @@ import React from "react"; import { FormattedMessage } from "react-intl"; +import { Heading } from "components/ui/Heading"; import { Spinner } from "components/ui/Spinner"; import { Text } from "components/ui/Text"; @@ -13,7 +14,7 @@ import { StreamTester } from "./StreamTester"; import styles from "./StreamTestingPanel.module.scss"; export const StreamTestingPanel: React.FC = () => { - const { selectedStream, streams, streamListErrorMessage, yamlEditorIsMounted } = useConnectorBuilderState(); + const { jsonManifest, streamListErrorMessage, yamlEditorIsMounted } = useConnectorBuilderState(); if (!yamlEditorIsMounted) { return ( @@ -23,10 +24,28 @@ export const StreamTestingPanel: React.FC = () => { ); } + const hasStreams = jsonManifest.streams?.length > 0; + return (
    - - {streamListErrorMessage !== undefined && ( + {!hasStreams && ( +
    + + + + +
    + )} + {hasStreams && streamListErrorMessage === undefined && ( + <> + +
    + + +
    + + )} + {hasStreams && streamListErrorMessage !== undefined && (
    @@ -46,12 +65,6 @@ export const StreamTestingPanel: React.FC = () => {
    )} - {streamListErrorMessage === undefined && selectedStream !== undefined && ( -
    - - -
    - )}
    ); }; diff --git a/airbyte-webapp/src/components/connectorBuilder/YamlEditor/DownloadYamlButton.tsx b/airbyte-webapp/src/components/connectorBuilder/YamlEditor/DownloadYamlButton.tsx deleted file mode 100644 index f5a49a5fc99e..000000000000 --- a/airbyte-webapp/src/components/connectorBuilder/YamlEditor/DownloadYamlButton.tsx +++ /dev/null @@ -1,41 +0,0 @@ -import { faDownload, faWarning } from "@fortawesome/free-solid-svg-icons"; -import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; -import { FormattedMessage } from "react-intl"; - -import { Button } from "components/ui/Button"; -import { Tooltip } from "components/ui/Tooltip"; - -import { downloadFile } from "utils/file"; - -interface DownloadYamlButtonProps { - className?: string; - yaml: string; - yamlIsValid: boolean; -} - -export const DownloadYamlButton: React.FC = ({ className, yaml, yamlIsValid }) => { - const downloadYaml = () => { - const file = new Blob([yaml], { type: "text/plain;charset=utf-8" }); - // TODO: pull name from connector name input or generate from yaml contents - downloadFile(file, "connector_builder.yaml"); - }; - - const downloadButton = ( - - ); - - return yamlIsValid ? ( - downloadButton - ) : ( - - - - ); -}; diff --git a/airbyte-webapp/src/components/connectorBuilder/YamlEditor/YamlEditor.module.scss b/airbyte-webapp/src/components/connectorBuilder/YamlEditor/YamlEditor.module.scss index 6d7b4b3d1890..dcadae19b380 100644 --- a/airbyte-webapp/src/components/connectorBuilder/YamlEditor/YamlEditor.module.scss +++ b/airbyte-webapp/src/components/connectorBuilder/YamlEditor/YamlEditor.module.scss @@ -5,17 +5,18 @@ display: flex; flex-flow: column; height: 100%; + position: relative; } .control { flex: 0 0 auto; - background-color: transparent; + background-color: colors.$grey-30; display: flex; padding: variables.$spacing-md; - flex-direction: row; - justify-content: flex-end; + flex-direction: row-reverse; } .editorContainer { + padding-top: variables.$spacing-xl; flex: 1 1 0; } diff --git a/airbyte-webapp/src/components/connectorBuilder/YamlEditor/YamlEditor.tsx b/airbyte-webapp/src/components/connectorBuilder/YamlEditor/YamlEditor.tsx index 91df9c5330c6..39353461c95f 100644 --- a/airbyte-webapp/src/components/connectorBuilder/YamlEditor/YamlEditor.tsx +++ b/airbyte-webapp/src/components/connectorBuilder/YamlEditor/YamlEditor.tsx @@ -1,26 +1,41 @@ import { useMonaco } from "@monaco-editor/react"; import { load, YAMLException } from "js-yaml"; +import debounce from "lodash/debounce"; +import isMatch from "lodash/isMatch"; import { editor } from "monaco-editor/esm/vs/editor/editor.api"; -import { useEffect, useRef, useState } from "react"; -import { useDebounce, useLocalStorage } from "react-use"; +import { useEffect, useMemo, useRef, useState } from "react"; import { CodeEditor } from "components/ui/CodeEditor"; -import { StreamsListRequestBodyManifest } from "core/request/ConnectorBuilderClient"; -import { useManifestTemplate } from "services/connectorBuilder/ConnectorBuilderApiService"; +import { ConnectorManifest } from "core/request/ConnectorManifest"; +import { useConfirmationModalService } from "hooks/services/ConfirmationModal"; import { useConnectorBuilderState } from "services/connectorBuilder/ConnectorBuilderStateService"; -import { DownloadYamlButton } from "./DownloadYamlButton"; +import { UiYamlToggleButton } from "../Builder/UiYamlToggleButton"; +import { DownloadYamlButton } from "../DownloadYamlButton"; +import { convertToManifest } from "../types"; import styles from "./YamlEditor.module.scss"; -export const YamlEditor: React.FC = () => { +interface YamlEditorProps { + toggleYamlEditor: () => void; +} + +export const YamlEditor: React.FC = ({ toggleYamlEditor }) => { + const { openConfirmationModal, closeConfirmationModal } = useConfirmationModalService(); const yamlEditorRef = useRef(); - const template = useManifestTemplate(); - const [locallyStoredYaml, setLocallyStoredYaml] = useLocalStorage("connectorBuilderYaml", template); - const [yamlValue, setYamlValue] = useState(locallyStoredYaml ?? template); - useDebounce(() => setLocallyStoredYaml(yamlValue), 500, [yamlValue]); + const { + yamlManifest, + yamlIsValid, + jsonManifest, + builderFormValues, + setYamlEditorIsMounted, + setYamlIsValid, + setJsonManifest, + } = useConnectorBuilderState(); + const [yamlValue, setYamlValue] = useState(yamlManifest); - const { yamlIsValid, setYamlEditorIsMounted, setYamlIsValid, setJsonManifest } = useConnectorBuilderState(); + // debounce the setJsonManifest calls so that it doesnt result in a network call for every keystroke + const debouncedSetJsonManifest = useMemo(() => debounce(setJsonManifest, 200), [setJsonManifest]); const monaco = useMonaco(); @@ -30,9 +45,9 @@ export const YamlEditor: React.FC = () => { const yamlEditorModel = yamlEditorRef.current.getModel(); try { - const json = load(yamlValue) as StreamsListRequestBodyManifest; - setJsonManifest(json); + const json = load(yamlValue) as ConnectorManifest; setYamlIsValid(true); + debouncedSetJsonManifest(json); // clear editor error markers if (yamlEditorModel) { @@ -59,11 +74,34 @@ export const YamlEditor: React.FC = () => { } } } - }, [yamlValue, monaco, setJsonManifest, setYamlIsValid]); + }, [yamlValue, monaco, debouncedSetJsonManifest, setYamlIsValid]); + + const yamlIsDirty = useMemo(() => { + return !isMatch(convertToManifest(builderFormValues), jsonManifest); + }, [jsonManifest, builderFormValues]); + + const handleToggleYamlEditor = () => { + if (yamlIsDirty) { + openConfirmationModal({ + text: "connectorBuilder.toggleModal.text", + title: "connectorBuilder.toggleModal.title", + submitButtonText: "connectorBuilder.toggleModal.submitButton", + onSubmit: () => { + setYamlIsValid(true); + toggleYamlEditor(); + closeConfirmationModal(); + }, + }); + } else { + setYamlIsValid(true); + toggleYamlEditor(); + } + }; return (
    +
    diff --git a/airbyte-webapp/src/components/connectorBuilder/types.ts b/airbyte-webapp/src/components/connectorBuilder/types.ts new file mode 100644 index 000000000000..ff673ec7175d --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/types.ts @@ -0,0 +1,82 @@ +import * as yup from "yup"; + +import { ConnectorManifest, DeclarativeStream } from "core/request/ConnectorManifest"; + +export interface BuilderFormValues { + global: { + connectorName: string; + urlBase: string; + }; + streams: BuilderStream[]; +} + +export interface BuilderStream { + name: string; + urlPath: string; + fieldPointer: string[]; + httpMethod: "GET" | "POST"; + requestOptions: { + requestParameters: Array<[string, string]>; + requestHeaders: Array<[string, string]>; + requestBody: Array<[string, string]>; + }; +} + +export const builderFormValidationSchema = yup.object().shape({ + global: yup.object().shape({ + connectorName: yup.string().required("form.empty.error"), + urlBase: yup.string().required("form.empty.error"), + }), + streams: yup.array().of( + yup.object().shape({ + name: yup.string().required("form.empty.error"), + urlPath: yup.string().required("form.empty.error"), + fieldPointer: yup.array().of(yup.string()), + httpMethod: yup.mixed().oneOf(["GET", "POST"]), + requestOptions: yup.object().shape({ + requestParameters: yup.array().of(yup.array().of(yup.string())), + requestHeaders: yup.array().of(yup.array().of(yup.string())), + requestBody: yup.array().of(yup.array().of(yup.string())), + }), + }) + ), +}); + +export const convertToManifest = (values: BuilderFormValues): ConnectorManifest => { + const manifestStreams: DeclarativeStream[] = values.streams.map((stream) => { + return { + name: stream.name, + retriever: { + name: stream.name, + requester: { + name: stream.name, + url_base: values.global?.urlBase, + path: stream.urlPath, + request_options_provider: { + request_parameters: Object.fromEntries(stream.requestOptions.requestParameters), + request_headers: Object.fromEntries(stream.requestOptions.requestHeaders), + request_body_data: Object.fromEntries(stream.requestOptions.requestBody), + }, + // TODO: remove these empty "config" values once they are no longer required in the connector manifest JSON schema + config: {}, + }, + record_selector: { + extractor: { + field_pointer: stream.fieldPointer, + config: {}, + }, + }, + config: {}, + }, + config: {}, + }; + }); + + return { + version: "0.1.0", + check: { + stream_names: [], + }, + streams: manifestStreams, + }; +}; diff --git a/airbyte-webapp/src/components/connectorBuilder/useBuilderErrors.ts b/airbyte-webapp/src/components/connectorBuilder/useBuilderErrors.ts new file mode 100644 index 000000000000..88bbf1411e12 --- /dev/null +++ b/airbyte-webapp/src/components/connectorBuilder/useBuilderErrors.ts @@ -0,0 +1,101 @@ +import { flatten } from "flat"; +import { FormikErrors, useFormikContext } from "formik"; +import intersection from "lodash/intersection"; +import { useCallback } from "react"; + +import { BuilderView, useConnectorBuilderState } from "services/connectorBuilder/ConnectorBuilderStateService"; + +import { BuilderFormValues } from "./types"; + +export const useBuilderErrors = () => { + const { touched, errors, validateForm, setFieldTouched } = useFormikContext(); + const { setSelectedView, setTestStreamIndex } = useConnectorBuilderState(); + + const invalidViews = useCallback( + (ignoreUntouched: boolean, limitToViews?: BuilderView[], inputErrors?: FormikErrors) => { + const errorsToCheck = inputErrors !== undefined ? inputErrors : errors; + const errorKeys = Object.keys(errorsToCheck); + + const invalidViews: BuilderView[] = []; + + if (errorKeys.includes("global")) { + if (ignoreUntouched) { + if (errorsToCheck.global && touched.global) { + const globalErrorKeys = Object.keys(flatten(errorsToCheck.global)); + const globalTouchedKeys = Object.keys(flatten(touched.global)); + if (intersection(globalErrorKeys, globalTouchedKeys).length > 0) { + invalidViews.push("global"); + } + } + } else { + invalidViews.push("global"); + } + } + + if (errorKeys.includes("streams")) { + const errorStreamNums = Object.keys(errorsToCheck.streams ?? {}); + + if (ignoreUntouched) { + if (errorsToCheck.streams && touched.streams) { + // loop over each stream and find ones with fields that are both touched and erroring + for (const streamNumString of errorStreamNums) { + const streamNum = Number(streamNumString); + const streamErrors = errorsToCheck.streams[streamNum]; + const streamTouched = touched.streams[streamNum]; + if (streamErrors && streamTouched) { + const streamErrorKeys = Object.keys(flatten(streamErrors)); + const streamTouchedKeys = Object.keys(flatten(streamTouched)); + if (intersection(streamErrorKeys, streamTouchedKeys).length > 0) { + invalidViews.push(streamNum); + } + } + } + } + } else { + invalidViews.push(...errorStreamNums.map((numString) => Number(numString))); + } + } + + return limitToViews === undefined ? invalidViews : intersection(invalidViews, limitToViews); + }, + [errors, touched] + ); + + // Returns true if the global config fields or any stream config fields have errors in the provided formik errors, and false otherwise. + // If limitToViews is provided, the error check is limited to only those views. + const hasErrors = useCallback( + (ignoreUntouched: boolean, limitToViews?: BuilderView[]) => { + return invalidViews(ignoreUntouched, limitToViews).length > 0; + }, + [invalidViews] + ); + + const validateAndTouch = useCallback( + (callback: () => void, limitToViews?: BuilderView[]) => { + validateForm().then((errors) => { + for (const path of Object.keys(flatten(errors))) { + setFieldTouched(path); + } + + // If there are relevant errors, select the erroring view, prioritizing global + // Otherwise, execute the callback. + + const invalidBuilderViews = invalidViews(false, limitToViews, errors); + + if (invalidBuilderViews.length > 0) { + if (invalidBuilderViews.includes("global")) { + setSelectedView("global"); + } else { + setSelectedView(invalidBuilderViews[0]); + setTestStreamIndex(invalidBuilderViews[0] as number); + } + } else { + callback(); + } + }); + }, + [invalidViews, setFieldTouched, setSelectedView, setTestStreamIndex, validateForm] + ); + + return { hasErrors, validateAndTouch }; +}; diff --git a/airbyte-webapp/src/components/destination/DestinationForm/DestinationForm.tsx b/airbyte-webapp/src/components/destination/DestinationForm/DestinationForm.tsx index 084bcfe71a61..c789172cabcc 100644 --- a/airbyte-webapp/src/components/destination/DestinationForm/DestinationForm.tsx +++ b/airbyte-webapp/src/components/destination/DestinationForm/DestinationForm.tsx @@ -22,7 +22,6 @@ interface DestinationFormProps { connectionConfiguration?: ConnectionConfiguration; }) => Promise; destinationDefinitions: DestinationDefinitionRead[]; - hasSuccess?: boolean; error?: FormError | null; } @@ -34,12 +33,7 @@ const hasDestinationDefinitionId = (state: unknown): state is { destinationDefin ); }; -export const DestinationForm: React.FC = ({ - onSubmit, - destinationDefinitions, - error, - hasSuccess, -}) => { +export const DestinationForm: React.FC = ({ onSubmit, destinationDefinitions, error }) => { const location = useLocation(); const [destinationDefinitionId, setDestinationDefinitionId] = useState( @@ -88,7 +82,6 @@ export const DestinationForm: React.FC = ({ title={} description={} isLoading={isLoading} - hasSuccess={hasSuccess} fetchingConnectorError={destinationDefinitionError instanceof Error ? destinationDefinitionError : null} availableConnectorDefinitions={destinationDefinitions} onConnectorDefinitionSelect={onDropDownSelect} diff --git a/airbyte-webapp/src/components/ui/CheckBox/CheckBox.module.scss b/airbyte-webapp/src/components/ui/CheckBox/CheckBox.module.scss new file mode 100644 index 000000000000..c3a67ea8d793 --- /dev/null +++ b/airbyte-webapp/src/components/ui/CheckBox/CheckBox.module.scss @@ -0,0 +1,47 @@ +@use "scss/colors"; +@use "scss/variables" as vars; + +$lg-size: 18px; +$sm-size: 14px; + +.container { + display: inline-flex; + align-items: center; + justify-content: center; + padding: vars.$border-thin 0; + border: vars.$border-thin solid colors.$grey-100; + border-radius: vars.$border-radius-2xs; + color: colors.$white; + background-color: colors.$white; + cursor: pointer; + + input { + display: none; + } + + &.disabled { + border-color: colors.$grey-30; + cursor: not-allowed; + } +} + +.checked, +.indeterminate { + border: vars.$border-thin solid colors.$blue; + background: colors.$blue; + + &.disabled { + background-color: colors.$blue-200; + border-color: colors.$blue-200; + } +} + +.sizeLg { + height: $lg-size; + width: $lg-size; +} + +.sizeSm { + height: $sm-size; + width: $sm-size; +} diff --git a/airbyte-webapp/src/components/ui/CheckBox/CheckBox.tsx b/airbyte-webapp/src/components/ui/CheckBox/CheckBox.tsx index 155a1ba27790..bb5723776cc0 100644 --- a/airbyte-webapp/src/components/ui/CheckBox/CheckBox.tsx +++ b/airbyte-webapp/src/components/ui/CheckBox/CheckBox.tsx @@ -1,49 +1,40 @@ import { faCheck, faMinus } from "@fortawesome/free-solid-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; -import React from "react"; -import styled from "styled-components"; +import classNames from "classnames"; +import React, { InputHTMLAttributes } from "react"; -const CheckBoxInput = styled.input` - opacity: 0; - width: 0; - height: 0; - margin: 0; - position: absolute; -`; +import styles from "./CheckBox.module.scss"; -const CheckBoxContainer = styled.label<{ - checked?: boolean; +type CheckBoxSize = "lg" | "sm"; + +export interface CheckBoxProps extends InputHTMLAttributes { indeterminate?: boolean; -}>` - height: 18px; - min-width: 18px; - border: 1px solid - ${({ theme, checked, indeterminate }) => (checked || indeterminate ? theme.primaryColor : theme.greyColor20)}; - background: ${({ theme, checked, indeterminate }) => - checked || indeterminate ? theme.primaryColor : theme.whiteColor}; - color: ${({ theme }) => theme.whiteColor}; - text-align: center; - border-radius: 4px; - font-size: 13px; - line-height: 13px; - display: inline-block; - padding: 1px 0; - cursor: pointer; - vertical-align: top; - position: relative; -`; + checkboxSize?: CheckBoxSize; +} + +export const CheckBox: React.FC = ({ indeterminate, checkboxSize = "lg", ...inputProps }) => { + const { checked, disabled, className } = inputProps; -export const CheckBox: React.FC & { indeterminate?: boolean }> = ({ - indeterminate, - ...props -}) => ( - event.stopPropagation()} - className={props.className} - checked={props.checked} - indeterminate={indeterminate} - > - - {indeterminate ? : props.checked && } - -); + return ( + + ); +}; diff --git a/airbyte-webapp/src/components/ui/CheckBox/index.stories.tsx b/airbyte-webapp/src/components/ui/CheckBox/index.stories.tsx new file mode 100644 index 000000000000..0faf8d80a340 --- /dev/null +++ b/airbyte-webapp/src/components/ui/CheckBox/index.stories.tsx @@ -0,0 +1,71 @@ +import { action } from "@storybook/addon-actions"; +import { ComponentMeta } from "@storybook/react"; +import { ChangeEvent, useState } from "react"; + +import { CheckBox, CheckBoxProps } from "./CheckBox"; + +export default { + title: "Ui/CheckBox", + component: CheckBox, + argTypes: { + disabled: { control: "boolean" }, + checked: { control: "boolean" }, + indeterminate: { control: "boolean" }, + elSize: { + options: ["lg", "sm"], + control: { type: "radio" }, + }, + }, +} as ComponentMeta; + +const CheckBoxWithState = ({ checked: initial = false, ...props }: CheckBoxProps) => { + const [checked, setChecked] = useState(initial); + const handleChange = (event: ChangeEvent) => { + action("Checkbox clicked")(event); + setChecked((prev) => !prev); + }; + return ; +}; + +export const Base = (args: CheckBoxProps) => ; + +Base.args = {}; + +export const Checked = (args: CheckBoxProps) => ; + +Checked.args = { + checked: true, +}; + +export const CheckedSmall = (args: CheckBoxProps) => ; + +CheckedSmall.args = { + checked: true, + elSize: "sm", +}; + +export const Disabled = (args: CheckBoxProps) => ; + +Disabled.args = { + disabled: true, +}; + +export const DisabledChecked = (args: CheckBoxProps) => ; + +DisabledChecked.args = { + disabled: true, + checked: true, +}; + +export const Indeterminate = (args: CheckBoxProps) => ; + +Indeterminate.args = { + indeterminate: true, +}; + +export const IndeterminateDisabled = (args: CheckBoxProps) => ; + +IndeterminateDisabled.args = { + indeterminate: true, + disabled: true, +}; diff --git a/airbyte-webapp/src/components/ui/DropDown/index.stories.tsx b/airbyte-webapp/src/components/ui/DropDown/index.stories.tsx new file mode 100644 index 000000000000..a467f7369291 --- /dev/null +++ b/airbyte-webapp/src/components/ui/DropDown/index.stories.tsx @@ -0,0 +1,33 @@ +import { ComponentStory, ComponentMeta } from "@storybook/react"; + +import { DropDown } from "./DropDown"; + +const listOptions = [ + { + label: "one", + value: "value", + }, + { + label: "two", + value: "value", + }, + { + label: "three", + value: "value", + }, +]; + +export default { + title: "Ui/DropDown", + component: DropDown, + argTypes: { + options: listOptions, + }, +} as ComponentMeta; + +const Template: ComponentStory = (args) => ; + +export const Primary = Template.bind({}); +Primary.args = { + options: listOptions, +}; diff --git a/airbyte-webapp/src/components/ui/Input/Input.tsx b/airbyte-webapp/src/components/ui/Input/Input.tsx index 5906caf6a223..5b8c45d81a26 100644 --- a/airbyte-webapp/src/components/ui/Input/Input.tsx +++ b/airbyte-webapp/src/components/ui/Input/Input.tsx @@ -11,111 +11,114 @@ import styles from "./Input.module.scss"; export interface InputProps extends React.InputHTMLAttributes { error?: boolean; light?: boolean; + containerClassName?: string; } -export const Input = React.forwardRef(({ light, error, ...props }, ref) => { - const { formatMessage } = useIntl(); - - const inputRef = useRef(null); - const buttonRef = useRef(null); - const inputSelectionStartRef = useRef(null); - - // Necessary to bind a ref passed from the parent in to our internal inputRef - useImperativeHandle(ref, () => inputRef.current as HTMLInputElement); - - const [isContentVisible, toggleIsContentVisible] = useToggle(false); - const [focused, setFocused] = useState(false); - - const isPassword = props.type === "password"; - const isVisibilityButtonVisible = isPassword && !props.disabled; - const type = isPassword ? (isContentVisible ? "text" : "password") : props.type; - - const focusOnInputElement = useCallback(() => { - if (!inputRef.current) { - return; - } - - const { current: element } = inputRef; - const selectionStart = inputSelectionStartRef.current ?? inputRef.current?.value.length; - - element.focus(); - - if (selectionStart) { - // Update input cursor position to where it was before - window.setTimeout(() => { - element.setSelectionRange(selectionStart, selectionStart); - }, 0); - } - }, []); - - const onContainerFocus: React.FocusEventHandler = () => { - setFocused(true); - }; - - const onContainerBlur: React.FocusEventHandler = (event) => { - if (isVisibilityButtonVisible && event.target === inputRef.current) { - // Save the previous selection - inputSelectionStartRef.current = inputRef.current.selectionStart; - } - - setFocused(false); - - if (isPassword) { - window.setTimeout(() => { - if (document.activeElement !== inputRef.current && document.activeElement !== buttonRef.current) { - toggleIsContentVisible(false); - inputSelectionStartRef.current = null; - } - }, 0); - } - }; - - return ( -
    - - {isVisibilityButtonVisible ? ( -
    + ); + } +); diff --git a/airbyte-webapp/src/components/ui/ListBox/CaretDownIcon.svg b/airbyte-webapp/src/components/ui/ListBox/CaretDownIcon.svg new file mode 100644 index 000000000000..12639caa2e8e --- /dev/null +++ b/airbyte-webapp/src/components/ui/ListBox/CaretDownIcon.svg @@ -0,0 +1,6 @@ + + + \ No newline at end of file diff --git a/airbyte-webapp/src/components/ui/ListBox/ListBox.module.scss b/airbyte-webapp/src/components/ui/ListBox/ListBox.module.scss index f033d34d7cb0..b6ac3c3231ba 100644 --- a/airbyte-webapp/src/components/ui/ListBox/ListBox.module.scss +++ b/airbyte-webapp/src/components/ui/ListBox/ListBox.module.scss @@ -3,8 +3,21 @@ .button { width: 100%; - height: 100%; cursor: pointer; + border: 1px solid colors.$grey-50; + background-color: colors.$grey-50; + border-radius: variables.$border-radius-xs; + text-align: left; + display: flex; + justify-content: space-between; + align-items: center; + font-size: 14px; + line-height: 20px; + min-height: 36px; + + &:hover { + border-color: colors.$grey-100; + } } .optionsContainer { @@ -25,14 +38,33 @@ z-index: 1; } +.caret { + color: colors.$grey-300; +} + .option { list-style-type: none; } +.icon { + padding-right: variables.$spacing-md; + + & svg { + max-width: 18px; + max-height: 18px; + } +} + +.label { + padding: variables.$spacing-lg 0; +} + .optionValue { - padding: variables.$spacing-lg variables.$spacing-md; - border-radius: variables.$border-radius-lg; + padding: 0 variables.$spacing-md; + border-radius: variables.$border-radius-md; cursor: pointer; + display: flex; + align-items: center; } .active { diff --git a/airbyte-webapp/src/components/ui/ListBox/ListBox.tsx b/airbyte-webapp/src/components/ui/ListBox/ListBox.tsx index 2addb2069c3f..298e6696f09d 100644 --- a/airbyte-webapp/src/components/ui/ListBox/ListBox.tsx +++ b/airbyte-webapp/src/components/ui/ListBox/ListBox.tsx @@ -2,6 +2,7 @@ import { Listbox } from "@headlessui/react"; import classNames from "classnames"; import React from "react"; +import { ReactComponent as CaretDownIcon } from "./CaretDownIcon.svg"; import styles from "./ListBox.module.scss"; export interface ListBoxControlButtonProps { @@ -9,12 +10,18 @@ export interface ListBoxControlButtonProps { } const DefaultControlButton = ({ selectedOption }: ListBoxControlButtonProps) => { - return <>{selectedOption.label}; + return ( + <> + {selectedOption.label} + + + ); }; export interface Option { label: string; value: T; + icon?: React.ReactNode; } interface ListBoxProps { @@ -48,13 +55,14 @@ export const ListBox = ({ {/* wrap in div to make `position: absolute` on Listbox.Options result in correct vertical positioning */}
    - {options.map(({ label, value }) => ( + {options.map(({ label, value, icon }) => ( {({ active, selected }) => (
    - {label} + {icon && {icon}} + {label}
    )}
    diff --git a/airbyte-webapp/src/components/ui/ListBox/index.stories.tsx b/airbyte-webapp/src/components/ui/ListBox/index.stories.tsx new file mode 100644 index 000000000000..f6ce6344b73e --- /dev/null +++ b/airbyte-webapp/src/components/ui/ListBox/index.stories.tsx @@ -0,0 +1,36 @@ +import { faEdit } from "@fortawesome/free-solid-svg-icons"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { ComponentMeta } from "@storybook/react"; +import { useState } from "react"; + +import { ListBox } from "./ListBox"; + +const listOptions = [ + { + label: "one", + value: 1, + icon: , + }, + { + label: "two", + value: 2, + }, + { + label: "three", + value: 3, + }, +]; + +export default { + title: "Ui/ListBox", + component: ListBox, + argTypes: { + options: listOptions, + }, +} as ComponentMeta; + +export const Primary = () => { + const [selectedOption, setSelectedOption] = useState(1); + + return ; +}; 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/ResizablePanels/ResizablePanels.tsx b/airbyte-webapp/src/components/ui/ResizablePanels/ResizablePanels.tsx index 9e9027a7c90d..0682573f4b28 100644 --- a/airbyte-webapp/src/components/ui/ResizablePanels/ResizablePanels.tsx +++ b/airbyte-webapp/src/components/ui/ResizablePanels/ResizablePanels.tsx @@ -75,7 +75,7 @@ export const ResizablePanels: React.FC = ({ return ( = ({ firstPanel.onStopResize?.(args.component.props.flex); }} > - - {firstPanel.children} - + {firstPanel.children} {/* NOTE: ReflexElement will not load its contents if wrapped in an empty jsx tag along with ReflexSplitter. They must be evaluated/rendered separately. */} {!hideSecondPanel && ( @@ -107,7 +105,7 @@ export const ResizablePanels: React.FC = ({ )} {!hideSecondPanel && ( = ({ secondPanel.onStopResize?.(args.component.props.flex); }} > - - {secondPanel.children} - + {secondPanel.children} )} 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/components/ui/TextInputContainer/TextInputContainer.module.scss b/airbyte-webapp/src/components/ui/TextInputContainer/TextInputContainer.module.scss index eccc89e2c1b4..a143c2b1173d 100644 --- a/airbyte-webapp/src/components/ui/TextInputContainer/TextInputContainer.module.scss +++ b/airbyte-webapp/src/components/ui/TextInputContainer/TextInputContainer.module.scss @@ -13,12 +13,10 @@ } &.error { - background-color: colors.$grey-100; - border-color: colors.$red; + border-color: colors.$red-100; } &:not(.disabled, .focused):hover { - background-color: colors.$grey-100; border-color: colors.$grey-100; &.light { @@ -31,7 +29,6 @@ } &.focused { - background-color: colors.$primaryColor12; border-color: colors.$blue; &.light { diff --git a/airbyte-webapp/src/core/domain/catalog/index.tsx b/airbyte-webapp/src/core/domain/catalog/index.tsx index 740d9905dfcf..1a1c83829086 100644 --- a/airbyte-webapp/src/core/domain/catalog/index.tsx +++ b/airbyte-webapp/src/core/domain/catalog/index.tsx @@ -1,3 +1,3 @@ export * from "./models"; export * from "./api"; -export * from "./fieldUtil"; +export * from "./traverseSchemaToField"; diff --git a/airbyte-webapp/src/core/domain/catalog/models.ts b/airbyte-webapp/src/core/domain/catalog/models.ts index d0b1e58b89ca..f11a475e76f0 100644 --- a/airbyte-webapp/src/core/domain/catalog/models.ts +++ b/airbyte-webapp/src/core/domain/catalog/models.ts @@ -12,4 +12,8 @@ export class SyncSchemaFieldObject { static isPrimitive(field: SyncSchemaField): boolean { return !(field.type === "object" || field.type === "array"); } + + static isNestedField(field: SyncSchemaField): boolean { + return field.path.length > 1; + } } diff --git a/airbyte-webapp/src/core/domain/catalog/traverseSchemaToField.test.ts b/airbyte-webapp/src/core/domain/catalog/traverseSchemaToField.test.ts new file mode 100644 index 000000000000..1411a2a4aa5e --- /dev/null +++ b/airbyte-webapp/src/core/domain/catalog/traverseSchemaToField.test.ts @@ -0,0 +1,106 @@ +import { AirbyteJSONSchema } from "core/jsonSchema"; + +import { traverseSchemaToField } from "./traverseSchemaToField"; + +describe(`${traverseSchemaToField}`, () => { + it("traverses a nested schema", () => { + const nestedSchema: AirbyteJSONSchema = { + $schema: "http://json-schema.org/draft-04/schema#", + type: "object", + properties: { + "1": { + type: "object", + properties: { + "1_1": { + type: "object", + properties: { + "1_1_1": { + type: "boolean", + }, + }, + required: ["1_1_1"], + }, + }, + required: ["1_1"], + }, + }, + }; + const expected = [ + { + airbyte_type: undefined, + cleanedName: "1", + fields: [ + { + airbyte_type: undefined, + cleanedName: "1_1", + fields: [ + { + airbyte_type: undefined, + cleanedName: "1_1_1", + fields: undefined, + format: undefined, + key: "1_1_1", + path: ["1", "1_1", "1_1_1"], + type: "boolean", + }, + ], + format: undefined, + key: "1_1", + path: ["1", "1_1"], + type: "object", + }, + ], + format: undefined, + key: "1", + path: ["1"], + type: "object", + }, + ]; + expect(traverseSchemaToField(nestedSchema, "test_stream")).toEqual(expected); + }); + + it("traverses a flat schema", () => { + const flatSchema: AirbyteJSONSchema = { + $schema: "http://json-schema.org/draft-04/schema#", + type: "object", + properties: { + "1": { + type: "boolean", + }, + "2": { + type: "boolean", + }, + "3": { + type: "boolean", + }, + }, + }; + const expected = [ + { + airbyte_type: undefined, + cleanedName: "1", + type: "boolean", + format: undefined, + key: "1", + path: ["1"], + }, + { + airbyte_type: undefined, + cleanedName: "2", + type: "boolean", + format: undefined, + key: "2", + path: ["2"], + }, + { + airbyte_type: undefined, + cleanedName: "3", + type: "boolean", + format: undefined, + key: "3", + path: ["3"], + }, + ]; + expect(traverseSchemaToField(flatSchema, "test_stream")).toEqual(expected); + }); +}); diff --git a/airbyte-webapp/src/core/domain/catalog/fieldUtil.ts b/airbyte-webapp/src/core/domain/catalog/traverseSchemaToField.ts similarity index 100% rename from airbyte-webapp/src/core/domain/catalog/fieldUtil.ts rename to airbyte-webapp/src/core/domain/catalog/traverseSchemaToField.ts diff --git a/airbyte-webapp/src/core/form/FormikPatch.ts b/airbyte-webapp/src/core/form/FormikPatch.ts new file mode 100644 index 000000000000..37eee6eb0c95 --- /dev/null +++ b/airbyte-webapp/src/core/form/FormikPatch.ts @@ -0,0 +1,29 @@ +import { flatten } from "flat"; +import { useFormikContext } from "formik"; +import { useEffect } from "react"; + +export const FormikPatch: React.FC = () => { + const { setFieldTouched, isSubmitting, isValidating, errors } = useFormikContext(); + + /* Fixes issue https://github.com/airbytehq/airbyte/issues/1978 + Problem described here https://github.com/formium/formik/issues/445 + The problem is next: + + When we touch the field, it would be set as touched field correctly. + If validation fails on submit - Formik detects touched object mapping based + either on initialValues passed to Formik or on current value set. + So in case of creation, if we touch an input, don't change value and + press submit - our touched map will be cleared. + + This hack just touches all fields on submit. + */ + useEffect(() => { + if (isSubmitting && !isValidating) { + for (const path of Object.keys(flatten(errors))) { + setFieldTouched(path, true, false); + } + } + }, [errors, isSubmitting, isValidating, setFieldTouched]); + + return null; +}; 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/Experiment/experiments.ts b/airbyte-webapp/src/hooks/services/Experiment/experiments.ts index e5ddac8197b7..b80406ae654a 100644 --- a/airbyte-webapp/src/hooks/services/Experiment/experiments.ts +++ b/airbyte-webapp/src/hooks/services/Experiment/experiments.ts @@ -26,4 +26,6 @@ export interface Experiments { "authPage.oauth.position": "top" | "bottom"; "connection.onboarding.sources": string; "connection.onboarding.destinations": string; + "connection.autoDetectSchemaChanges": boolean; + "connection.columnSelection": boolean; } diff --git a/airbyte-webapp/src/hooks/services/Feature/constants.ts b/airbyte-webapp/src/hooks/services/Feature/constants.ts index b4c0c397993f..f29bb931ee82 100644 --- a/airbyte-webapp/src/hooks/services/Feature/constants.ts +++ b/airbyte-webapp/src/hooks/services/Feature/constants.ts @@ -1,10 +1,16 @@ import { FeatureItem } from "./types"; -/** The default feature set that OSS releases should use. */ -export const defaultFeatures = [ +export const defaultOssFeatures = [ FeatureItem.AllowCustomDBT, FeatureItem.AllowSync, FeatureItem.AllowUpdateConnectors, FeatureItem.AllowUploadCustomImage, FeatureItem.AllowSyncSubOneHourCronExpressions, ]; + +export const defaultCloudFeatures = [ + FeatureItem.AllowOAuthConnector, + FeatureItem.AllowSync, + FeatureItem.AllowChangeDataGeographies, + FeatureItem.AllowDBTCloudIntegration, +]; diff --git a/airbyte-webapp/src/hooks/services/Feature/index.tsx b/airbyte-webapp/src/hooks/services/Feature/index.tsx index db18dc2b3456..76ca189299ce 100644 --- a/airbyte-webapp/src/hooks/services/Feature/index.tsx +++ b/airbyte-webapp/src/hooks/services/Feature/index.tsx @@ -1,3 +1,3 @@ export * from "./FeatureService"; export * from "./types"; -export { defaultFeatures } from "./constants"; +export { defaultCloudFeatures, defaultOssFeatures } from "./constants"; 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/hooks/services/FormChangeTracker/hooks.ts b/airbyte-webapp/src/hooks/services/FormChangeTracker/hooks.ts index 761e54e00950..b12b1bfac554 100644 --- a/airbyte-webapp/src/hooks/services/FormChangeTracker/hooks.ts +++ b/airbyte-webapp/src/hooks/services/FormChangeTracker/hooks.ts @@ -1,5 +1,5 @@ import uniqueId from "lodash/uniqueId"; -import { useCallback, useMemo } from "react"; +import { useCallback, useMemo, useRef } from "react"; import { createGlobalState } from "react-use"; import { FormChangeTrackerServiceApi } from "./types"; @@ -10,6 +10,8 @@ export const useUniqueFormId = (formId?: string) => useMemo(() => formId ?? uniq export const useFormChangeTrackerService = (): FormChangeTrackerServiceApi => { const [changedFormsById, setChangedFormsById] = useChangedFormsById(); + const changedFormsByIdRef = useRef(changedFormsById); + changedFormsByIdRef.current = changedFormsById; const hasFormChanges = useMemo( () => Object.values(changedFormsById ?? {}).some((changed) => !!changed), @@ -22,18 +24,18 @@ export const useFormChangeTrackerService = (): FormChangeTrackerServiceApi => { const clearFormChange = useCallback( (id: string) => { - setChangedFormsById({ ...changedFormsById, [id]: false }); + setChangedFormsById({ ...changedFormsByIdRef.current, [id]: false }); }, - [changedFormsById, setChangedFormsById] + [changedFormsByIdRef, setChangedFormsById] ); const trackFormChange = useCallback( (id: string, changed: boolean) => { - if (Boolean(changedFormsById?.[id]) !== changed) { - setChangedFormsById({ ...changedFormsById, [id]: changed }); + if (Boolean(changedFormsByIdRef.current?.[id]) !== changed) { + setChangedFormsById({ ...changedFormsByIdRef.current, [id]: changed }); } }, - [changedFormsById, setChangedFormsById] + [changedFormsByIdRef, setChangedFormsById] ); return { diff --git a/airbyte-webapp/src/locales/en.json b/airbyte-webapp/src/locales/en.json index bcec3f1ca986..3ffb354e663a 100644 --- a/airbyte-webapp/src/locales/en.json +++ b/airbyte-webapp/src/locales/en.json @@ -58,6 +58,7 @@ "form.delete": "Delete", "form.change": "Change", "form.add": "Add", + "form.create": "Create", "form.saveChanges": "Save changes", "form.openDatepicker": "Open datepicker", "form.datepickerTimeCaption": "Time (UTC)", @@ -152,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", @@ -171,6 +172,7 @@ "connectionForm.modal.destinationNamespace.table.data.exampleSourceNamespace": "\"$SOURCE_NAMESPACE\"", "connectionForm.modal.destinationNamespace.table.data.exampleMySourceNamespace": "\"my_$SOURCE_NAMESPACE_schema\"", "connectionForm.modal.destinationNamespace.table.data.custom": "custom", + "connectionForm.modal.destinationNamespace.learnMore.link": "Learn more", "connectionForm.modal.destinationStreamNames.title": "Destination stream names", "connectionForm.modal.destinationStreamNames.radioButton.mirror": "Mirror source name", @@ -214,11 +216,15 @@ "form.selected": "Selected", "form.notSelected": "Not selected", "form.nullable": "Nullable", + "form.field.sync": "Sync", + "form.field.sync.nestedFieldTooltip": "This field will be synced if \"{fieldName}\" is selected", "form.field.name": "Field name", "form.field.dataType": "Data type", "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", @@ -372,6 +378,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.", @@ -621,7 +631,7 @@ "airbyte.datatype.unknown": "Unknown", "airbyte.datatype.boolean": "Boolean", - "connectorBuilder.downloadYaml": "Download YAML", + "connectorBuilder.downloadYaml": "Download Config", "connectorBuilder.testButton": "Test", "connectorBuilder.configMenuTitle": "Configure Test Input", "connectorBuilder.configMenuConfirm": "Confirm", @@ -637,6 +647,36 @@ "connectorBuilder.testConnector": "TEST YOUR CONNECTOR", "connectorBuilder.couldNotDetectStreams": "Could not detect streams in the YAML editor:", "connectorBuilder.ensureProperYaml": "In order to test a stream, ensure that the YAML is structured as described in the docs.", + "connectorBuilder.addStreamModal.title": "New stream", + "connectorBuilder.addStreamModal.streamNameLabel": "Stream name", + "connectorBuilder.addStreamModal.streamNameTooltip": "Name of the new stream", + "connectorBuilder.addStreamModal.urlPathLabel": "URL path", + "connectorBuilder.addStreamModal.urlPathTooltip": "URL path of the endpoint for this stream", + "connectorBuilder.deleteStreamModal.title": "Delete stream", + "connectorBuilder.deleteStreamModal.text": "Are you sure you want to delete this stream?", + "connectorBuilder.deleteStreamModal.submitButton": "Delete", + "connectorBuilder.resetModal.text": "This will erase all streams and values that are currently set. Are you sure you want to continue?", + "connectorBuilder.resetModal.title": "Reset Connector Builder", + "connectorBuilder.resetModal.submitButton": "Reset", + "connectorBuilder.streamsHeading": "STREAMS ({number})", + "connectorBuilder.globalConfiguration": "Global Configuration", + "connectorBuilder.noStreamsMessage": "Add a stream to test it here", + "connectorBuilder.toggleModal.text": "Toggling back to the UI will erase any changes you have made in the YAML editor.\n\nIn order to export your current yaml, click the Download Config button.", + "connectorBuilder.toggleModal.title": "Warning", + "connectorBuilder.toggleModal.submitButton": "Confirm", + "connectorBuilder.configErrorsDownload": "Cannot download while there are form errors", + "connectorBuilder.configErrorsTest": "Cannot test while there are form errors", + "connectorBuilder.connectorImgAlt": "Connector Image", + "connectorBuilder.stream": "Stream", + "connectorBuilder.uiYamlToggle.ui": "UI", + "connectorBuilder.uiYamlToggle.yaml": "YAML", + "connectorBuilder.resetAll": "Reset all", + "connectorBuilder.emptyName": "(empty)", + "connectorBuilder.key": "key", + "connectorBuilder.value": "value", + "connectorBuilder.addKeyValue": "Add", + + "jobs.noAttemptsFailure": "Failed to start job.", "cloudApi.loginCallbackUrlError": "There was an error connecting to the developer portal. Please try again." } diff --git a/airbyte-webapp/src/packages/cloud/App.tsx b/airbyte-webapp/src/packages/cloud/App.tsx index c15afc866725..f8027f3ff9db 100644 --- a/airbyte-webapp/src/packages/cloud/App.tsx +++ b/airbyte-webapp/src/packages/cloud/App.tsx @@ -9,7 +9,7 @@ import LoadingPage from "components/LoadingPage"; import { I18nProvider } from "core/i18n"; import { AppMonitoringServiceProvider } from "hooks/services/AppMonitoringService"; import { ConfirmationModalService } from "hooks/services/ConfirmationModal"; -import { FeatureItem, FeatureService } from "hooks/services/Feature"; +import { defaultCloudFeatures, FeatureService } from "hooks/services/Feature"; import { FormChangeTrackerService } from "hooks/services/FormChangeTracker"; import { ModalServiceProvider } from "hooks/services/Modal"; import NotificationServiceProvider from "hooks/services/Notification"; @@ -39,14 +39,7 @@ const Services: React.FC> = ({ children }) => ( - + diff --git a/airbyte-webapp/src/packages/cloud/views/auth/components/CheckBoxControl.tsx b/airbyte-webapp/src/packages/cloud/views/auth/components/CheckBoxControl.tsx index b9fec4ab9964..5f928a1138c7 100644 --- a/airbyte-webapp/src/packages/cloud/views/auth/components/CheckBoxControl.tsx +++ b/airbyte-webapp/src/packages/cloud/views/auth/components/CheckBoxControl.tsx @@ -23,20 +23,9 @@ const Label = styled.label<{ disabled?: boolean }>` cursor: pointer; `; -const BigCheckBox = styled(CheckBox)` - height: 25px; - width: 25px; - min-width: 25px; - background: ${({ theme, checked }) => (checked ? theme.primaryColor : theme.whiteColor)}; - border: ${({ theme, checked }) => (checked ? theme.primaryColor : theme.textColor)} 2px solid; - color: ${({ theme }) => theme.whiteColor}; - font-size: 18px; - line-height: 18px; -`; - const CheckBoxControl: React.FC = (props) => ( - + 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.test.tsx b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionReplicationTab.test.tsx index c14ce0022589..737562bbc25a 100644 --- a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionReplicationTab.test.tsx +++ b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionReplicationTab.test.tsx @@ -13,7 +13,7 @@ import { TestWrapper } from "test-utils/testutils"; import { WebBackendConnectionUpdate } from "core/request/AirbyteClient"; import { ConnectionEditServiceProvider } from "hooks/services/ConnectionEdit/ConnectionEditService"; -import { defaultFeatures, FeatureItem } from "hooks/services/Feature"; +import { defaultOssFeatures, FeatureItem } from "hooks/services/Feature"; import * as connectionHook from "hooks/services/useConnectionHook"; import { ConnectionReplicationTab } from "./ConnectionReplicationTab"; @@ -134,7 +134,7 @@ describe("ConnectionReplicationTab", () => { it("should not allow cron expressions under one hour when feature not enabled", async () => { setupSpies(); - const featuresToInject = defaultFeatures.filter((f) => f !== FeatureItem.AllowSyncSubOneHourCronExpressions); + const featuresToInject = defaultOssFeatures.filter((f) => f !== FeatureItem.AllowSyncSubOneHourCronExpressions); const container = tlr( 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 30a0c078d429..80f22eb9635d 100644 --- a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/StatusMainInfo.test.tsx +++ b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/StatusMainInfo.test.tsx @@ -4,7 +4,7 @@ import { mockSourceDefinition } from "test-utils/mock-data/mockSourceDefinition" import { mockConnection, TestWrapper } from "test-utils/testutils"; import { ConnectionStatus, SchemaChange } from "core/request/AirbyteClient"; -import { defaultFeatures, FeatureItem } from "hooks/services/Feature"; +import { defaultOssFeatures, FeatureItem } from "hooks/services/Feature"; // eslint-disable-next-line css-modules/no-unused-class import styles from "./StatusMainInfo.module.scss"; @@ -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/pages/ConnectionPage/pages/ConnectionItemPage/__snapshots__/ConnectionReplicationTab.test.tsx.snap b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/__snapshots__/ConnectionReplicationTab.test.tsx.snap index 0879fe8c9611..ef733dd7f281 100644 --- a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/__snapshots__/ConnectionReplicationTab.test.tsx.snap +++ b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/__snapshots__/ConnectionReplicationTab.test.tsx.snap @@ -371,7 +371,7 @@ exports[`ConnectionReplicationTab should render 1`] = ` class="" > @@ -585,7 +585,7 @@ exports[`ConnectionReplicationTab should render 1`] = ` class="" > diff --git a/airbyte-webapp/src/pages/ConnectionPage/pages/CreationFormPage/ConnectionCreateDestinationForm.tsx b/airbyte-webapp/src/pages/ConnectionPage/pages/CreationFormPage/ConnectionCreateDestinationForm.tsx index baf4831bd5b0..516b1c0e94c7 100644 --- a/airbyte-webapp/src/pages/ConnectionPage/pages/CreationFormPage/ConnectionCreateDestinationForm.tsx +++ b/airbyte-webapp/src/pages/ConnectionPage/pages/CreationFormPage/ConnectionCreateDestinationForm.tsx @@ -1,4 +1,4 @@ -import React, { useEffect, useState } from "react"; +import React, { useEffect } from "react"; // TODO: create separate component for source and destinations forms import { useLocation, useNavigate } from "react-router-dom"; @@ -16,7 +16,6 @@ interface ConnectionCreateDestinationFormProps { export const ConnectionCreateDestinationForm: React.FC = ({ afterSubmit }) => { const navigate = useNavigate(); const location = useLocation(); - const [successRequest, setSuccessRequest] = useState(false); const { destinationDefinitions } = useDestinationDefinitionList(); const { mutateAsync: createDestination } = useCreateDestination(); @@ -31,9 +30,7 @@ export const ConnectionCreateDestinationForm: React.FC { - setSuccessRequest(false); navigate( {}, { @@ -55,11 +52,5 @@ export const ConnectionCreateDestinationForm: React.FC - ); + return ; }; diff --git a/airbyte-webapp/src/pages/ConnectionPage/pages/CreationFormPage/ConnectionCreateSourceForm.tsx b/airbyte-webapp/src/pages/ConnectionPage/pages/CreationFormPage/ConnectionCreateSourceForm.tsx index db6a8de8ee89..d0c0aba97abe 100644 --- a/airbyte-webapp/src/pages/ConnectionPage/pages/CreationFormPage/ConnectionCreateSourceForm.tsx +++ b/airbyte-webapp/src/pages/ConnectionPage/pages/CreationFormPage/ConnectionCreateSourceForm.tsx @@ -1,4 +1,4 @@ -import React, { useEffect, useState } from "react"; +import React, { useEffect } from "react"; import { useLocation, useNavigate } from "react-router-dom"; import { ConnectionConfiguration } from "core/domain/connection"; @@ -14,7 +14,6 @@ interface ConnectionCreateSourceFormProps { export const ConnectionCreateSourceForm: React.FC = ({ afterSubmit }) => { const location = useLocation(); const navigate = useNavigate(); - const [successRequest, setSuccessRequest] = useState(false); const { sourceDefinitions } = useSourceDefinitionList(); const { mutateAsync: createSource } = useCreateSource(); @@ -29,9 +28,7 @@ export const ConnectionCreateSourceForm: React.FC { - setSuccessRequest(false); navigate( {}, { @@ -53,5 +50,5 @@ export const ConnectionCreateSourceForm: React.FC; + return ; }; diff --git a/airbyte-webapp/src/pages/ConnectionPage/pages/CreationFormPage/ExistingEntityForm.tsx b/airbyte-webapp/src/pages/ConnectionPage/pages/CreationFormPage/ExistingEntityForm.tsx index 3a1a79934f82..4662af50764c 100644 --- a/airbyte-webapp/src/pages/ConnectionPage/pages/CreationFormPage/ExistingEntityForm.tsx +++ b/airbyte-webapp/src/pages/ConnectionPage/pages/CreationFormPage/ExistingEntityForm.tsx @@ -105,6 +105,7 @@ const ExistingEntityForm: React.FC = ({ type, onSubmit }) => { { setFieldValue(field.name, item.value); }} diff --git a/airbyte-webapp/src/pages/ConnectorBuilderPage/ConnectorBuilderPage.module.scss b/airbyte-webapp/src/pages/ConnectorBuilderPage/ConnectorBuilderPage.module.scss index 79e8dc13b02b..231e4a5f1a0c 100644 --- a/airbyte-webapp/src/pages/ConnectorBuilderPage/ConnectorBuilderPage.module.scss +++ b/airbyte-webapp/src/pages/ConnectorBuilderPage/ConnectorBuilderPage.module.scss @@ -1,16 +1,23 @@ @use "scss/colors"; @use "scss/variables"; +@use "scss/mixins"; .leftPanel { overflow: hidden; } .rightPanel { + @include mixins.left-shadow; + border-top-left-radius: variables.$border-radius-lg; border-bottom-left-radius: variables.$border-radius-lg; background-color: colors.$white; } -.container { +.gradientBg { background-image: linear-gradient(colors.$grey-50, colors.$grey-100); } + +.solidBg { + background-color: colors.$grey-50; +} diff --git a/airbyte-webapp/src/pages/ConnectorBuilderPage/ConnectorBuilderPage.tsx b/airbyte-webapp/src/pages/ConnectorBuilderPage/ConnectorBuilderPage.tsx index 54e5de58cd68..fc28253ee5c7 100644 --- a/airbyte-webapp/src/pages/ConnectorBuilderPage/ConnectorBuilderPage.tsx +++ b/airbyte-webapp/src/pages/ConnectorBuilderPage/ConnectorBuilderPage.tsx @@ -1,36 +1,56 @@ +import classnames from "classnames"; +import { Formik } from "formik"; import { useIntl } from "react-intl"; +import { Builder } from "components/connectorBuilder/Builder/Builder"; import { StreamTestingPanel } from "components/connectorBuilder/StreamTestingPanel"; +import { builderFormValidationSchema } from "components/connectorBuilder/types"; import { YamlEditor } from "components/connectorBuilder/YamlEditor"; import { ResizablePanels } from "components/ui/ResizablePanels"; -import { ConnectorBuilderStateProvider } from "services/connectorBuilder/ConnectorBuilderStateService"; +import { + ConnectorBuilderStateProvider, + useConnectorBuilderState, +} from "services/connectorBuilder/ConnectorBuilderStateService"; import styles from "./ConnectorBuilderPage.module.scss"; const ConnectorBuilderPageInner: React.FC = () => { const { formatMessage } = useIntl(); + const { builderFormValues, editorView, setEditorView } = useConnectorBuilderState(); return ( - , - className: styles.leftPanel, - minWidth: 100, - }} - secondPanel={{ - children: , - className: styles.rightPanel, - flex: 0.33, - minWidth: 60, - overlay: { - displayThreshold: 325, - header: formatMessage({ id: "connectorBuilder.testConnector" }), - rotation: "counter-clockwise", - }, - }} - /> + undefined} validationSchema={builderFormValidationSchema}> + {({ values }) => ( + + {editorView === "yaml" ? ( + setEditorView("ui")} /> + ) : ( + setEditorView("yaml")} /> + )} + + ), + className: styles.leftPanel, + minWidth: 100, + }} + secondPanel={{ + children: , + className: styles.rightPanel, + flex: 0.33, + minWidth: 60, + overlay: { + displayThreshold: 325, + header: formatMessage({ id: "connectorBuilder.testConnector" }), + rotation: "counter-clockwise", + }, + }} + /> + )} + ); }; diff --git a/airbyte-webapp/src/pages/SettingsPage/pages/ConnectorsPage/components/ConnectorCell.tsx b/airbyte-webapp/src/pages/SettingsPage/pages/ConnectorsPage/components/ConnectorCell.tsx index 6af1fe4551fc..93c9e035ceb4 100644 --- a/airbyte-webapp/src/pages/SettingsPage/pages/ConnectorsPage/components/ConnectorCell.tsx +++ b/airbyte-webapp/src/pages/SettingsPage/pages/ConnectorsPage/components/ConnectorCell.tsx @@ -12,7 +12,6 @@ interface ConnectorCellProps { connectorName: string; img?: string; hasUpdate?: boolean; - isDeprecated?: boolean; releaseStage?: ReleaseStage; } @@ -40,14 +39,14 @@ const CustomAnnotation = styled.span` color: ${({ theme }) => theme.greyColor40}; `; -const ConnectorCell: React.FC = ({ connectorName, img, hasUpdate, isDeprecated, releaseStage }) => { +const ConnectorCell: React.FC = ({ connectorName, img, hasUpdate, releaseStage }) => { return ( {hasUpdate && } {getIcon(img)} {connectorName} - {isDeprecated && ( + {releaseStage === "custom" && ( () diff --git a/airbyte-webapp/src/pages/SettingsPage/pages/ConnectorsPage/components/ConnectorsView.tsx b/airbyte-webapp/src/pages/SettingsPage/pages/ConnectorsPage/components/ConnectorsView.tsx index 72b1a209e70b..87cc19f41a14 100644 --- a/airbyte-webapp/src/pages/SettingsPage/pages/ConnectorsPage/components/ConnectorsView.tsx +++ b/airbyte-webapp/src/pages/SettingsPage/pages/ConnectorsPage/components/ConnectorsView.tsx @@ -1,4 +1,4 @@ -import React from "react"; +import { useCallback } from "react"; import { FormattedMessage } from "react-intl"; import { CellProps } from "react-table"; @@ -8,7 +8,7 @@ import { Table } from "components/ui/Table"; import { Connector, ConnectorDefinition } from "core/domain/connector"; import { DestinationDefinitionRead, SourceDefinitionRead } from "core/request/AirbyteClient"; import { useAvailableConnectorDefinitions } from "hooks/domain/connector/useAvailableConnectorDefinitions"; -import { FeatureItem, IfFeatureEnabled, useFeature } from "hooks/services/Feature"; +import { FeatureItem, useFeature } from "hooks/services/Feature"; import { useCurrentWorkspace } from "hooks/services/useWorkspace"; import ConnectorCell from "./ConnectorCell"; @@ -47,14 +47,27 @@ const ConnectorsView: React.FC = ({ connectorsDefinitions, }) => { const allowUpdateConnectors = useFeature(FeatureItem.AllowUpdateConnectors); + const allowUploadCustomImage = useFeature(FeatureItem.AllowUploadCustomImage); const workspace = useCurrentWorkspace(); const availableConnectorDefinitions = useAvailableConnectorDefinitions( connectorsDefinitions, workspace ); + const showVersionUpdateColumn = useCallback( + (definitions: ConnectorDefinition[]) => { + if (allowUpdateConnectors) { + return true; + } + if (allowUploadCustomImage && definitions.some((definition) => definition.releaseStage === "custom")) { + return true; + } + return false; + }, + [allowUpdateConnectors, allowUploadCustomImage] + ); - const columns = React.useMemo( - () => [ + const renderColumns = useCallback( + (showVersionUpdateColumn: boolean) => [ { Header: , accessor: "name", @@ -64,7 +77,6 @@ const ConnectorsView: React.FC = ({ connectorName={cell.value} img={row.original.icon} hasUpdate={allowUpdateConnectors && Connector.hasNewerVersion(row.original)} - isDeprecated={Connector.isDeprecated(row.original)} releaseStage={row.original.releaseStage} /> ), @@ -82,7 +94,7 @@ const ConnectorsView: React.FC = ({ accessor: "dockerImageTag", customWidth: 10, }, - ...(allowUpdateConnectors + ...(showVersionUpdateColumn ? [ { Header: ( @@ -92,29 +104,28 @@ const ConnectorsView: React.FC = ({ ), accessor: "latestDockerImageTag", collapse: true, - Cell: ({ cell, row }: CellProps) => ( - - ), + Cell: ({ cell, row }: CellProps) => + allowUpdateConnectors || (allowUploadCustomImage && row.original.releaseStage === "custom") ? ( + + ) : null, }, ] : []), ], - [feedbackList, onUpdateVersion, allowUpdateConnectors] + [feedbackList, onUpdateVersion, allowUpdateConnectors, allowUploadCustomImage] ); const renderHeaderControls = (section: "used" | "available") => ((section === "used" && usedConnectorsDefinitions.length > 0) || (section === "available" && usedConnectorsDefinitions.length === 0)) && (
    - - - + {allowUploadCustomImage && } {(hasNewConnectorVersion || isUpdateSuccess) && allowUpdateConnectors && ( = ({ {renderHeaderControls("used")} - +
    )} @@ -146,7 +161,11 @@ const ConnectorsView: React.FC = ({ {renderHeaderControls("available")} -
    +
    ); diff --git a/airbyte-webapp/src/pages/SourcesPage/pages/CreateSourcePage/CreateSourcePage.tsx b/airbyte-webapp/src/pages/SourcesPage/pages/CreateSourcePage/CreateSourcePage.tsx index 6ba95a10107b..01c582ec834a 100644 --- a/airbyte-webapp/src/pages/SourcesPage/pages/CreateSourcePage/CreateSourcePage.tsx +++ b/airbyte-webapp/src/pages/SourcesPage/pages/CreateSourcePage/CreateSourcePage.tsx @@ -1,4 +1,4 @@ -import React, { useState } from "react"; +import React from "react"; import { FormattedMessage } from "react-intl"; import { useNavigate } from "react-router-dom"; @@ -18,7 +18,6 @@ import { SourceForm } from "./components/SourceForm"; const CreateSourcePage: React.FC = () => { useTrackPage(PageTrackingCodes.SOURCE_NEW); const navigate = useNavigate(); - const [successRequest, setSuccessRequest] = useState(false); const { sourceDefinitions } = useSourceDefinitionList(); const { mutateAsync: createSource } = useCreateSource(); @@ -34,9 +33,7 @@ const CreateSourcePage: React.FC = () => { throw new Error("No Connector Found"); } const result = await createSource({ values, sourceConnector: connector }); - setSuccessRequest(true); setTimeout(() => { - setSuccessRequest(false); navigate(`../${result.sourceId}`); }, 2000); }; @@ -47,7 +44,7 @@ const CreateSourcePage: React.FC = () => { } /> - + diff --git a/airbyte-webapp/src/pages/SourcesPage/pages/CreateSourcePage/components/SourceForm.tsx b/airbyte-webapp/src/pages/SourcesPage/pages/CreateSourcePage/components/SourceForm.tsx index adec7e12d0af..136f64426500 100644 --- a/airbyte-webapp/src/pages/SourcesPage/pages/CreateSourcePage/components/SourceForm.tsx +++ b/airbyte-webapp/src/pages/SourcesPage/pages/CreateSourcePage/components/SourceForm.tsx @@ -18,7 +18,6 @@ interface SourceFormProps { connectionConfiguration?: ConnectionConfiguration; }) => Promise; sourceDefinitions: SourceDefinitionReadWithLatestTag[]; - hasSuccess?: boolean; error?: FormError | null; } @@ -30,7 +29,7 @@ const hasSourceDefinitionId = (state: unknown): state is { sourceDefinitionId: s ); }; -export const SourceForm: React.FC = ({ onSubmit, sourceDefinitions, error, hasSuccess }) => { +export const SourceForm: React.FC = ({ onSubmit, sourceDefinitions, error }) => { const location = useLocation(); const [sourceDefinitionId, setSourceDefinitionId] = useState( @@ -60,7 +59,6 @@ export const SourceForm: React.FC = ({ onSubmit, sourceDefiniti title={} description={} isLoading={isLoading} - hasSuccess={hasSuccess} fetchingConnectorError={sourceDefinitionError instanceof Error ? sourceDefinitionError : null} availableConnectorDefinitions={sourceDefinitions} onConnectorDefinitionSelect={onDropDownSelect} diff --git a/airbyte-webapp/src/pages/destination/CreateDestinationPage/CreateDestinationPage.tsx b/airbyte-webapp/src/pages/destination/CreateDestinationPage/CreateDestinationPage.tsx index 1f929feceea4..7232fbc91b30 100644 --- a/airbyte-webapp/src/pages/destination/CreateDestinationPage/CreateDestinationPage.tsx +++ b/airbyte-webapp/src/pages/destination/CreateDestinationPage/CreateDestinationPage.tsx @@ -1,4 +1,4 @@ -import React, { useState } from "react"; +import React from "react"; import { FormattedMessage } from "react-intl"; import { useNavigate } from "react-router-dom"; @@ -18,7 +18,6 @@ export const CreateDestinationPage: React.FC = () => { useTrackPage(PageTrackingCodes.DESTINATION_NEW); const navigate = useNavigate(); - const [successRequest, setSuccessRequest] = useState(false); const { destinationDefinitions } = useDestinationDefinitionList(); const { mutateAsync: createDestination } = useCreateDestination(); @@ -32,9 +31,7 @@ export const CreateDestinationPage: React.FC = () => { values, destinationConnector: connector, }); - setSuccessRequest(true); setTimeout(() => { - setSuccessRequest(false); navigate(`../${result.destinationId}`); }, 2000); }; @@ -45,11 +42,7 @@ export const CreateDestinationPage: React.FC = () => { } /> - + diff --git a/airbyte-webapp/src/pages/routes.tsx b/airbyte-webapp/src/pages/routes.tsx index 6d7edd57d25c..2d758484a771 100644 --- a/airbyte-webapp/src/pages/routes.tsx +++ b/airbyte-webapp/src/pages/routes.tsx @@ -55,7 +55,6 @@ const MainViewRoutes: React.FC = () => { } /> } /> } /> - } /> } /> @@ -109,6 +108,7 @@ export const Routing: React.FC = () => { ); return ( + } /> {OldRoutes} } /> } /> diff --git a/airbyte-webapp/src/scss/_mixins.scss b/airbyte-webapp/src/scss/_mixins.scss index b6c4748378cd..37c71fc5755d 100644 --- a/airbyte-webapp/src/scss/_mixins.scss +++ b/airbyte-webapp/src/scss/_mixins.scss @@ -3,3 +3,11 @@ @mixin shadow { box-shadow: 0 2px 4px rgba(colors.$dark-blue-900, 12%); } + +@mixin left-shadow { + box-shadow: -2px 0 10px rgba(colors.$dark-blue-900, 12%); +} + +@mixin right-shadow { + box-shadow: 2px 0 10px rgba(colors.$dark-blue-900, 12%); +} 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/services/connectorBuilder/ConnectorBuilderStateService.tsx b/airbyte-webapp/src/services/connectorBuilder/ConnectorBuilderStateService.tsx index e5e9bcbeb659..69b01d4e4013 100644 --- a/airbyte-webapp/src/services/connectorBuilder/ConnectorBuilderStateService.tsx +++ b/airbyte-webapp/src/services/connectorBuilder/ConnectorBuilderStateService.tsx @@ -1,29 +1,55 @@ +import { dump } from "js-yaml"; import React, { useContext, useEffect, useMemo, useState } from "react"; import { useIntl } from "react-intl"; +import { useLocalStorage } from "react-use"; -import { - StreamReadRequestBodyConfig, - StreamsListReadStreamsItem, - StreamsListRequestBodyManifest, -} from "core/request/ConnectorBuilderClient"; -import { useAppMonitoringService } from "hooks/services/AppMonitoringService"; +import { BuilderFormValues, convertToManifest } from "components/connectorBuilder/types"; + +import { StreamReadRequestBodyConfig, StreamsListReadStreamsItem } from "core/request/ConnectorBuilderClient"; +import { ConnectorManifest } from "core/request/ConnectorManifest"; import { useListStreams } from "./ConnectorBuilderApiService"; +export const DEFAULT_BUILDER_FORM_VALUES: BuilderFormValues = { + global: { + connectorName: "", + urlBase: "", + }, + streams: [], +}; + +const DEFAULT_JSON_MANIFEST_VALUES: ConnectorManifest = { + version: "0.1.0", + check: { + stream_names: [], + }, + streams: [], +}; + +type EditorView = "ui" | "yaml"; +export type BuilderView = "global" | number; + interface Context { - jsonManifest: StreamsListRequestBodyManifest; + builderFormValues: BuilderFormValues; + jsonManifest: ConnectorManifest; + yamlManifest: string; yamlEditorIsMounted: boolean; yamlIsValid: boolean; streams: StreamsListReadStreamsItem[]; streamListErrorMessage: string | undefined; - selectedStream?: StreamsListReadStreamsItem; + testStreamIndex: number; + selectedView: BuilderView; configString: string; configJson: StreamReadRequestBodyConfig; - setJsonManifest: (jsonValue: StreamsListRequestBodyManifest) => void; + editorView: EditorView; + setBuilderFormValues: (values: BuilderFormValues) => void; + setJsonManifest: (jsonValue: ConnectorManifest) => void; setYamlEditorIsMounted: (value: boolean) => void; setYamlIsValid: (value: boolean) => void; - setSelectedStream: (streamName: string) => void; + setTestStreamIndex: (streamIndex: number) => void; + setSelectedView: (view: BuilderView) => void; setConfigString: (configString: string) => void; + setEditorView: (editorView: EditorView) => void; } export const ConnectorBuilderStateContext = React.createContext(null); @@ -31,10 +57,32 @@ export const ConnectorBuilderStateContext = React.createContext( export const ConnectorBuilderStateProvider: React.FC> = ({ children }) => { const { formatMessage } = useIntl(); - // json manifest - const [jsonManifest, setJsonManifest] = useState({}); + // manifest values + const [builderFormValues, setBuilderFormValues] = useLocalStorage( + "connectorBuilderFormValues", + DEFAULT_BUILDER_FORM_VALUES + ); + const formValues = builderFormValues ?? DEFAULT_BUILDER_FORM_VALUES; + + const [jsonManifest, setJsonManifest] = useLocalStorage( + "connectorBuilderJsonManifest", + DEFAULT_JSON_MANIFEST_VALUES + ); + const manifest = jsonManifest ?? DEFAULT_JSON_MANIFEST_VALUES; + + useEffect(() => { + setJsonManifest(convertToManifest(formValues)); + }, [formValues, setJsonManifest]); + const [yamlIsValid, setYamlIsValid] = useState(true); - const [yamlEditorIsMounted, setYamlEditorIsMounted] = useState(false); + const [yamlEditorIsMounted, setYamlEditorIsMounted] = useState(true); + + const [yamlManifest, setYamlManifest] = useState(""); + useEffect(() => { + setYamlManifest(dump(jsonManifest)); + }, [jsonManifest]); + + const [editorView, setEditorView] = useState("ui"); // config const [configString, setConfigString] = useState("{\n \n}"); @@ -54,7 +102,7 @@ export const ConnectorBuilderStateProvider: React.FC { return streamListRead?.streams ?? []; }, [streamListRead]); - const firstStreamName = streams.length > 0 ? streams[0].name : undefined; - const [selectedStreamName, setSelectedStream] = useState(firstStreamName); + const [testStreamIndex, setTestStreamIndex] = useState(0); useEffect(() => { - setSelectedStream((prevSelected) => - prevSelected !== undefined && streams.map((stream) => stream.name).includes(prevSelected) - ? prevSelected - : firstStreamName + setTestStreamIndex((prevIndex) => + prevIndex >= streams.length && streams.length > 0 ? streams.length - 1 : prevIndex ); - }, [streams, firstStreamName]); + }, [streams]); - const selectedStream = streams.find((stream) => stream.name === selectedStreamName); + const [selectedView, setSelectedView] = useState("global"); const ctx = { - jsonManifest, + builderFormValues: formValues, + jsonManifest: manifest, + yamlManifest, yamlEditorIsMounted, yamlIsValid, streams, streamListErrorMessage, - selectedStream, + testStreamIndex, + selectedView, configString, configJson, + editorView, + setBuilderFormValues, setJsonManifest, setYamlIsValid, setYamlEditorIsMounted, - setSelectedStream, + setTestStreamIndex, + setSelectedView, setConfigString, + setEditorView, }; return {children}; @@ -106,17 +158,9 @@ export const useConnectorBuilderState = (): Context => { }; export const useSelectedPageAndSlice = () => { - const { trackError } = useAppMonitoringService(); - const { selectedStream } = useConnectorBuilderState(); - - // this case should never be reached, as this hook should only be called in components that are only rendered when a stream is selected - if (selectedStream === undefined) { - const err = new Error("useSelectedPageAndSlice called when no stream is selected"); - trackError(err, { id: "useSelectedPageAndSlice.noSelectedStream" }); - throw err; - } + const { streams, testStreamIndex } = useConnectorBuilderState(); - const selectedStreamName = selectedStream.name; + const selectedStreamName = streams[testStreamIndex].name; const [streamToSelectedSlice, setStreamToSelectedSlice] = useState({ [selectedStreamName]: 0 }); const setSelectedSlice = (sliceIndex: number) => { diff --git a/airbyte-webapp/src/services/connectorBuilder/connector_manifest_openapi.yaml b/airbyte-webapp/src/services/connectorBuilder/connector_manifest_openapi.yaml new file mode 100644 index 000000000000..89fe28623293 --- /dev/null +++ b/airbyte-webapp/src/services/connectorBuilder/connector_manifest_openapi.yaml @@ -0,0 +1,9 @@ +openapi: 3.0.0 +info: + title: Connector Manifest schema + version: 1.0.0 +paths: {} +components: + schemas: + ConnectorManifest: + $ref: "../../../../airbyte-cdk/python/airbyte_cdk/sources/declarative/config_component_schema.json" diff --git a/airbyte-webapp/src/services/job/JobService.tsx b/airbyte-webapp/src/services/job/JobService.tsx index 2e8b025f963e..7147d6825df9 100644 --- a/airbyte-webapp/src/services/job/JobService.tsx +++ b/airbyte-webapp/src/services/job/JobService.tsx @@ -69,7 +69,8 @@ export const useGetDebugInfoJob = ( // If refetchWhileRunning was true, we keep refetching debug info (including logs), while the job is still // running or hasn't ended too long ago. We need some time after the last attempt has stopped, since logs // keep incoming for some time after the job has already been marked as finished. - const lastAttemptEndTimestamp = data?.attempts[data.attempts.length - 1].attempt.endedAt; + const lastAttemptEndTimestamp = + data?.attempts.length && data.attempts[data.attempts.length - 1].attempt.endedAt; // While no attempt ended timestamp exists yet (i.e. the job is still running) or it hasn't ended // more than 2 minutes (2 * 60 * 1000ms) ago, keep refetching return lastAttemptEndTimestamp && Date.now() - lastAttemptEndTimestamp * 1000 > 2 * 60 * 1000 ? false : 2500; diff --git a/airbyte-webapp/src/test-utils/testutils.tsx b/airbyte-webapp/src/test-utils/testutils.tsx index 15c4d9ce839c..8bb11118f9da 100644 --- a/airbyte-webapp/src/test-utils/testutils.tsx +++ b/airbyte-webapp/src/test-utils/testutils.tsx @@ -15,7 +15,7 @@ import { } from "core/request/AirbyteClient"; import { ServicesProvider } from "core/servicesProvider"; import { ConfirmationModalService } from "hooks/services/ConfirmationModal"; -import { defaultFeatures, FeatureItem, FeatureService } from "hooks/services/Feature"; +import { defaultOssFeatures, FeatureItem, FeatureService } from "hooks/services/Feature"; import { ModalServiceProvider } from "hooks/services/Modal"; import en from "locales/en.json"; import { AnalyticsProvider } from "views/common/AnalyticsProvider"; @@ -50,7 +50,7 @@ interface TestWrapperOptions { } export const TestWrapper: React.FC> = ({ children, - features = defaultFeatures, + features = defaultOssFeatures, }) => ( null}> 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-webapp/src/views/Connector/ConnectorCard/ConnectorCard.tsx b/airbyte-webapp/src/views/Connector/ConnectorCard/ConnectorCard.tsx index c8ab073a074b..18b2aeacb8ac 100644 --- a/airbyte-webapp/src/views/Connector/ConnectorCard/ConnectorCard.tsx +++ b/airbyte-webapp/src/views/Connector/ConnectorCard/ConnectorCard.tsx @@ -51,7 +51,6 @@ interface ConnectorCardBaseProps { // used in ConnectorForm formId?: string; fetchingConnectorError?: Error | null; - hasSuccess?: boolean; isLoading?: boolean; } @@ -85,7 +84,14 @@ export const ConnectorCard: React.FC *:last-child { padding-bottom: variables.$spacing-page-bottom; } } + +.rightPanel { + @include mixins.left-shadow; + + border-top-left-radius: variables.$border-radius-lg; + border-bottom-left-radius: variables.$border-radius-lg; +} diff --git a/airbyte-webapp/src/views/Connector/ConnectorDocumentationLayout/ConnectorDocumentationLayout.tsx b/airbyte-webapp/src/views/Connector/ConnectorDocumentationLayout/ConnectorDocumentationLayout.tsx index 41b3958ed406..4420be887bc6 100644 --- a/airbyte-webapp/src/views/Connector/ConnectorDocumentationLayout/ConnectorDocumentationLayout.tsx +++ b/airbyte-webapp/src/views/Connector/ConnectorDocumentationLayout/ConnectorDocumentationLayout.tsx @@ -34,6 +34,7 @@ export const ConnectorDocumentationLayout: React.FC { - usePatchFormik(); - return null; -}; +import { useBuildForm, useBuildUiWidgetsContext, useConstructValidationSchema } from "./useBuildForm"; /** * This function sets all initial const values in the form to current values @@ -84,7 +80,7 @@ export interface ConnectorFormProps { onSubmit: (values: ConnectorFormValues) => Promise; isEditMode?: boolean; formValues?: Partial; - hasSuccess?: boolean; + connectionTestSuccess?: boolean; errorMessage?: React.ReactNode; successMessage?: React.ReactNode; connectorId?: string; @@ -103,7 +99,6 @@ export const ConnectorForm: React.FC = (props) => { formValues, onSubmit, isEditMode, - isTestConnectionInProgress, onStopTesting, testConnector, selectedConnectorDefinition, @@ -170,7 +165,6 @@ export const ConnectorForm: React.FC = (props) => { {...props} formFields={formFields} errorMessage={errorMessage} - isTestConnectionInProgress={isTestConnectionInProgress} onStopTestingConnector={onStopTesting ? () => onStopTesting() : undefined} onRetest={testConnector ? async () => await testConnector() : undefined} /> diff --git a/airbyte-webapp/src/views/Connector/ConnectorForm/FormRoot.tsx b/airbyte-webapp/src/views/Connector/ConnectorForm/FormRoot.tsx index b88b7b6fa556..d11cb3684cd0 100644 --- a/airbyte-webapp/src/views/Connector/ConnectorForm/FormRoot.tsx +++ b/airbyte-webapp/src/views/Connector/ConnectorForm/FormRoot.tsx @@ -11,7 +11,7 @@ import { ConnectorFormValues } from "./types"; interface FormRootProps { formFields: FormBlock; - hasSuccess?: boolean; + connectionTestSuccess?: boolean; isTestConnectionInProgress?: boolean; errorMessage?: React.ReactNode; successMessage?: React.ReactNode; @@ -25,7 +25,7 @@ export const FormRoot: React.FC = ({ formFields, successMessage, errorMessage, - hasSuccess, + connectionTestSuccess, onStopTestingConnector, }) => { const { dirty, isSubmitting, isValid } = useFormikContext(); @@ -56,7 +56,7 @@ export const FormRoot: React.FC = ({ isSubmitting={isSubmitting || isTestConnectionInProgress} errorMessage={errorMessage} formType={formType} - hasSuccess={hasSuccess} + connectionTestSuccess={connectionTestSuccess} /> )} diff --git a/airbyte-webapp/src/views/Connector/ConnectorForm/components/CreateControls.tsx b/airbyte-webapp/src/views/Connector/ConnectorForm/components/CreateControls.tsx index 83ec70e28db2..689bf4fdca4f 100644 --- a/airbyte-webapp/src/views/Connector/ConnectorForm/components/CreateControls.tsx +++ b/airbyte-webapp/src/views/Connector/ConnectorForm/components/CreateControls.tsx @@ -13,7 +13,7 @@ interface CreateControlProps { formType: "source" | "destination"; isSubmitting: boolean; errorMessage?: React.ReactNode; - hasSuccess?: boolean; + connectionTestSuccess?: boolean; isTestConnectionInProgress: boolean; onCancelTesting?: () => void; @@ -30,7 +30,7 @@ const CreateControls: React.FC = ({ isTestConnectionInProgress, isSubmitting, formType, - hasSuccess, + connectionTestSuccess, errorMessage, onCancelTesting, }) => { @@ -38,7 +38,7 @@ const CreateControls: React.FC = ({ return ; } - if (hasSuccess) { + if (connectionTestSuccess) { return ; } diff --git a/airbyte-webapp/src/views/Connector/ConnectorForm/components/EditControls.tsx b/airbyte-webapp/src/views/Connector/ConnectorForm/components/EditControls.tsx index 46f921fa2ff8..dcd665062561 100644 --- a/airbyte-webapp/src/views/Connector/ConnectorForm/components/EditControls.tsx +++ b/airbyte-webapp/src/views/Connector/ConnectorForm/components/EditControls.tsx @@ -4,7 +4,6 @@ import styled from "styled-components"; import { Button } from "components/ui/Button"; -import { useConnectorForm } from "../connectorFormContext"; import styles from "./EditControls.module.scss"; import { TestingConnectionError } from "./TestingConnectionError"; import { TestingConnectionSpinner } from "./TestingConnectionSpinner"; @@ -42,8 +41,6 @@ const EditControls: React.FC = ({ errorMessage, onCancelTesting, }) => { - const { unfinishedFlows } = useConnectorForm(); - if (isSubmitting) { return ; } @@ -63,7 +60,7 @@ const EditControls: React.FC = ({ {renderStatusMessage()}
    - - - - ) : ( - - )} - - ); -}; - -export default ConfirmationControl; diff --git a/airbyte-webapp/src/views/Connector/ConnectorForm/components/Property/Control.tsx b/airbyte-webapp/src/views/Connector/ConnectorForm/components/Property/Control.tsx index 2208ee16b979..a6b9c1d1c396 100644 --- a/airbyte-webapp/src/views/Connector/ConnectorForm/components/Property/Control.tsx +++ b/airbyte-webapp/src/views/Connector/ConnectorForm/components/Property/Control.tsx @@ -5,7 +5,6 @@ import { DatePicker } from "components/ui/DatePicker"; import { DropDown } from "components/ui/DropDown"; import { Input } from "components/ui/Input"; import { Multiselect } from "components/ui/Multiselect"; -import { SecretTextArea } from "components/ui/SecretTextArea"; import { TagInput } from "components/ui/TagInput/TagInput"; import { TextArea } from "components/ui/TextArea"; @@ -13,27 +12,16 @@ import { FormBaseItem } from "core/form/types"; import { useExperiment } from "hooks/services/Experiment"; import { isDefined } from "utils/common"; -import ConfirmationControl from "./ConfirmationControl"; +import SecretConfirmationControl from "./SecretConfirmationControl"; interface ControlProps { property: FormBaseItem; name: string; - unfinishedFlows: Record; - addUnfinishedFlow: (key: string, info?: Record) => void; - removeUnfinishedFlow: (key: string) => void; disabled?: boolean; error?: boolean; } -export const Control: React.FC = ({ - property, - name, - addUnfinishedFlow, - removeUnfinishedFlow, - unfinishedFlows, - disabled, - error, -}) => { +export const Control: React.FC = ({ property, name, disabled, error }) => { const [field, meta, helpers] = useField(name); const useDatepickerExperiment = useExperiment("connector.form.useDatepicker", true); @@ -107,46 +95,14 @@ export const Control: React.FC = ({ } else if (property.multiline && !property.isSecret) { return